integration_pal 0.1.1 → 0.1.2
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 +3 -10
- data/Rakefile +1 -12
- data/app/controllers/integration_pal/api/v1/jobs_controller.rb +3 -3
- data/app/controllers/integration_pal/jobs_controller.rb +1 -1
- data/app/models/integration_pal/job.rb +18 -0
- data/app/views/integration_pal/jobs/index.html.erb +4 -0
- data/db/migrate/20170531201218_add_error_fields_to_jobs.rb +6 -0
- data/lib/concerns/integration_pal/base_job.rb +34 -0
- data/lib/generators/integration_pal/install/USAGE +10 -0
- data/lib/generators/integration_pal/install/install_generator.rb +25 -0
- data/lib/integration_pal/version.rb +2 -2
- data/spec/dummy/config/application.rb +9 -1
- data/spec/dummy/db/schema.rb +3 -1
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +944 -0
- metadata +10 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: integration_pal
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cody Tanner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -206,6 +206,7 @@ files:
|
|
206
206
|
- config/routes.rb
|
207
207
|
- db/migrate/20170524203831_create_integration_pal_workers.rb
|
208
208
|
- db/migrate/20170525153603_create_integration_pal_jobs.rb
|
209
|
+
- db/migrate/20170531201218_add_error_fields_to_jobs.rb
|
209
210
|
- lib/canvas/client.rb
|
210
211
|
- lib/canvas/models/account.rb
|
211
212
|
- lib/canvas/models/base_model.rb
|
@@ -222,6 +223,9 @@ files:
|
|
222
223
|
- lib/canvas/models/x_list.rb
|
223
224
|
- lib/canvas/utils/csv.rb
|
224
225
|
- lib/canvas/utils/sis.rb
|
226
|
+
- lib/concerns/integration_pal/base_job.rb
|
227
|
+
- lib/generators/integration_pal/install/USAGE
|
228
|
+
- lib/generators/integration_pal/install/install_generator.rb
|
225
229
|
- lib/integration_pal.rb
|
226
230
|
- lib/integration_pal/engine.rb
|
227
231
|
- lib/integration_pal/version.rb
|
@@ -274,6 +278,8 @@ files:
|
|
274
278
|
- spec/dummy/config/secrets.yml
|
275
279
|
- spec/dummy/config/spring.rb
|
276
280
|
- spec/dummy/db/schema.rb
|
281
|
+
- spec/dummy/log/development.log
|
282
|
+
- spec/dummy/log/test.log
|
277
283
|
- spec/dummy/package.json
|
278
284
|
- spec/dummy/public/404.html
|
279
285
|
- spec/dummy/public/422.html
|
@@ -359,6 +365,8 @@ test_files:
|
|
359
365
|
- spec/dummy/config/spring.rb
|
360
366
|
- spec/dummy/config.ru
|
361
367
|
- spec/dummy/db/schema.rb
|
368
|
+
- spec/dummy/log/development.log
|
369
|
+
- spec/dummy/log/test.log
|
362
370
|
- spec/dummy/package.json
|
363
371
|
- spec/dummy/public/404.html
|
364
372
|
- spec/dummy/public/422.html
|