enum_plus 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- enum_plus (0.2.0)
4
+ enum_plus (0.3.3)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
data/LICENSE.md ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2012 caedes
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  _Add enumeration to your ruby classes_
4
4
 
5
+ ## Installation
6
+
7
+ ```shell
8
+ gem install enum_plus
9
+ ```
10
+
11
+ Or in your Gemfile:
12
+
13
+ ```ruby
14
+ gem 'enum_plus'
15
+ ```
16
+
5
17
  ## Usage
6
18
 
7
19
  ```ruby
@@ -52,10 +64,4 @@ p cameron.gender_caption
52
64
 
53
65
  ## Licence
54
66
 
55
- Copyright 2012 caedes
56
-
57
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
58
-
59
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
60
-
61
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
67
+ Released under the MIT License. See the LICENSE file for further details.
data/Rakefile CHANGED
@@ -15,3 +15,13 @@ end
15
15
 
16
16
  desc 'Run tests'
17
17
  task default: :test
18
+
19
+ desc 'Build gem packages'
20
+ task :build do
21
+ `gem build enum_plus.gemspec`
22
+ end
23
+
24
+ desc 'Push gem packages'
25
+ task :push => :build do
26
+ `gem push enum_plus-*.gem`
27
+ end
@@ -1,3 +1,3 @@
1
1
  module EnumPlus
2
- VERSION = '0.3.2'
2
+ VERSION = '0.3.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: enum_plus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-08-20 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
16
- requirement: &2155915620 !ruby/object:Gem::Requirement
16
+ requirement: &2153447860 !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: *2155915620
24
+ version_requirements: *2153447860
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: minitest
27
- requirement: &2155914940 !ruby/object:Gem::Requirement
27
+ requirement: &2153445680 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *2155914940
35
+ version_requirements: *2153445680
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: turn
38
- requirement: &2155914220 !ruby/object:Gem::Requirement
38
+ requirement: &2153442560 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: 0.9.3
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *2155914220
46
+ version_requirements: *2153442560
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: shoulda
49
- requirement: &2155913600 !ruby/object:Gem::Requirement
49
+ requirement: &2153440040 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ~>
@@ -54,7 +54,7 @@ dependencies:
54
54
  version: 3.1.1
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *2155913600
57
+ version_requirements: *2153440040
58
58
  description: Add enumeration to your ruby classes
59
59
  email:
60
60
  - laurentromain@gmail.com
@@ -66,6 +66,7 @@ files:
66
66
  - .travis.yml
67
67
  - Gemfile
68
68
  - Gemfile.lock
69
+ - LICENSE.md
69
70
  - README.md
70
71
  - Rakefile
71
72
  - enum_plus.gemspec
@@ -85,12 +86,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
85
86
  - - ! '>='
86
87
  - !ruby/object:Gem::Version
87
88
  version: '0'
89
+ segments:
90
+ - 0
91
+ hash: 97258002073658477
88
92
  required_rubygems_version: !ruby/object:Gem::Requirement
89
93
  none: false
90
94
  requirements:
91
95
  - - ! '>='
92
96
  - !ruby/object:Gem::Version
93
97
  version: '0'
98
+ segments:
99
+ - 0
100
+ hash: 97258002073658477
94
101
  requirements: []
95
102
  rubyforge_project:
96
103
  rubygems_version: 1.8.6