built_in_data 1.0.2 → 1.1.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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: built_in_data
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Baldwin
@@ -10,34 +10,34 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-11-13 00:00:00.000000000 Z
13
+ date: 2017-04-13 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - '>='
19
+ - - ">="
20
20
  - !ruby/object:Gem::Version
21
21
  version: 4.0.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
- - - '>='
26
+ - - ">="
27
27
  - !ruby/object:Gem::Version
28
28
  version: 4.0.0
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: sqlite3
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - ~>
33
+ - - "~>"
34
34
  - !ruby/object:Gem::Version
35
35
  version: '1.3'
36
36
  type: :development
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - ~>
40
+ - - "~>"
41
41
  - !ruby/object:Gem::Version
42
42
  version: '1.3'
43
43
  description: BuiltInData is a simple tool for loading and updating data in a Rails
@@ -85,7 +85,6 @@ files:
85
85
  - test/dummy/config/routes.rb
86
86
  - test/dummy/config/secrets.yml
87
87
  - test/dummy/db/built_in_data/national_parks.yml
88
- - test/dummy/db/development.sqlite3
89
88
  - test/dummy/db/migrate/20121024195810_create_national_parks.rb
90
89
  - test/dummy/db/migrate/20121024201818_add_built_in_key_to_national_parks.rb
91
90
  - test/dummy/db/migrate/20121101224000_add_protected_attribute_column_to_national_parks.rb
@@ -93,7 +92,6 @@ files:
93
92
  - test/dummy/db/migrate/20141113214328_add_active_to_national_parks.rb
94
93
  - test/dummy/db/schema.rb
95
94
  - test/dummy/db/test.sqlite3
96
- - test/dummy/log/development.log
97
95
  - test/dummy/log/test.log
98
96
  - test/dummy/public/404.html
99
97
  - test/dummy/public/422.html
@@ -110,17 +108,17 @@ require_paths:
110
108
  - lib
111
109
  required_ruby_version: !ruby/object:Gem::Requirement
112
110
  requirements:
113
- - - '>='
111
+ - - ">="
114
112
  - !ruby/object:Gem::Version
115
113
  version: '0'
116
114
  required_rubygems_version: !ruby/object:Gem::Requirement
117
115
  requirements:
118
- - - '>='
116
+ - - ">="
119
117
  - !ruby/object:Gem::Version
120
118
  version: '0'
121
119
  requirements: []
122
120
  rubyforge_project:
123
- rubygems_version: 2.2.2
121
+ rubygems_version: 2.5.1
124
122
  signing_key:
125
123
  specification_version: 4
126
124
  summary: Data management for Rails models.
@@ -155,7 +153,6 @@ test_files:
155
153
  - test/dummy/config/secrets.yml
156
154
  - test/dummy/config.ru
157
155
  - test/dummy/db/built_in_data/national_parks.yml
158
- - test/dummy/db/development.sqlite3
159
156
  - test/dummy/db/migrate/20121024195810_create_national_parks.rb
160
157
  - test/dummy/db/migrate/20121024201818_add_built_in_key_to_national_parks.rb
161
158
  - test/dummy/db/migrate/20121101224000_add_protected_attribute_column_to_national_parks.rb
@@ -163,7 +160,6 @@ test_files:
163
160
  - test/dummy/db/migrate/20141113214328_add_active_to_national_parks.rb
164
161
  - test/dummy/db/schema.rb
165
162
  - test/dummy/db/test.sqlite3
166
- - test/dummy/log/development.log
167
163
  - test/dummy/log/test.log
168
164
  - test/dummy/public/404.html
169
165
  - test/dummy/public/422.html
Binary file
@@ -1,19 +0,0 @@
1
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
- Migrating to RemoveProtectedAttributeColumnFromNationalParks (20141111224715)
3
-  (0.1ms) begin transaction
4
-  (1.0ms) CREATE TEMPORARY TABLE "anational_parks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "established" date, "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "built_in_key" varchar(255), "protected_attribute_column" varchar(255)) 
5
-  (0.2ms) SELECT * FROM "national_parks"
6
-  (0.4ms) DROP TABLE "national_parks"
7
-  (0.1ms) CREATE TABLE "national_parks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "established" date, "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "built_in_key" varchar(255))
8
-  (0.0ms) SELECT * FROM "anational_parks"
9
-  (0.2ms) DROP TABLE "anational_parks"
10
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141111224715"]]
11
-  (1.7ms) commit transaction
12
- ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
- Migrating to AddActiveToNationalParks (20141113214328)
15
-  (0.1ms) begin transaction
16
-  (0.5ms) ALTER TABLE "national_parks" ADD "active" boolean
17
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141113214328"]]
18
-  (1.1ms) commit transaction
19
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"