auto_build 0.4.3 → 0.5.0
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/README.md +22 -0
- data/lib/auto_build/association.rb +1 -1
- data/lib/auto_build/version.rb +1 -1
- data/test/auto_build_test.rb +5 -0
- data/test/dummy/app/models/address.rb +1 -0
- data/test/dummy/app/models/order.rb +7 -0
- data/test/dummy/app/models/user.rb +1 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20120425150004_create_orders.rb +12 -0
- data/test/dummy/db/schema.rb +11 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +39 -430
- data/test/dummy/log/test.log +18 -34255
- data/test/dummy/test/fixtures/orders.yml +9 -0
- metadata +25 -21
- data/test/dummy/test/unit/address_test.rb +0 -7
- data/test/dummy/test/unit/nickname_test.rb +0 -7
- data/test/dummy/test/unit/phone_test.rb +0 -7
- data/test/dummy/test/unit/picture_test.rb +0 -7
- data/test/dummy/test/unit/project_test.rb +0 -7
- data/test/dummy/test/unit/user_test.rb +0 -7
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: auto_build
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-11-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement:
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>'
|
@@ -21,10 +21,15 @@ dependencies:
|
|
21
21
|
version: 3.1.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements:
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>'
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 3.1.0
|
25
30
|
- !ruby/object:Gem::Dependency
|
26
31
|
name: sqlite3
|
27
|
-
requirement:
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
28
33
|
none: false
|
29
34
|
requirements:
|
30
35
|
- - ! '>='
|
@@ -32,7 +37,12 @@ dependencies:
|
|
32
37
|
version: '0'
|
33
38
|
type: :development
|
34
39
|
prerelease: false
|
35
|
-
version_requirements:
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
36
46
|
description: Automatically initialize associations in Rails models
|
37
47
|
email:
|
38
48
|
- federico.builes@gmail.com
|
@@ -57,6 +67,7 @@ files:
|
|
57
67
|
- test/dummy/app/helpers/application_helper.rb
|
58
68
|
- test/dummy/app/models/address.rb
|
59
69
|
- test/dummy/app/models/nickname.rb
|
70
|
+
- test/dummy/app/models/order.rb
|
60
71
|
- test/dummy/app/models/phone.rb
|
61
72
|
- test/dummy/app/models/picture.rb
|
62
73
|
- test/dummy/app/models/project.rb
|
@@ -85,6 +96,7 @@ files:
|
|
85
96
|
- test/dummy/db/migrate/20111212001258_create_pictures.rb
|
86
97
|
- test/dummy/db/migrate/20111213003425_create_projects.rb
|
87
98
|
- test/dummy/db/migrate/20111213033025_create_nicknames.rb
|
99
|
+
- test/dummy/db/migrate/20120425150004_create_orders.rb
|
88
100
|
- test/dummy/db/schema.rb
|
89
101
|
- test/dummy/db/test.sqlite3
|
90
102
|
- test/dummy/log/development.log
|
@@ -97,16 +109,11 @@ files:
|
|
97
109
|
- test/dummy/script/rails
|
98
110
|
- test/dummy/test/fixtures/addresses.yml
|
99
111
|
- test/dummy/test/fixtures/nicknames.yml
|
112
|
+
- test/dummy/test/fixtures/orders.yml
|
100
113
|
- test/dummy/test/fixtures/phones.yml
|
101
114
|
- test/dummy/test/fixtures/pictures.yml
|
102
115
|
- test/dummy/test/fixtures/projects.yml
|
103
116
|
- test/dummy/test/fixtures/users.yml
|
104
|
-
- test/dummy/test/unit/address_test.rb
|
105
|
-
- test/dummy/test/unit/nickname_test.rb
|
106
|
-
- test/dummy/test/unit/phone_test.rb
|
107
|
-
- test/dummy/test/unit/picture_test.rb
|
108
|
-
- test/dummy/test/unit/project_test.rb
|
109
|
-
- test/dummy/test/unit/user_test.rb
|
110
117
|
- test/test_helper.rb
|
111
118
|
homepage: https://github.com/febuiles/auto_build
|
112
119
|
licenses: []
|
@@ -122,7 +129,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
122
129
|
version: '0'
|
123
130
|
segments:
|
124
131
|
- 0
|
125
|
-
hash: -
|
132
|
+
hash: -23256208061357801
|
126
133
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
127
134
|
none: false
|
128
135
|
requirements:
|
@@ -131,10 +138,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
131
138
|
version: '0'
|
132
139
|
segments:
|
133
140
|
- 0
|
134
|
-
hash: -
|
141
|
+
hash: -23256208061357801
|
135
142
|
requirements: []
|
136
143
|
rubyforge_project:
|
137
|
-
rubygems_version: 1.8.
|
144
|
+
rubygems_version: 1.8.24
|
138
145
|
signing_key:
|
139
146
|
specification_version: 3
|
140
147
|
summary: Automatically initialize associations in Rails models
|
@@ -146,6 +153,7 @@ test_files:
|
|
146
153
|
- test/dummy/app/helpers/application_helper.rb
|
147
154
|
- test/dummy/app/models/address.rb
|
148
155
|
- test/dummy/app/models/nickname.rb
|
156
|
+
- test/dummy/app/models/order.rb
|
149
157
|
- test/dummy/app/models/phone.rb
|
150
158
|
- test/dummy/app/models/picture.rb
|
151
159
|
- test/dummy/app/models/project.rb
|
@@ -174,6 +182,7 @@ test_files:
|
|
174
182
|
- test/dummy/db/migrate/20111212001258_create_pictures.rb
|
175
183
|
- test/dummy/db/migrate/20111213003425_create_projects.rb
|
176
184
|
- test/dummy/db/migrate/20111213033025_create_nicknames.rb
|
185
|
+
- test/dummy/db/migrate/20120425150004_create_orders.rb
|
177
186
|
- test/dummy/db/schema.rb
|
178
187
|
- test/dummy/db/test.sqlite3
|
179
188
|
- test/dummy/log/development.log
|
@@ -186,14 +195,9 @@ test_files:
|
|
186
195
|
- test/dummy/script/rails
|
187
196
|
- test/dummy/test/fixtures/addresses.yml
|
188
197
|
- test/dummy/test/fixtures/nicknames.yml
|
198
|
+
- test/dummy/test/fixtures/orders.yml
|
189
199
|
- test/dummy/test/fixtures/phones.yml
|
190
200
|
- test/dummy/test/fixtures/pictures.yml
|
191
201
|
- test/dummy/test/fixtures/projects.yml
|
192
202
|
- test/dummy/test/fixtures/users.yml
|
193
|
-
- test/dummy/test/unit/address_test.rb
|
194
|
-
- test/dummy/test/unit/nickname_test.rb
|
195
|
-
- test/dummy/test/unit/phone_test.rb
|
196
|
-
- test/dummy/test/unit/picture_test.rb
|
197
|
-
- test/dummy/test/unit/project_test.rb
|
198
|
-
- test/dummy/test/unit/user_test.rb
|
199
203
|
- test/test_helper.rb
|