lti_provider_engine 1.2.0 → 1.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 941809dcc165bba97d78e8be9ba0f47a3f8c4ea63e7fdb2c253e93e374ace9f9
4
- data.tar.gz: 81ce27a2af3b93aade9db6f87d69e1f7a037d295bd3f2e08a806cd5e8af64c6c
3
+ metadata.gz: bf09ae68d7f921dc2a572d02ffb332a58577936c2a408457feb139314093e191
4
+ data.tar.gz: 19320687df7ee7c4bb10098c7cb47948d47f982e93051ce7268de2a84b6c0215
5
5
  SHA512:
6
- metadata.gz: 59ccefd6afbaa5353e7d84d07eeb636f00642b6417a973260efa52b53a22d9c770fd3c873e7f8949f9746c6371d8db7ed690676fe72c3de6d69fa2bd646b1976
7
- data.tar.gz: 12462118809d973370804c9817d01a421cebc44b2f244e2443a54429a54bb5b7ccb10c0e43290dc07e452f8c2c7c8c67c6b489e9a85c73f7e63956cadece3e2a
6
+ metadata.gz: 6a675f63079fa0d9ee68380fe6524861bc71df37c54c41031a3c745acd9991edeed4bef2c49a088bbd9d4f772c17faf1693f032201f7846233ab0396e73bec6e
7
+ data.tar.gz: 48418df1b343d65620b369566f2ce7e48203d398d016616e8feca9cb7fed4da64e87e63b148494ec79d8beea8e5d89a050db80f443762230af89fabc4741d6d3
@@ -12,7 +12,7 @@ module LtiProvider
12
12
 
13
13
  def self.setup!
14
14
  config = LtiProvider::Config
15
- if File.exists?(config_file)
15
+ if File.exist?(config_file)
16
16
  Rails.logger.info "Initializing LTI key and secret using configuration in #{config_file}"
17
17
  load_config.each do |k,v|
18
18
  config.send("#{k}=", v)
@@ -10,7 +10,7 @@ module LtiProvider
10
10
 
11
11
  def self.setup!
12
12
  config = LtiProvider::XmlConfig
13
- if File.exists?(config_file)
13
+ if File.exist?(config_file)
14
14
  Rails.logger.info "Initializing LTI XML config using configuration in #{config_file}"
15
15
  load_config.each do |k,v|
16
16
  config.send("#{k}=", v)
@@ -1,3 +1,3 @@
1
1
  module LtiProvider
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lti_provider_engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Donahue
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-03-18 00:00:00.000000000 Z
13
+ date: 2023-08-15 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
@@ -281,42 +281,42 @@ required_rubygems_version: !ruby/object:Gem::Requirement
281
281
  - !ruby/object:Gem::Version
282
282
  version: '0'
283
283
  requirements: []
284
- rubygems_version: 3.1.6
284
+ rubygems_version: 3.3.26
285
285
  signing_key:
286
286
  specification_version: 4
287
287
  summary: LtiProvider is a mountable engine for handling the LTI launch and exposing
288
288
  LTI parameters in your rails app.
289
289
  test_files:
290
- - spec/spec_helper.rb
290
+ - spec/controllers/lti_provider/lti_controller_spec.rb
291
+ - spec/dummy/Rakefile
291
292
  - spec/dummy/app/controllers/application_controller.rb
292
293
  - spec/dummy/app/controllers/welcome_controller.rb
294
+ - spec/dummy/config/application.rb
295
+ - spec/dummy/config/boot.rb
293
296
  - spec/dummy/config/cucumber.yml
294
- - spec/dummy/config/routes.rb
295
- - spec/dummy/config/locales/en.yml
296
- - spec/dummy/config/lti.yml
297
- - spec/dummy/config/environments/production.rb
297
+ - spec/dummy/config/database.yml
298
+ - spec/dummy/config/environment.rb
298
299
  - spec/dummy/config/environments/development.rb
300
+ - spec/dummy/config/environments/production.rb
299
301
  - spec/dummy/config/environments/test.rb
300
- - spec/dummy/config/environment.rb
301
- - spec/dummy/config/application.rb
302
- - spec/dummy/config/database.yml
303
- - spec/dummy/config/boot.rb
304
- - spec/dummy/config/lti_xml.yml
305
302
  - spec/dummy/config/initializers/backtrace_silencers.rb
303
+ - spec/dummy/config/initializers/inflections.rb
306
304
  - spec/dummy/config/initializers/mime_types.rb
305
+ - spec/dummy/config/initializers/secret_token.rb
307
306
  - spec/dummy/config/initializers/session_store.rb
308
307
  - spec/dummy/config/initializers/wrap_parameters.rb
309
- - spec/dummy/config/initializers/secret_token.rb
310
- - spec/dummy/config/initializers/inflections.rb
308
+ - spec/dummy/config/locales/en.yml
309
+ - spec/dummy/config/lti.yml
310
+ - spec/dummy/config/lti_xml.yml
311
+ - spec/dummy/config/routes.rb
311
312
  - spec/dummy/config.ru
312
- - spec/dummy/script/rails
313
- - spec/dummy/Rakefile
314
- - spec/dummy/public/favicon.ico
313
+ - spec/dummy/db/migrate/20130319050206_create_lti_provider_launches.lti_provider.rb
314
+ - spec/dummy/db/schema.rb
315
+ - spec/dummy/public/404.html
315
316
  - spec/dummy/public/422.html
316
317
  - spec/dummy/public/500.html
317
- - spec/dummy/public/404.html
318
+ - spec/dummy/public/favicon.ico
318
319
  - spec/dummy/public/robots.txt
319
- - spec/dummy/db/schema.rb
320
- - spec/dummy/db/migrate/20130319050206_create_lti_provider_launches.lti_provider.rb
320
+ - spec/dummy/script/rails
321
321
  - spec/models/lti_provider/launch_spec.rb
322
- - spec/controllers/lti_provider/lti_controller_spec.rb
322
+ - spec/spec_helper.rb