seed_migrations 0.0.2 → 0.0.3

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.
@@ -1,3 +1,3 @@
1
1
  module SeedMigrations
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -578,3 +578,4 @@ Connecting to database specified by database.yml
578
578
   (0.0ms) RELEASE SAVEPOINT active_record_1
579
579
   (0.1ms) SELECT COUNT(*) FROM "plants" 
580
580
   (0.7ms) rollback transaction
581
+ Connecting to database specified by database.yml
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seed_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,22 +10,27 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-06-25 00:00:00.000000000 Z
13
+ date: 2012-08-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
17
- requirement: &2151916540 !ruby/object:Gem::Requirement
17
+ requirement: !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ~>
21
21
  - !ruby/object:Gem::Version
22
- version: 3.2.3
22
+ version: '3.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *2151916540
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ version: '3.1'
26
31
  - !ruby/object:Gem::Dependency
27
32
  name: sqlite3
28
- requirement: &2151915820 !ruby/object:Gem::Requirement
33
+ requirement: !ruby/object:Gem::Requirement
29
34
  none: false
30
35
  requirements:
31
36
  - - ! '>='
@@ -33,7 +38,12 @@ dependencies:
33
38
  version: '0'
34
39
  type: :development
35
40
  prerelease: false
36
- version_requirements: *2151915820
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
37
47
  description: Handle seeding like migrating
38
48
  email:
39
49
  - admin@onrooby.com
@@ -41,57 +51,57 @@ executables: []
41
51
  extensions: []
42
52
  extra_rdoc_files: []
43
53
  files:
44
- - lib/generators/seed_migrations/seed_migration_generator.rb
45
- - lib/generators/seed_migrations/templates/seed_migration.rb
46
- - lib/seed_migrations/railties.rb
54
+ - lib/tasks/seed_migrations_tasks.rake
55
+ - lib/seed_migrations.rb
47
56
  - lib/seed_migrations/seed_migration.rb
48
57
  - lib/seed_migrations/version.rb
49
- - lib/seed_migrations.rb
50
- - lib/tasks/seed_migrations_tasks.rake
58
+ - lib/seed_migrations/railties.rb
59
+ - lib/generators/seed_migrations/templates/seed_migration.rb
60
+ - lib/generators/seed_migrations/seed_migration_generator.rb
51
61
  - MIT-LICENSE
52
62
  - Rakefile
53
63
  - README.md
54
- - test/dummy/app/assets/javascripts/application.js
55
- - test/dummy/app/assets/stylesheets/application.css
56
- - test/dummy/app/controllers/application_controller.rb
57
- - test/dummy/app/helpers/application_helper.rb
64
+ - test/seed_migration_generator_test.rb
65
+ - test/dummy/README.rdoc
66
+ - test/dummy/log/test.log
67
+ - test/dummy/log/development.log
68
+ - test/dummy/Rakefile
69
+ - test/dummy/db/seed/20120604133722_add_one_more_plant_failing.rb
70
+ - test/dummy/db/seed/20120604133721_add_one_more_plant.rb
71
+ - test/dummy/db/seed/20120604133720_add_plant.rb
72
+ - test/dummy/db/test.sqlite3
73
+ - test/dummy/db/schema.rb
74
+ - test/dummy/db/migrate/20120604133203_create_plants.rb
75
+ - test/dummy/db/development.sqlite3
76
+ - test/dummy/public/500.html
77
+ - test/dummy/public/422.html
78
+ - test/dummy/public/favicon.ico
79
+ - test/dummy/public/404.html
58
80
  - test/dummy/app/models/plant.rb
59
81
  - test/dummy/app/views/layouts/application.html.erb
82
+ - test/dummy/app/helpers/application_helper.rb
83
+ - test/dummy/app/controllers/application_controller.rb
84
+ - test/dummy/app/assets/stylesheets/application.css
85
+ - test/dummy/app/assets/javascripts/application.js
60
86
  - test/dummy/config/application.rb
61
- - test/dummy/config/boot.rb
62
- - test/dummy/config/database.yml
63
- - test/dummy/config/environment.rb
87
+ - test/dummy/config/routes.rb
88
+ - test/dummy/config/environments/test.rb
64
89
  - test/dummy/config/environments/development.rb
65
90
  - test/dummy/config/environments/production.rb
66
- - test/dummy/config/environments/test.rb
67
- - test/dummy/config/initializers/backtrace_silencers.rb
68
- - test/dummy/config/initializers/inflections.rb
69
- - test/dummy/config/initializers/mime_types.rb
91
+ - test/dummy/config/environment.rb
92
+ - test/dummy/config/locales/en.yml
93
+ - test/dummy/config/boot.rb
70
94
  - test/dummy/config/initializers/secret_token.rb
71
95
  - test/dummy/config/initializers/session_store.rb
96
+ - test/dummy/config/initializers/mime_types.rb
72
97
  - test/dummy/config/initializers/wrap_parameters.rb
73
- - test/dummy/config/locales/en.yml
74
- - test/dummy/config/routes.rb
98
+ - test/dummy/config/initializers/backtrace_silencers.rb
99
+ - test/dummy/config/initializers/inflections.rb
100
+ - test/dummy/config/database.yml
75
101
  - test/dummy/config.ru
76
- - test/dummy/db/development.sqlite3
77
- - test/dummy/db/migrate/20120604133203_create_plants.rb
78
- - test/dummy/db/schema.rb
79
- - test/dummy/db/seed/20120604133720_add_plant.rb
80
- - test/dummy/db/seed/20120604133721_add_one_more_plant.rb
81
- - test/dummy/db/seed/20120604133722_add_one_more_plant_failing.rb
82
- - test/dummy/db/test.sqlite3
83
- - test/dummy/log/development.log
84
- - test/dummy/log/test.log
85
- - test/dummy/public/404.html
86
- - test/dummy/public/422.html
87
- - test/dummy/public/500.html
88
- - test/dummy/public/favicon.ico
89
- - test/dummy/Rakefile
90
- - test/dummy/README.rdoc
91
102
  - test/dummy/script/rails
92
- - test/seed_migration_generator_test.rb
93
- - test/seed_migrations_test.rb
94
103
  - test/test_helper.rb
104
+ - test/seed_migrations_test.rb
95
105
  homepage: http://rubygems.org/gems/seed_migrations
96
106
  licenses: []
97
107
  post_install_message:
@@ -112,49 +122,49 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
122
  version: '0'
113
123
  requirements: []
114
124
  rubyforge_project:
115
- rubygems_version: 1.8.11
125
+ rubygems_version: 1.8.23
116
126
  signing_key:
117
127
  specification_version: 3
118
128
  summary: Extension of seed behaviour for rails applications
119
129
  test_files:
120
- - test/dummy/app/assets/javascripts/application.js
121
- - test/dummy/app/assets/stylesheets/application.css
122
- - test/dummy/app/controllers/application_controller.rb
123
- - test/dummy/app/helpers/application_helper.rb
130
+ - test/seed_migration_generator_test.rb
131
+ - test/dummy/README.rdoc
132
+ - test/dummy/log/test.log
133
+ - test/dummy/log/development.log
134
+ - test/dummy/Rakefile
135
+ - test/dummy/db/seed/20120604133722_add_one_more_plant_failing.rb
136
+ - test/dummy/db/seed/20120604133721_add_one_more_plant.rb
137
+ - test/dummy/db/seed/20120604133720_add_plant.rb
138
+ - test/dummy/db/test.sqlite3
139
+ - test/dummy/db/schema.rb
140
+ - test/dummy/db/migrate/20120604133203_create_plants.rb
141
+ - test/dummy/db/development.sqlite3
142
+ - test/dummy/public/500.html
143
+ - test/dummy/public/422.html
144
+ - test/dummy/public/favicon.ico
145
+ - test/dummy/public/404.html
124
146
  - test/dummy/app/models/plant.rb
125
147
  - test/dummy/app/views/layouts/application.html.erb
148
+ - test/dummy/app/helpers/application_helper.rb
149
+ - test/dummy/app/controllers/application_controller.rb
150
+ - test/dummy/app/assets/stylesheets/application.css
151
+ - test/dummy/app/assets/javascripts/application.js
126
152
  - test/dummy/config/application.rb
127
- - test/dummy/config/boot.rb
128
- - test/dummy/config/database.yml
129
- - test/dummy/config/environment.rb
153
+ - test/dummy/config/routes.rb
154
+ - test/dummy/config/environments/test.rb
130
155
  - test/dummy/config/environments/development.rb
131
156
  - test/dummy/config/environments/production.rb
132
- - test/dummy/config/environments/test.rb
133
- - test/dummy/config/initializers/backtrace_silencers.rb
134
- - test/dummy/config/initializers/inflections.rb
135
- - test/dummy/config/initializers/mime_types.rb
157
+ - test/dummy/config/environment.rb
158
+ - test/dummy/config/locales/en.yml
159
+ - test/dummy/config/boot.rb
136
160
  - test/dummy/config/initializers/secret_token.rb
137
161
  - test/dummy/config/initializers/session_store.rb
162
+ - test/dummy/config/initializers/mime_types.rb
138
163
  - test/dummy/config/initializers/wrap_parameters.rb
139
- - test/dummy/config/locales/en.yml
140
- - test/dummy/config/routes.rb
164
+ - test/dummy/config/initializers/backtrace_silencers.rb
165
+ - test/dummy/config/initializers/inflections.rb
166
+ - test/dummy/config/database.yml
141
167
  - test/dummy/config.ru
142
- - test/dummy/db/development.sqlite3
143
- - test/dummy/db/migrate/20120604133203_create_plants.rb
144
- - test/dummy/db/schema.rb
145
- - test/dummy/db/seed/20120604133720_add_plant.rb
146
- - test/dummy/db/seed/20120604133721_add_one_more_plant.rb
147
- - test/dummy/db/seed/20120604133722_add_one_more_plant_failing.rb
148
- - test/dummy/db/test.sqlite3
149
- - test/dummy/log/development.log
150
- - test/dummy/log/test.log
151
- - test/dummy/public/404.html
152
- - test/dummy/public/422.html
153
- - test/dummy/public/500.html
154
- - test/dummy/public/favicon.ico
155
- - test/dummy/Rakefile
156
- - test/dummy/README.rdoc
157
168
  - test/dummy/script/rails
158
- - test/seed_migration_generator_test.rb
159
- - test/seed_migrations_test.rb
160
169
  - test/test_helper.rb
170
+ - test/seed_migrations_test.rb