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.
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.3
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-20 00:00:00.000000000 Z
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.2.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
- ActiveRecord::SchemaMigration Load (3.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2
- Migrating to RemoveIntegrationSetting (20141122211945)
3
-  (0.1ms) BEGIN
4
-  (16.1ms) DROP TABLE "g5_updatable_integration_settings"
5
- SQL (0.6ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141122211945"]]
6
-  (1.8ms) COMMIT
7
- Migrating to AddNameToClientsAndLocations (20141211211945)
8
-  (0.1ms) BEGIN
9
-  (4.3ms) ALTER TABLE "g5_updatable_clients" ADD COLUMN "name" character varying(255)
10
-  (4.3ms) CREATE INDEX "index_g5_updatable_clients_on_name" ON "g5_updatable_clients" ("name")
11
-  (0.7ms) ALTER TABLE "g5_updatable_locations" ADD COLUMN "name" character varying(255)
12
-  (0.9ms) CREATE INDEX "index_g5_updatable_locations_on_name" ON "g5_updatable_locations" ("name")
13
- SQL (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141211211945"]]
14
-  (0.7ms) COMMIT
15
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
17
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
- ActiveRecord::SchemaMigration Load (1.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
19
- Migrating to UpdateNames (20141211711945)
20
-  (0.2ms) BEGIN
21
- G5Updatable::Client Load (2.9ms) SELECT "g5_updatable_clients".* FROM "g5_updatable_clients"
22
- G5Updatable::Location Load (2.2ms) SELECT "g5_updatable_locations".* FROM "g5_updatable_locations"
23
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141211711945"]]
24
-  (0.6ms) COMMIT
25
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"