ruby-dictionary 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.travis.yml +5 -0
- data/README.md +4 -1
- data/lib/ruby-dictionary/version.rb +2 -4
- data/ruby-dictionary.gemspec +1 -1
- metadata +6 -5
data/.travis.yml
ADDED
data/README.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# Dictionary
|
|
2
2
|
|
|
3
|
-
[ruby-dictionary](
|
|
3
|
+
[](http://travis-ci.org/mhuggins/ruby-dictionary)
|
|
4
|
+
[](https://codeclimate.com/github/mhuggins/ruby-dictionary)
|
|
5
|
+
|
|
6
|
+
[ruby-dictionary](https://github.com/mhuggins/ruby-dictionary) provides a
|
|
4
7
|
simple dictionary that allows for checking existence of words and finding a
|
|
5
8
|
subset of words given a prefix.
|
|
6
9
|
|
data/ruby-dictionary.gemspec
CHANGED
|
@@ -5,7 +5,7 @@ require 'ruby-dictionary/version'
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |gem|
|
|
7
7
|
gem.name = 'ruby-dictionary'
|
|
8
|
-
gem.version =
|
|
8
|
+
gem.version = Dictionary::VERSION
|
|
9
9
|
gem.authors = ['Matt Huggins']
|
|
10
10
|
gem.email = ['matt.huggins@gmail.com']
|
|
11
11
|
gem.description = %q{Dictionary class for ruby that allows for checking
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-dictionary
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,7 +13,7 @@ date: 2013-03-24 00:00:00.000000000 Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &2157608560 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :development
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *2157608560
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: rspec
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &2157608140 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ! '>='
|
|
@@ -32,7 +32,7 @@ dependencies:
|
|
|
32
32
|
version: '0'
|
|
33
33
|
type: :development
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
35
|
+
version_requirements: *2157608140
|
|
36
36
|
description: ! "Dictionary class for ruby that allows for checking\n existence
|
|
37
37
|
and finding words starting with a given\n prefix."
|
|
38
38
|
email:
|
|
@@ -42,6 +42,7 @@ extensions: []
|
|
|
42
42
|
extra_rdoc_files: []
|
|
43
43
|
files:
|
|
44
44
|
- .gitignore
|
|
45
|
+
- .travis.yml
|
|
45
46
|
- Gemfile
|
|
46
47
|
- LICENSE.txt
|
|
47
48
|
- README.md
|