coded_options 0.2.3 → 0.2.4
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/Gemfile +5 -8
- data/lib/coded_options/version.rb +1 -1
- metadata +50 -5
data/Gemfile
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
source
|
|
1
|
+
source :rubygems
|
|
2
2
|
|
|
3
|
-
# Will automatically pull in this gem and all its
|
|
4
|
-
# dependencies specified in the gemspec
|
|
5
|
-
gem "coded_options", :path => File.expand_path("..", __FILE__)
|
|
6
3
|
gem "rails", "~>3.0.0"
|
|
7
4
|
|
|
8
|
-
|
|
9
|
-
gem "
|
|
10
|
-
gem "
|
|
11
|
-
|
|
5
|
+
group :development do
|
|
6
|
+
gem "rspec", "~>2.0.0"
|
|
7
|
+
gem "rr"
|
|
8
|
+
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coded_options
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 31
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.2.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jason Dew
|
|
@@ -17,8 +17,53 @@ cert_chain: []
|
|
|
17
17
|
|
|
18
18
|
date: 2011-02-03 00:00:00 -05:00
|
|
19
19
|
default_executable:
|
|
20
|
-
dependencies:
|
|
21
|
-
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
prerelease: false
|
|
23
|
+
type: :runtime
|
|
24
|
+
name: rails
|
|
25
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
27
|
+
requirements:
|
|
28
|
+
- - ~>
|
|
29
|
+
- !ruby/object:Gem::Version
|
|
30
|
+
hash: 7
|
|
31
|
+
segments:
|
|
32
|
+
- 3
|
|
33
|
+
- 0
|
|
34
|
+
- 0
|
|
35
|
+
version: 3.0.0
|
|
36
|
+
requirement: *id001
|
|
37
|
+
- !ruby/object:Gem::Dependency
|
|
38
|
+
prerelease: false
|
|
39
|
+
type: :development
|
|
40
|
+
name: rspec
|
|
41
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
|
42
|
+
none: false
|
|
43
|
+
requirements:
|
|
44
|
+
- - ~>
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
hash: 15
|
|
47
|
+
segments:
|
|
48
|
+
- 2
|
|
49
|
+
- 0
|
|
50
|
+
- 0
|
|
51
|
+
version: 2.0.0
|
|
52
|
+
requirement: *id002
|
|
53
|
+
- !ruby/object:Gem::Dependency
|
|
54
|
+
prerelease: false
|
|
55
|
+
type: :development
|
|
56
|
+
name: rr
|
|
57
|
+
version_requirements: &id003 !ruby/object:Gem::Requirement
|
|
58
|
+
none: false
|
|
59
|
+
requirements:
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
hash: 3
|
|
63
|
+
segments:
|
|
64
|
+
- 0
|
|
65
|
+
version: "0"
|
|
66
|
+
requirement: *id003
|
|
22
67
|
description: A gem for making fields with coded values easier
|
|
23
68
|
email:
|
|
24
69
|
- jason.dew@gmail.com
|