daeltar-enum_field 0.2.0 → 0.2.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/VERSION.yml +1 -1
- data/enum_field.gemspec +8 -6
- metadata +5 -4
data/VERSION.yml
CHANGED
data/enum_field.gemspec
CHANGED
@@ -1,12 +1,15 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
1
4
|
# -*- encoding: utf-8 -*-
|
2
5
|
|
3
6
|
Gem::Specification.new do |s|
|
4
|
-
s.name = %q{enum_field}
|
5
|
-
s.version = "0.2.
|
7
|
+
s.name = %q{daeltar-enum_field}
|
8
|
+
s.version = "0.2.1"
|
6
9
|
|
7
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
11
|
s.authors = ["James Golick", "Mathieu Martin"]
|
9
|
-
s.date = %q{2009-
|
12
|
+
s.date = %q{2009-10-30}
|
10
13
|
s.description = %q{enum_field encapsulates a bunch of common idioms around ActiveRecord validates_inclusion_of}
|
11
14
|
s.email = %q{james@giraffesoft.ca}
|
12
15
|
s.extra_rdoc_files = [
|
@@ -24,11 +27,10 @@ Gem::Specification.new do |s|
|
|
24
27
|
"rails/init.rb",
|
25
28
|
"test/enum_field_test.rb"
|
26
29
|
]
|
27
|
-
s.has_rdoc = true
|
28
30
|
s.homepage = %q{http://github.com/giraffesoft/enum_field}
|
29
31
|
s.rdoc_options = ["--charset=UTF-8"]
|
30
32
|
s.require_paths = ["lib"]
|
31
|
-
s.rubygems_version = %q{1.3.
|
33
|
+
s.rubygems_version = %q{1.3.5}
|
32
34
|
s.summary = %q{ActiveRecord enum fields on steroid}
|
33
35
|
s.test_files = [
|
34
36
|
"test/enum_field_test.rb"
|
@@ -36,7 +38,7 @@ Gem::Specification.new do |s|
|
|
36
38
|
|
37
39
|
if s.respond_to? :specification_version then
|
38
40
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
39
|
-
s.specification_version =
|
41
|
+
s.specification_version = 3
|
40
42
|
|
41
43
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
42
44
|
else
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: daeltar-enum_field
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Golick
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2009-
|
13
|
+
date: 2009-10-30 00:00:00 +01:00
|
14
14
|
default_executable:
|
15
15
|
dependencies: []
|
16
16
|
|
@@ -35,7 +35,8 @@ files:
|
|
35
35
|
- test/enum_field_test.rb
|
36
36
|
has_rdoc: true
|
37
37
|
homepage: http://github.com/giraffesoft/enum_field
|
38
|
-
licenses:
|
38
|
+
licenses: []
|
39
|
+
|
39
40
|
post_install_message:
|
40
41
|
rdoc_options:
|
41
42
|
- --charset=UTF-8
|
@@ -58,7 +59,7 @@ requirements: []
|
|
58
59
|
rubyforge_project:
|
59
60
|
rubygems_version: 1.3.5
|
60
61
|
signing_key:
|
61
|
-
specification_version:
|
62
|
+
specification_version: 3
|
62
63
|
summary: ActiveRecord enum fields on steroid
|
63
64
|
test_files:
|
64
65
|
- test/enum_field_test.rb
|