seed_migrations 1.0.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 007f119ebd56230167f4a5cf5a1ffccd6a58661d
4
- data.tar.gz: ac3a17b4d475bf626cc73ead297446c9f4212331
3
+ metadata.gz: 9f6416eb67f541ace6140ce1c4a9be6d207aa5ac
4
+ data.tar.gz: cf8baaecfbc6dd82a9413455223bfa0dcef91f39
5
5
  SHA512:
6
- metadata.gz: 5282f33682ab9a2c26d68986a4a85241d35d1fcacf115afe0963fd2e349e6a391bc0933c4184d4abcf344ee8c03c25f30d6a371ca975c5e884dac50830dec280
7
- data.tar.gz: c0ab6c71f09907a3d9c8aedea41cc3090b21eb8da45b045b685caf8ad81d555dd87afc52b9c38807194216096e0e0513c335f77430ee3ffa0edcd0c1283602f1
6
+ metadata.gz: f4597cf6547b54b8849c0af070892ec96ca8b8e970f175b4db4a0f37ec7b90a87f621c60999b2f0b5098e041abf08782292f19c9120dac84428fd6a6a204b8f9
7
+ data.tar.gz: eed53e69d4c9e282cc0249f0398de983093524d994b5ac27719a315dcdb29b7c697c3bb7bf89d49e8a235d0494cdea7dd9572e1760a79aea2064b570987ec3e9
@@ -46,7 +46,7 @@ class ActiveRecord::SeedMigration < ActiveRecord::Base
46
46
  private
47
47
 
48
48
  def self.ensure_table_is_set
49
- create_seed_migrations_table unless ActiveRecord::Migration.table_exists?("seed_migrations")
49
+ create_seed_migrations_table unless ActiveRecord::Migration.data_source_exists?("seed_migrations")
50
50
  end
51
51
 
52
52
  def self.create_seed_migrations_table
@@ -1,3 +1,3 @@
1
1
  module SeedMigrations
2
- VERSION = "1.0.1"
2
+ VERSION = "1.2.0"
3
3
  end
@@ -40,12 +40,6 @@ module Dummy
40
40
  # like if you have constraints or database-specific column types
41
41
  # config.active_record.schema_format = :sql
42
42
 
43
- # Enforce whitelist mode for mass assignment.
44
- # This will create an empty whitelist of attributes available for mass-assignment for all models
45
- # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
46
- # parameters by using an attr_accessible or attr_protected declaration.
47
- config.active_record.whitelist_attributes = true
48
-
49
43
  # Enable the asset pipeline
50
44
  config.assets.enabled = true
51
45
 
@@ -6,6 +6,8 @@ Dummy::Application.configure do
6
6
  # since you don't have to restart the web server when you make code changes.
7
7
  config.cache_classes = false
8
8
 
9
+ config.eager_load = false
10
+
9
11
  # Show full error reports and disable caching
10
12
  config.consider_all_requests_local = true
11
13
  config.action_controller.perform_caching = false
@@ -19,9 +21,6 @@ Dummy::Application.configure do
19
21
  # Only use best-standards-support built into browsers
20
22
  config.action_dispatch.best_standards_support = :builtin
21
23
 
22
- # Raise exception on mass assignment protection for Active Record models
23
- config.active_record.mass_assignment_sanitizer = :strict
24
-
25
24
  # Log the query plan for queries taking more than this (works
26
25
  # with SQLite, MySQL, and PostgreSQL)
27
26
  config.active_record.auto_explain_threshold_in_seconds = 0.5
@@ -3,6 +3,8 @@ Dummy::Application.configure do
3
3
 
4
4
  # Code is not reloaded between requests
5
5
  config.cache_classes = true
6
+
7
+ config.eager_load = true
6
8
 
7
9
  # Full error reports are disabled and caching is turned on
8
10
  config.consider_all_requests_local = false
@@ -7,10 +7,12 @@ Dummy::Application.configure do
7
7
  # and recreated between test runs. Don't rely on the data there!
8
8
  config.cache_classes = true
9
9
 
10
+ config.eager_load = false
11
+
10
12
  # Configure static asset server for tests with Cache-Control for performance
11
13
  config.serve_static_assets = true
12
- config.static_cache_control = "public, max-age=3600"
13
-
14
+ config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' }
15
+
14
16
  # Log error messages when you accidentally call methods on nil
15
17
  config.whiny_nils = true
16
18
 
@@ -29,9 +31,6 @@ Dummy::Application.configure do
29
31
  # ActionMailer::Base.deliveries array.
30
32
  config.action_mailer.delivery_method = :test
31
33
 
32
- # Raise exception on mass assignment protection for Active Record models
33
- config.active_record.mass_assignment_sanitizer = :strict
34
-
35
34
  # Print deprecation notices to the stderr
36
35
  config.active_support.deprecation = :stderr
37
36
  end
@@ -0,0 +1,364 @@
1
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3
+  (0.1ms) begin transaction
4
+ --------------------------------------------------------
5
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
6
+ --------------------------------------------------------
7
+  (0.1ms) SELECT COUNT(*) FROM "plants"
8
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
9
+  (0.1ms) select sqlite_version(*)
10
+  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
11
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
12
+  (0.0ms) SAVEPOINT active_record_1
13
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
14
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:23:35 UTC], ["updated_at", 2017-04-25 14:23:35 UTC]]
15
+  (0.0ms) RELEASE SAVEPOINT active_record_1
16
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
17
+  (0.0ms) SAVEPOINT active_record_1
18
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
19
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:23:35 UTC], ["updated_at", 2017-04-25 14:23:35 UTC]]
20
+  (0.0ms) RELEASE SAVEPOINT active_record_1
21
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
22
+  (0.0ms) SAVEPOINT active_record_1
23
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
24
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
25
+  (0.1ms) SELECT COUNT(*) FROM "plants"
26
+  (0.0ms) SELECT COUNT(*) FROM "plants"
27
+ ActiveRecord::SeedMigration Load (5.4ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
28
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
29
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
30
+  (0.0ms) SAVEPOINT active_record_1
31
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
32
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
33
+  (0.1ms) SELECT COUNT(*) FROM "plants"
34
+  (0.4ms) rollback transaction
35
+  (0.0ms) begin transaction
36
+ --------------------------------------------------
37
+ SeedMigrationsTest: test_loading_seeds_is_possible
38
+ --------------------------------------------------
39
+  (0.2ms) SELECT COUNT(*) FROM "plants"
40
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
41
+  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
42
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
43
+  (0.0ms) SAVEPOINT active_record_1
44
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
45
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:23:35 UTC], ["updated_at", 2017-04-25 14:23:35 UTC]]
46
+  (0.0ms) RELEASE SAVEPOINT active_record_1
47
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
48
+  (0.0ms) SAVEPOINT active_record_1
49
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
50
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:23:35 UTC], ["updated_at", 2017-04-25 14:23:35 UTC]]
51
+  (0.0ms) RELEASE SAVEPOINT active_record_1
52
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
53
+  (0.0ms) SAVEPOINT active_record_1
54
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
55
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
56
+  (0.1ms) SELECT COUNT(*) FROM "plants"
57
+  (0.3ms) rollback transaction
58
+  (0.0ms) begin transaction
59
+ ------------------------------------------------------------
60
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
61
+ ------------------------------------------------------------
62
+  (0.2ms) SELECT COUNT(*) FROM "plants"
63
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
64
+  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
65
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
66
+  (0.0ms) SAVEPOINT active_record_1
67
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
68
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:23:35 UTC], ["updated_at", 2017-04-25 14:23:35 UTC]]
69
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
71
+  (0.1ms) SAVEPOINT active_record_1
72
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
73
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:23:35 UTC], ["updated_at", 2017-04-25 14:23:35 UTC]]
74
+  (0.0ms) RELEASE SAVEPOINT active_record_1
75
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
76
+  (0.0ms) SAVEPOINT active_record_1
77
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
78
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
79
+  (0.1ms) SELECT COUNT(*) FROM "plants"
80
+  (0.0ms) SELECT COUNT(*) FROM "plants"
81
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
82
+  (0.0ms) SAVEPOINT active_record_1
83
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
84
+  (0.0ms) RELEASE SAVEPOINT active_record_1
85
+  (0.0ms) SELECT COUNT(*) FROM "plants"
86
+  (0.3ms) rollback transaction
87
+  (0.0ms) begin transaction
88
+ ----------------------------------------------------------------------
89
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
90
+ ----------------------------------------------------------------------
91
+  (0.0ms) rollback transaction
92
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
93
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
94
+  (0.1ms) begin transaction
95
+ --------------------------------------------------------
96
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
97
+ --------------------------------------------------------
98
+  (0.0ms) SELECT COUNT(*) FROM "plants"
99
+  (0.4ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
100
+  (0.1ms) select sqlite_version(*)
101
+  (0.2ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
102
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
103
+  (0.0ms) SAVEPOINT active_record_1
104
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
105
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:25:37 UTC], ["updated_at", 2017-04-25 14:25:37 UTC]]
106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
107
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
108
+  (0.0ms) SAVEPOINT active_record_1
109
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
110
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:25:37 UTC], ["updated_at", 2017-04-25 14:25:37 UTC]]
111
+  (0.0ms) RELEASE SAVEPOINT active_record_1
112
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
113
+  (0.0ms) SAVEPOINT active_record_1
114
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
115
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
116
+  (0.1ms) SELECT COUNT(*) FROM "plants"
117
+  (0.1ms) SELECT COUNT(*) FROM "plants"
118
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
119
+ ActiveRecord::SeedMigration Load (5.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
120
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
121
+  (0.0ms) SAVEPOINT active_record_1
122
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
123
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
124
+  (0.1ms) SELECT COUNT(*) FROM "plants"
125
+  (0.8ms) rollback transaction
126
+  (0.1ms) begin transaction
127
+ --------------------------------------------------
128
+ SeedMigrationsTest: test_loading_seeds_is_possible
129
+ --------------------------------------------------
130
+  (0.1ms) SELECT COUNT(*) FROM "plants"
131
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
132
+  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
133
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
134
+  (0.0ms) SAVEPOINT active_record_1
135
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
136
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:25:37 UTC], ["updated_at", 2017-04-25 14:25:37 UTC]]
137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
138
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
139
+  (0.1ms) SAVEPOINT active_record_1
140
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
141
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:25:37 UTC], ["updated_at", 2017-04-25 14:25:37 UTC]]
142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
143
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
144
+  (0.0ms) SAVEPOINT active_record_1
145
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
146
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
147
+  (0.1ms) SELECT COUNT(*) FROM "plants"
148
+  (0.3ms) rollback transaction
149
+  (0.0ms) begin transaction
150
+ ------------------------------------------------------------
151
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
152
+ ------------------------------------------------------------
153
+  (0.1ms) SELECT COUNT(*) FROM "plants"
154
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
155
+  (0.2ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
156
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
157
+  (0.1ms) SAVEPOINT active_record_1
158
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
159
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:25:37 UTC], ["updated_at", 2017-04-25 14:25:37 UTC]]
160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
161
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
162
+  (0.0ms) SAVEPOINT active_record_1
163
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
164
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:25:37 UTC], ["updated_at", 2017-04-25 14:25:37 UTC]]
165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
166
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
167
+  (0.0ms) SAVEPOINT active_record_1
168
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
169
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
170
+  (0.1ms) SELECT COUNT(*) FROM "plants"
171
+  (0.0ms) SELECT COUNT(*) FROM "plants"
172
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
173
+  (0.1ms) SAVEPOINT active_record_1
174
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
175
+  (0.0ms) RELEASE SAVEPOINT active_record_1
176
+  (0.0ms) SELECT COUNT(*) FROM "plants"
177
+  (0.3ms) rollback transaction
178
+  (0.0ms) begin transaction
179
+ ----------------------------------------------------------------------
180
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
181
+ ----------------------------------------------------------------------
182
+  (0.0ms) rollback transaction
183
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
184
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
185
+  (0.1ms) begin transaction
186
+ ----------------------------------------------------------------------
187
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
188
+ ----------------------------------------------------------------------
189
+  (0.1ms) rollback transaction
190
+  (0.1ms) begin transaction
191
+ --------------------------------------------------------
192
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
193
+ --------------------------------------------------------
194
+  (0.0ms) SELECT COUNT(*) FROM "plants"
195
+  (0.4ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
196
+  (0.1ms) select sqlite_version(*)
197
+  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
198
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
199
+  (0.1ms) SAVEPOINT active_record_1
200
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
201
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:26:14 UTC], ["updated_at", 2017-04-25 14:26:14 UTC]]
202
+  (0.0ms) RELEASE SAVEPOINT active_record_1
203
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
204
+  (0.0ms) SAVEPOINT active_record_1
205
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
206
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:26:14 UTC], ["updated_at", 2017-04-25 14:26:14 UTC]]
207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
208
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
209
+  (0.1ms) SAVEPOINT active_record_1
210
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
211
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
212
+  (0.1ms) SELECT COUNT(*) FROM "plants"
213
+  (0.0ms) SELECT COUNT(*) FROM "plants"
214
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
215
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
216
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
217
+  (0.0ms) SAVEPOINT active_record_1
218
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
219
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
220
+  (0.1ms) SELECT COUNT(*) FROM "plants"
221
+  (0.4ms) rollback transaction
222
+  (0.0ms) begin transaction
223
+ --------------------------------------------------
224
+ SeedMigrationsTest: test_loading_seeds_is_possible
225
+ --------------------------------------------------
226
+  (0.1ms) SELECT COUNT(*) FROM "plants"
227
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
228
+  (0.4ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
229
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
230
+  (0.0ms) SAVEPOINT active_record_1
231
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
232
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:26:14 UTC], ["updated_at", 2017-04-25 14:26:14 UTC]]
233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
234
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
235
+  (0.0ms) SAVEPOINT active_record_1
236
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
237
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:26:14 UTC], ["updated_at", 2017-04-25 14:26:14 UTC]]
238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
239
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
240
+  (0.0ms) SAVEPOINT active_record_1
241
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
242
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
243
+  (0.1ms) SELECT COUNT(*) FROM "plants"
244
+  (0.3ms) rollback transaction
245
+  (0.0ms) begin transaction
246
+ ------------------------------------------------------------
247
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
248
+ ------------------------------------------------------------
249
+  (0.2ms) SELECT COUNT(*) FROM "plants"
250
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
251
+  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
252
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
253
+  (0.0ms) SAVEPOINT active_record_1
254
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
255
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:26:14 UTC], ["updated_at", 2017-04-25 14:26:14 UTC]]
256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
257
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
258
+  (0.0ms) SAVEPOINT active_record_1
259
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
260
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:26:14 UTC], ["updated_at", 2017-04-25 14:26:14 UTC]]
261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
262
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
263
+  (0.0ms) SAVEPOINT active_record_1
264
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
265
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
266
+  (0.1ms) SELECT COUNT(*) FROM "plants"
267
+  (0.1ms) SELECT COUNT(*) FROM "plants"
268
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
269
+  (0.0ms) SAVEPOINT active_record_1
270
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
271
+  (0.0ms) RELEASE SAVEPOINT active_record_1
272
+  (0.0ms) SELECT COUNT(*) FROM "plants"
273
+  (0.4ms) rollback transaction
274
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
275
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
276
+  (0.1ms) begin transaction
277
+ --------------------------------------------------------
278
+ SeedMigrationsTest: test_loading_seeds_happens_only_once
279
+ --------------------------------------------------------
280
+  (0.1ms) SELECT COUNT(*) FROM "plants"
281
+  (0.4ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
282
+  (0.0ms) select sqlite_version(*)
283
+  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
284
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
285
+  (0.0ms) SAVEPOINT active_record_1
286
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
287
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:27:30 UTC], ["updated_at", 2017-04-25 14:27:30 UTC]]
288
+  (0.0ms) RELEASE SAVEPOINT active_record_1
289
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
290
+  (0.0ms) SAVEPOINT active_record_1
291
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
292
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:27:30 UTC], ["updated_at", 2017-04-25 14:27:30 UTC]]
293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
294
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
295
+  (0.0ms) SAVEPOINT active_record_1
296
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
297
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
298
+  (0.4ms) SELECT COUNT(*) FROM "plants"
299
+  (0.0ms) SELECT COUNT(*) FROM "plants"
300
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
301
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
302
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
303
+  (0.0ms) SAVEPOINT active_record_1
304
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
305
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
306
+  (0.1ms) SELECT COUNT(*) FROM "plants"
307
+  (1.0ms) rollback transaction
308
+  (0.1ms) begin transaction
309
+ ------------------------------------------------------------
310
+ SeedMigrationsTest: test_reloading_the_last_seed_is_possible
311
+ ------------------------------------------------------------
312
+  (0.2ms) SELECT COUNT(*) FROM "plants"
313
+  (0.3ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
314
+  (0.3ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
315
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
316
+  (0.0ms) SAVEPOINT active_record_1
317
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
318
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:27:30 UTC], ["updated_at", 2017-04-25 14:27:30 UTC]]
319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
320
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
321
+  (0.0ms) SAVEPOINT active_record_1
322
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
323
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:27:30 UTC], ["updated_at", 2017-04-25 14:27:30 UTC]]
324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
325
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
326
+  (0.0ms) SAVEPOINT active_record_1
327
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
328
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
329
+  (0.1ms) SELECT COUNT(*) FROM "plants"
330
+  (0.0ms) SELECT COUNT(*) FROM "plants"
331
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" ORDER BY "seed_migrations"."id" DESC LIMIT ? [["LIMIT", 1]]
332
+  (0.1ms) SAVEPOINT active_record_1
333
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
335
+  (0.0ms) SELECT COUNT(*) FROM "plants"
336
+  (0.3ms) rollback transaction
337
+  (0.0ms) begin transaction
338
+ --------------------------------------------------
339
+ SeedMigrationsTest: test_loading_seeds_is_possible
340
+ --------------------------------------------------
341
+  (0.1ms) SELECT COUNT(*) FROM "plants"
342
+  (0.2ms) CREATE TABLE "seed_migrations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
343
+  (0.2ms) CREATE UNIQUE INDEX "index_seed_migrations_on_name" ON "seed_migrations" ("name")
344
+ ActiveRecord::SeedMigration Load (0.1ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133720_add_plant"], ["LIMIT", 1]]
345
+  (0.0ms) SAVEPOINT active_record_1
346
+ SQL (0.1ms) INSERT INTO "plants" DEFAULT VALUES
347
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133720_add_plant"], ["created_at", 2017-04-25 14:27:30 UTC], ["updated_at", 2017-04-25 14:27:30 UTC]]
348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
349
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133721_add_one_more_plant"], ["LIMIT", 1]]
350
+  (0.0ms) SAVEPOINT active_record_1
351
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
352
+ SQL (0.1ms) INSERT INTO "seed_migrations" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "20120604133721_add_one_more_plant"], ["created_at", 2017-04-25 14:27:30 UTC], ["updated_at", 2017-04-25 14:27:30 UTC]]
353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
354
+ ActiveRecord::SeedMigration Load (0.0ms) SELECT "seed_migrations".* FROM "seed_migrations" WHERE "seed_migrations"."name" = ? LIMIT ? [["name", "20120604133722_add_one_more_plant_failing"], ["LIMIT", 1]]
355
+  (0.0ms) SAVEPOINT active_record_1
356
+ SQL (0.0ms) INSERT INTO "plants" DEFAULT VALUES
357
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
358
+  (0.1ms) SELECT COUNT(*) FROM "plants"
359
+  (0.3ms) rollback transaction
360
+  (0.0ms) begin transaction
361
+ ----------------------------------------------------------------------
362
+ SeedMigrationGeneratorTest: test_Assert_all_files_are_properly_created
363
+ ----------------------------------------------------------------------
364
+  (0.0ms) rollback transaction
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: 1.0.1
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dustin Eversmann
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-01-20 00:00:00.000000000 Z
12
+ date: 2017-04-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -17,20 +17,20 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: '4.0'
20
+ version: '5.0'
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 4.0.2
23
+ version: 5.0.0
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
28
  - - "~>"
29
29
  - !ruby/object:Gem::Version
30
- version: '4.0'
30
+ version: '5.0'
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 4.0.2
33
+ version: 5.0.0
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: sqlite3
36
36
  requirement: !ruby/object:Gem::Requirement
@@ -93,6 +93,7 @@ files:
93
93
  - test/dummy/db/seed/20120604133721_add_one_more_plant.rb
94
94
  - test/dummy/db/seed/20120604133722_add_one_more_plant_failing.rb
95
95
  - test/dummy/db/test.sqlite3
96
+ - test/dummy/log/test.log
96
97
  - test/dummy/public/404.html
97
98
  - test/dummy/public/422.html
98
99
  - test/dummy/public/500.html
@@ -120,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
121
  version: '0'
121
122
  requirements: []
122
123
  rubyforge_project:
123
- rubygems_version: 2.2.0
124
+ rubygems_version: 2.5.2
124
125
  signing_key:
125
126
  specification_version: 4
126
127
  summary: Extension of seed behaviour for rails applications
@@ -154,6 +155,7 @@ test_files:
154
155
  - test/dummy/db/seed/20120604133721_add_one_more_plant.rb
155
156
  - test/dummy/db/seed/20120604133722_add_one_more_plant_failing.rb
156
157
  - test/dummy/db/test.sqlite3
158
+ - test/dummy/log/test.log
157
159
  - test/dummy/public/404.html
158
160
  - test/dummy/public/422.html
159
161
  - test/dummy/public/500.html