Skip to content

Commit 568066a

Browse files
committed
New upstream version 3.4.0
1 parent 822c3d0 commit 568066a

File tree

5,855 files changed

+423081
-358492
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,855 files changed

+423081
-358492
lines changed

.bundle/bin/racc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!ruby
2-
load File.realpath("../gems/racc-1.7.3/bin/racc", __dir__)
2+
load File.realpath("../gems/racc-1.8.1/bin/racc", __dir__)

.bundle/bin/rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!ruby
2-
load File.realpath("../gems/rake-13.1.0/exe/rake", __dir__)
2+
load File.realpath("../gems/rake-13.2.1/exe/rake", __dir__)

.bundle/bin/rbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!ruby
2-
load File.realpath("../gems/rbs-3.4.0/exe/rbs", __dir__)
2+
load File.realpath("../gems/rbs-3.8.0/exe/rbs", __dir__)

.bundle/bin/rdbg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!ruby
2-
load File.realpath("../gems/debug-1.9.2/exe/rdbg", __dir__)
2+
load File.realpath("../gems/debug-1.10.0/exe/rdbg", __dir__)

.bundle/bin/typeprof

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#!ruby
2-
load File.realpath("../gems/typeprof-0.21.9/exe/typeprof", __dir__)
2+
load File.realpath("../gems/typeprof-0.30.1/bin/typeprof", __dir__)

.bundle/gems/abbrev-0.1.2/Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://rubygems.org"
2+
3+
gem "rake"
4+
gem "test-unit"

.bundle/gems/abbrev-0.1.2/README.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Abbrev
2+
3+
Given a set of strings, calculate the set of unambiguous abbreviations for
4+
those strings, and return a hash where the keys are all the possible
5+
abbreviations and the values are the full strings.
6+
7+
Thus, given +words+ is "car" and "cone", the keys pointing to "car" would
8+
be "ca" and "car", while those pointing to "cone" would be "co", "con", and
9+
"cone".
10+
11+
## Installation
12+
13+
Add this line to your application's Gemfile:
14+
15+
```ruby
16+
gem 'abbrev'
17+
```
18+
19+
And then execute:
20+
21+
$ bundle install
22+
23+
Or install it yourself as:
24+
25+
$ gem install abbrev
26+
27+
## Usage
28+
29+
```ruby
30+
require 'abbrev'
31+
32+
Abbrev.abbrev(%w{ car cone })
33+
#=> {"ca"=>"car", "con"=>"cone", "co"=>"cone", "car"=>"car", "cone"=>"cone"}
34+
```
35+
36+
## Development
37+
38+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
39+
40+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
41+
42+
## Contributing
43+
44+
Bug reports and pull requests are welcome on GitHub at https://github.com/ruby/abbrev.
45+
File renamed without changes.

0 commit comments

Comments
 (0)