acts_as_eav_model 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Gemfile +1 -1
  2. data/Gemfile.lock +37 -38
  3. data/VERSION +1 -1
  4. data/acts_as_eav_model.gemspec +5 -5
  5. metadata +5 -5
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gem "rails", "3.0.1"
3
+ gem "rails", "~> 3.0.1"
4
4
  gem "sqlite3-ruby", :require => "sqlite3"
5
5
  gem "jeweler"
6
6
 
@@ -2,34 +2,33 @@ GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
4
  abstract (1.0.0)
5
- actionmailer (3.0.1)
6
- actionpack (= 3.0.1)
7
- mail (~> 2.2.5)
8
- actionpack (3.0.1)
9
- activemodel (= 3.0.1)
10
- activesupport (= 3.0.1)
5
+ actionmailer (3.0.3)
6
+ actionpack (= 3.0.3)
7
+ mail (~> 2.2.9)
8
+ actionpack (3.0.3)
9
+ activemodel (= 3.0.3)
10
+ activesupport (= 3.0.3)
11
11
  builder (~> 2.1.2)
12
12
  erubis (~> 2.6.6)
13
- i18n (~> 0.4.1)
13
+ i18n (~> 0.4)
14
14
  rack (~> 1.2.1)
15
- rack-mount (~> 0.6.12)
16
- rack-test (~> 0.5.4)
15
+ rack-mount (~> 0.6.13)
16
+ rack-test (~> 0.5.6)
17
17
  tzinfo (~> 0.3.23)
18
- activemodel (3.0.1)
19
- activesupport (= 3.0.1)
18
+ activemodel (3.0.3)
19
+ activesupport (= 3.0.3)
20
20
  builder (~> 2.1.2)
21
- i18n (~> 0.4.1)
22
- activerecord (3.0.1)
23
- activemodel (= 3.0.1)
24
- activesupport (= 3.0.1)
25
- arel (~> 1.0.0)
21
+ i18n (~> 0.4)
22
+ activerecord (3.0.3)
23
+ activemodel (= 3.0.3)
24
+ activesupport (= 3.0.3)
25
+ arel (~> 2.0.2)
26
26
  tzinfo (~> 0.3.23)
27
- activeresource (3.0.1)
28
- activemodel (= 3.0.1)
29
- activesupport (= 3.0.1)
30
- activesupport (3.0.1)
31
- arel (1.0.1)
32
- activesupport (~> 3.0.0)
27
+ activeresource (3.0.3)
28
+ activemodel (= 3.0.3)
29
+ activesupport (= 3.0.3)
30
+ activesupport (3.0.3)
31
+ arel (2.0.4)
33
32
  builder (2.1.2)
34
33
  diff-lcs (1.1.2)
35
34
  erubis (2.6.6)
@@ -40,7 +39,7 @@ GEM
40
39
  bundler (~> 1.0.0)
41
40
  git (>= 1.2.5)
42
41
  rake
43
- mail (2.2.9)
42
+ mail (2.2.10)
44
43
  activesupport (>= 2.3.6)
45
44
  i18n (~> 0.4.1)
46
45
  mime-types (~> 1.16)
@@ -52,19 +51,19 @@ GEM
52
51
  rack (>= 1.0.0)
53
52
  rack-test (0.5.6)
54
53
  rack (>= 1.0)
55
- rails (3.0.1)
56
- actionmailer (= 3.0.1)
57
- actionpack (= 3.0.1)
58
- activerecord (= 3.0.1)
59
- activeresource (= 3.0.1)
60
- activesupport (= 3.0.1)
61
- bundler (~> 1.0.0)
62
- railties (= 3.0.1)
63
- railties (3.0.1)
64
- actionpack (= 3.0.1)
65
- activesupport (= 3.0.1)
66
- rake (>= 0.8.4)
67
- thor (~> 0.14.0)
54
+ rails (3.0.3)
55
+ actionmailer (= 3.0.3)
56
+ actionpack (= 3.0.3)
57
+ activerecord (= 3.0.3)
58
+ activeresource (= 3.0.3)
59
+ activesupport (= 3.0.3)
60
+ bundler (~> 1.0)
61
+ railties (= 3.0.3)
62
+ railties (3.0.3)
63
+ actionpack (= 3.0.3)
64
+ activesupport (= 3.0.3)
65
+ rake (>= 0.8.7)
66
+ thor (~> 0.14.4)
68
67
  rake (0.8.7)
69
68
  rspec (2.1.0)
70
69
  rspec-core (~> 2.1.0)
@@ -78,7 +77,7 @@ GEM
78
77
  rspec (~> 2.1.0)
79
78
  sqlite3-ruby (1.3.2)
80
79
  thor (0.14.4)
81
- treetop (1.4.8)
80
+ treetop (1.4.9)
82
81
  polyglot (>= 0.3.1)
83
82
  tzinfo (0.3.23)
84
83
 
@@ -87,6 +86,6 @@ PLATFORMS
87
86
 
88
87
  DEPENDENCIES
89
88
  jeweler
90
- rails (= 3.0.1)
89
+ rails (~> 3.0.1)
91
90
  rspec-rails (~> 2.0)
92
91
  sqlite3-ruby
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{acts_as_eav_model}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Marcus Wyatt"]
12
- s.date = %q{2010-11-14}
12
+ s.date = %q{2010-11-17}
13
13
  s.description = %q{Entity-attribute-value model (EAV) is a data model that is used in circumstances
14
14
  where the number of attributes (properties, parameters) that can be used to describe
15
15
  a thing (an "entity" or "object") is potentially very vast, but the number that will
@@ -139,16 +139,16 @@ Gem::Specification.new do |s|
139
139
  s.specification_version = 3
140
140
 
141
141
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
142
- s.add_runtime_dependency(%q<rails>, ["= 3.0.1"])
142
+ s.add_runtime_dependency(%q<rails>, ["~> 3.0.1"])
143
143
  s.add_runtime_dependency(%q<sqlite3-ruby>, [">= 0"])
144
144
  s.add_runtime_dependency(%q<jeweler>, [">= 0"])
145
145
  else
146
- s.add_dependency(%q<rails>, ["= 3.0.1"])
146
+ s.add_dependency(%q<rails>, ["~> 3.0.1"])
147
147
  s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
148
148
  s.add_dependency(%q<jeweler>, [">= 0"])
149
149
  end
150
150
  else
151
- s.add_dependency(%q<rails>, ["= 3.0.1"])
151
+ s.add_dependency(%q<rails>, ["~> 3.0.1"])
152
152
  s.add_dependency(%q<sqlite3-ruby>, [">= 0"])
153
153
  s.add_dependency(%q<jeweler>, [">= 0"])
154
154
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Marcus Wyatt
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-11-14 00:00:00 -08:00
17
+ date: 2010-11-17 00:00:00 -08:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -22,7 +22,7 @@ dependencies:
22
22
  requirement: &id001 !ruby/object:Gem::Requirement
23
23
  none: false
24
24
  requirements:
25
- - - "="
25
+ - - ~>
26
26
  - !ruby/object:Gem::Version
27
27
  segments:
28
28
  - 3
@@ -166,7 +166,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
166
166
  requirements:
167
167
  - - ">="
168
168
  - !ruby/object:Gem::Version
169
- hash: 619066834211978823
169
+ hash: -3995161953009584958
170
170
  segments:
171
171
  - 0
172
172
  version: "0"