g5_updatable 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.
- checksums.yaml +4 -4
- data/README.md +7 -0
- data/app/controllers/g5_updatable/syncs_controller.rb +13 -0
- data/config/routes.rb +2 -0
- data/lib/g5_updatable/version.rb +1 -1
- data/spec/controllers/syncs_controller_spec.rb +20 -0
- data/spec/dummy/config/database.yml +1 -1
- data/spec/dummy/log/test.log +611 -19279
- metadata +6 -5
- data/spec/dummy/log/development.log +0 -25
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: g5_updatable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Bauer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -155,6 +155,7 @@ files:
|
|
155
155
|
- app/controllers/g5_updatable/base_updatable_controller.rb
|
156
156
|
- app/controllers/g5_updatable/feed_controller.rb
|
157
157
|
- app/controllers/g5_updatable/locations_controller.rb
|
158
|
+
- app/controllers/g5_updatable/syncs_controller.rb
|
158
159
|
- app/helpers/g5_updatable/base_updatable_helper.rb
|
159
160
|
- app/models/g5_updatable/client.rb
|
160
161
|
- app/models/g5_updatable/location.rb
|
@@ -181,6 +182,7 @@ files:
|
|
181
182
|
- spec/concerns/g5_updatable/belongs_to_client_spec.rb
|
182
183
|
- spec/concerns/g5_updatable/belongs_to_location_spec.rb
|
183
184
|
- spec/controllers/locations_controller_spec.rb
|
185
|
+
- spec/controllers/syncs_controller_spec.rb
|
184
186
|
- spec/dummy/README.rdoc
|
185
187
|
- spec/dummy/Rakefile
|
186
188
|
- spec/dummy/app/assets/javascripts/application.js
|
@@ -223,7 +225,6 @@ files:
|
|
223
225
|
- spec/dummy/db/migrate/20141222072623_create_restaurants.rb
|
224
226
|
- spec/dummy/db/schema.rb
|
225
227
|
- spec/dummy/db/test.sqlite3
|
226
|
-
- spec/dummy/log/development.log
|
227
228
|
- spec/dummy/log/test.log
|
228
229
|
- spec/dummy/public/404.html
|
229
230
|
- spec/dummy/public/422.html
|
@@ -264,7 +265,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
264
265
|
version: '0'
|
265
266
|
requirements: []
|
266
267
|
rubyforge_project:
|
267
|
-
rubygems_version: 2.
|
268
|
+
rubygems_version: 2.4.2
|
268
269
|
signing_key:
|
269
270
|
specification_version: 4
|
270
271
|
summary: Client/Locations data update engine for G5 applications
|
@@ -272,6 +273,7 @@ test_files:
|
|
272
273
|
- spec/concerns/g5_updatable/belongs_to_client_spec.rb
|
273
274
|
- spec/concerns/g5_updatable/belongs_to_location_spec.rb
|
274
275
|
- spec/controllers/locations_controller_spec.rb
|
276
|
+
- spec/controllers/syncs_controller_spec.rb
|
275
277
|
- spec/dummy/app/assets/javascripts/application.js
|
276
278
|
- spec/dummy/app/assets/stylesheets/application.css
|
277
279
|
- spec/dummy/app/controllers/application_controller.rb
|
@@ -312,7 +314,6 @@ test_files:
|
|
312
314
|
- spec/dummy/db/migrate/20141222072623_create_restaurants.rb
|
313
315
|
- spec/dummy/db/schema.rb
|
314
316
|
- spec/dummy/db/test.sqlite3
|
315
|
-
- spec/dummy/log/development.log
|
316
317
|
- spec/dummy/log/test.log
|
317
318
|
- spec/dummy/public/404.html
|
318
319
|
- spec/dummy/public/422.html
|
@@ -1,25 +0,0 @@
|
|
1
|
-
[1m[36mActiveRecord::SchemaMigration Load (3.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2
|
-
Migrating to RemoveIntegrationSetting (20141122211945)
|
3
|
-
[1m[35m (0.1ms)[0m BEGIN
|
4
|
-
[1m[36m (16.1ms)[0m [1mDROP TABLE "g5_updatable_integration_settings"[0m
|
5
|
-
[1m[35mSQL (0.6ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141122211945"]]
|
6
|
-
[1m[36m (1.8ms)[0m [1mCOMMIT[0m
|
7
|
-
Migrating to AddNameToClientsAndLocations (20141211211945)
|
8
|
-
[1m[35m (0.1ms)[0m BEGIN
|
9
|
-
[1m[36m (4.3ms)[0m [1mALTER TABLE "g5_updatable_clients" ADD COLUMN "name" character varying(255)[0m
|
10
|
-
[1m[35m (4.3ms)[0m CREATE INDEX "index_g5_updatable_clients_on_name" ON "g5_updatable_clients" ("name")
|
11
|
-
[1m[36m (0.7ms)[0m [1mALTER TABLE "g5_updatable_locations" ADD COLUMN "name" character varying(255)[0m
|
12
|
-
[1m[35m (0.9ms)[0m CREATE INDEX "index_g5_updatable_locations_on_name" ON "g5_updatable_locations" ("name")
|
13
|
-
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141211211945"]]
|
14
|
-
[1m[35m (0.7ms)[0m COMMIT
|
15
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
16
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
17
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
18
|
-
[1m[36mActiveRecord::SchemaMigration Load (1.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19
|
-
Migrating to UpdateNames (20141211711945)
|
20
|
-
[1m[35m (0.2ms)[0m BEGIN
|
21
|
-
[1m[36mG5Updatable::Client Load (2.9ms)[0m [1mSELECT "g5_updatable_clients".* FROM "g5_updatable_clients"[0m
|
22
|
-
[1m[35mG5Updatable::Location Load (2.2ms)[0m SELECT "g5_updatable_locations".* FROM "g5_updatable_locations"
|
23
|
-
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141211711945"]]
|
24
|
-
[1m[35m (0.6ms)[0m COMMIT
|
25
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|