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 ADDED
@@ -0,0 +1,5 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ - ruby-head
data/README.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Dictionary
2
2
 
3
- [ruby-dictionary](https://github.com/mhuggins/ruby-dictionary] provides a
3
+ [![Build Status](https://secure.travis-ci.org/mhuggins/ruby-dictionary.png)](http://travis-ci.org/mhuggins/ruby-dictionary)
4
+ [![Code Climate](https://codeclimate.com/github/mhuggins/ruby-dictionary.png)](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
 
@@ -1,5 +1,3 @@
1
- module Ruby
2
- module Dictionary
3
- VERSION = '1.0.0'
4
- end
1
+ class Dictionary
2
+ VERSION = '1.0.1'
5
3
  end
@@ -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 = Ruby::Dictionary::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.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: &2157439500 !ruby/object:Gem::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: *2157439500
24
+ version_requirements: *2157608560
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rspec
27
- requirement: &2157439080 !ruby/object:Gem::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: *2157439080
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