lti_provider_engine 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- YzZkNjE2Yzc1ZTRmNzM4NzcwNGNiZWQ3MDI4ZjE1MzY0ZDJlMzJkMw==
5
- data.tar.gz: !binary |-
6
- MjQ5YTY2MTRkZjM5ZjRkOWI5NWJkNzk3NGFmOTZkODIzYTRmMzNhZQ==
2
+ SHA1:
3
+ metadata.gz: 2331547ef23a285fc86370f75e65780c8f508334
4
+ data.tar.gz: b1ca044fa0dafbec3a3ac89f0411cbf26de0e08f
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MGZiNzI2NTUxMDU3NDZlZmVmZWJiMjk0MDAxODBmNTZiN2JmNWZkYWFmNzE3
10
- MTJhYWI5Y2QyNjU2ODIxZWQ2Zjc2YTg4ZWY0NGM5N2MzZTdmNjk4MDQ5NjE2
11
- Mzg4N2Y3MjdmNzllNTQxYzczNzMzZmU3ZjhiMTYyOTZlMGU5ZjA=
12
- data.tar.gz: !binary |-
13
- ZGJjOWI1ODc4MjczNWQzNDA0ZDUxMDFlZjE4MjI2YzU0OGM0M2U1Zjc5ZDdh
14
- NWNkOTljOTZhMzgyY2ViZWNmOTEzYWJmMTQ1ODczOTQ5ZjA2MDMwZWYxOWUx
15
- Y2FlMTlkOTA5NWZkNDA5Y2Y2NDlmM2NkODA3MWJiYmI3MzA4M2I=
6
+ metadata.gz: b76c3b41dcdeffbc9d54d9789748e64eb0755025682267cd1c08cbb6cf8d5965f0c79401f5791d1ce4eacc3957f4aac9018335b97f9f3c6b2b46f60f9e12a59f
7
+ data.tar.gz: c3f18d46fc0c581b0316c091426cd34d2d057d0e3af81b1db549dfa232f58cb7679df4a854c86e2870ab0e05c65382dcd22bf0e3c30d83667ccb97431b5c4b48
data/README.md CHANGED
@@ -7,19 +7,19 @@ parameters in your rails app.
7
7
 
8
8
  Add the gem to your `Gemfile` with the following line, and then `bundle install`
9
9
 
10
- ```
10
+ ```ruby
11
11
  gem 'lti_provider_engine', :require => 'lti_provider'
12
12
  ```
13
13
 
14
14
  Then, mount the engine to your app by adding this line to your `routes.rb` file
15
15
 
16
- ```
16
+ ```ruby
17
17
  mount LtiProvider::Engine => "/"
18
18
  ```
19
19
 
20
20
  Next, include the engine in your `ApplicationController`
21
21
 
22
- ```
22
+ ```ruby
23
23
  class ApplicationController < ActionController::Base
24
24
  include LtiProvider::LtiApplication
25
25
 
@@ -32,7 +32,7 @@ like this:
32
32
 
33
33
  **lti.yml**
34
34
 
35
- ```
35
+ ```yml
36
36
  default: &default
37
37
  key: your_key
38
38
  secret: your_secret
@@ -53,7 +53,7 @@ the tool consumer side.
53
53
 
54
54
  **lti_xml.yml**
55
55
 
56
- ```
56
+ ```yml
57
57
  default: &default
58
58
  tool_title: 'Dummy App'
59
59
  tool_description: 'A very handy dummy application for testing LtiProvider engine integration.'
@@ -80,7 +80,7 @@ These values are used in the `/configure.xml` endpoint.
80
80
 
81
81
  Finally, run migrations:
82
82
 
83
- ```
83
+ ```bash
84
84
  bundle install
85
85
  bundle exec rake railties:install:migrations
86
86
  bundle exec rake db:migrate
@@ -116,6 +116,7 @@ exposes the following methods to your controllers:
116
116
  * `current_account_id`
117
117
  * `course_launch?`
118
118
  * `account_launch?`
119
+ * `user_roles`
119
120
 
120
121
  ## Configuring the Tool Consumer
121
122
 
@@ -1,5 +1,5 @@
1
1
  module LtiProvider
2
- class ApplicationController < ActionController::Base
2
+ class LtiApplicationController < ActionController::Base
3
3
  include LtiProvider::LtiApplication
4
4
  end
5
5
  end
@@ -1,7 +1,7 @@
1
1
  require 'oauth/request_proxy/rack_request'
2
2
 
3
3
  module LtiProvider
4
- class LtiController < LtiProvider::ApplicationController
4
+ class LtiController < LtiProvider::LtiApplicationController
5
5
  skip_before_filter :require_lti_launch
6
6
 
7
7
  def launch
@@ -1,3 +1,5 @@
1
+ require 'yaml'
2
+
1
3
  module LtiProvider
2
4
  module LtiConfig
3
5
  def self.load_config
@@ -1,3 +1,3 @@
1
1
  module LtiProvider
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -5556,3 +5556,124 @@ Processing by LtiProvider::LtiController#launch as HTML
5556
5556
  Redirected to http://test.host/cookie_test?nonce=ZGPvV4gwXerMzzlENVRfU6RmPM1mrt45rb99TBaE
5557
5557
  Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
5558
5558
   (0.4ms) rollback transaction
5559
+ Initializing LTI key and secret using configuration in /Users/simon/Instructure/projects/lti_provider_engine/spec/dummy/config/lti.yml
5560
+ Initializing LTI key and secret using configuration in /Users/simon/Instructure/projects/lti_provider_engine/spec/dummy/config/lti.yml
5561
+ Initializing LTI key and secret using configuration in /Users/simon/Instructure/projects/lti_provider_engine/spec/dummy/config/lti.yml
5562
+ Initializing LTI XML config using configuration in /Users/simon/Instructure/projects/lti_provider_engine/spec/dummy/config/lti_xml.yml
5563
+  (0.4ms) begin transaction
5564
+ Processing by LtiProvider::LtiController#configure as XML
5565
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5566
+  (0.1ms) rollback transaction
5567
+  (0.0ms) begin transaction
5568
+  (0.0ms) SAVEPOINT active_record_1
5569
+ SQL (1.2ms) INSERT INTO "lti_provider_launches" ("canvas_url", "created_at", "nonce", "provider_params", "updated_at") VALUES (?, ?, ?, ?, ?) [["canvas_url", "http://canvas"], ["created_at", "2015-08-20 19:45:59.693313"], ["nonce", "abcd"], ["provider_params", "---\ncustom_canvas_course_id: 1\ncustom_canvas_user_id: 2\ntool_consumer_instance_guid: 123abc\next_roles: student\n"], ["updated_at", "2015-08-20 19:45:59.693313"]]
5570
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5571
+ Processing by LtiProvider::LtiController#consume_launch as HTML
5572
+ Parameters: {"nonce"=>"invalid"}
5573
+ LtiProvider::Launch Load (0.1ms) SELECT "lti_provider_launches".* FROM "lti_provider_launches" WHERE (created_at > '2015-08-20 19:40:59.704699') AND "lti_provider_launches"."nonce" = 'invalid' LIMIT 1
5574
+ Completed 200 OK in 37ms (Views: 13.4ms | ActiveRecord: 0.1ms)
5575
+  (0.7ms) rollback transaction
5576
+  (0.0ms) begin transaction
5577
+  (0.0ms) SAVEPOINT active_record_1
5578
+ SQL (0.3ms) INSERT INTO "lti_provider_launches" ("canvas_url", "created_at", "nonce", "provider_params", "updated_at") VALUES (?, ?, ?, ?, ?) [["canvas_url", "http://canvas"], ["created_at", "2015-08-20 19:45:59.743967"], ["nonce", "abcd"], ["provider_params", "---\ncustom_canvas_course_id: 1\ncustom_canvas_user_id: 2\ntool_consumer_instance_guid: 123abc\next_roles: student\n"], ["updated_at", "2015-08-20 19:45:59.743967"]]
5579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5580
+ Processing by LtiProvider::LtiController#consume_launch as HTML
5581
+ Parameters: {"nonce"=>"abcd"}
5582
+ LtiProvider::Launch Load (0.1ms) SELECT "lti_provider_launches".* FROM "lti_provider_launches" WHERE (created_at > '2015-08-20 19:40:59.745988') AND "lti_provider_launches"."nonce" = 'abcd' LIMIT 1
5583
+  (0.0ms) SAVEPOINT active_record_1
5584
+ SQL (1.1ms) DELETE FROM "lti_provider_launches" WHERE "lti_provider_launches"."id" = ? [["id", 1]]
5585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5586
+ Redirected to http://test.host/
5587
+ Completed 302 Found in 6ms (ActiveRecord: 1.2ms)
5588
+  (0.7ms) rollback transaction
5589
+  (0.0ms) begin transaction
5590
+  (0.0ms) SAVEPOINT active_record_1
5591
+ SQL (0.3ms) INSERT INTO "lti_provider_launches" ("canvas_url", "created_at", "nonce", "provider_params", "updated_at") VALUES (?, ?, ?, ?, ?) [["canvas_url", "http://canvas"], ["created_at", "2015-08-20 19:45:59.760962"], ["nonce", "abcd"], ["provider_params", "---\ncustom_canvas_course_id: 1\ncustom_canvas_user_id: 2\ntool_consumer_instance_guid: 123abc\next_roles: student\n"], ["updated_at", "2015-08-20 19:45:59.760962"]]
5592
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5593
+ Processing by LtiProvider::LtiController#consume_launch as HTML
5594
+ Parameters: {"nonce"=>"abcd"}
5595
+ LtiProvider::Launch Load (0.1ms) SELECT "lti_provider_launches".* FROM "lti_provider_launches" WHERE (created_at > '2015-08-20 19:40:59.763792') AND "lti_provider_launches"."nonce" = 'abcd' LIMIT 1
5596
+  (0.1ms) SAVEPOINT active_record_1
5597
+ SQL (0.3ms) DELETE FROM "lti_provider_launches" WHERE "lti_provider_launches"."id" = ? [["id", 1]]
5598
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5599
+ Redirected to http://test.host/
5600
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
5601
+  (0.1ms) SELECT COUNT(*) FROM "lti_provider_launches"
5602
+  (0.6ms) rollback transaction
5603
+  (0.1ms) begin transaction
5604
+  (0.1ms) SAVEPOINT active_record_1
5605
+ SQL (0.2ms) INSERT INTO "lti_provider_launches" ("canvas_url", "created_at", "nonce", "provider_params", "updated_at") VALUES (?, ?, ?, ?, ?) [["canvas_url", "http://canvas"], ["created_at", "2015-08-20 19:45:59.769436"], ["nonce", "abcd"], ["provider_params", "---\ncustom_canvas_course_id: 1\ncustom_canvas_user_id: 2\ntool_consumer_instance_guid: 123abc\next_roles: student\n"], ["updated_at", "2015-08-20 19:45:59.769436"]]
5606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5607
+  (0.0ms) SAVEPOINT active_record_1
5608
+ SQL (0.3ms) UPDATE "lti_provider_launches" SET "created_at" = ?, "provider_params" = ?, "updated_at" = ? WHERE "lti_provider_launches"."id" = 1 [["created_at", "2015-08-20 19:35:59.770866"], ["provider_params", "---\ncustom_canvas_course_id: 1\ncustom_canvas_user_id: 2\ntool_consumer_instance_guid: 123abc\next_roles: student\n"], ["updated_at", "2015-08-20 19:45:59.771142"]]
5609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5610
+ Processing by LtiProvider::LtiController#consume_launch as HTML
5611
+ Parameters: {"nonce"=>"abcd"}
5612
+ LtiProvider::Launch Load (0.1ms) SELECT "lti_provider_launches".* FROM "lti_provider_launches" WHERE (created_at > '2015-08-20 19:40:59.773739') AND "lti_provider_launches"."nonce" = 'abcd' LIMIT 1
5613
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
5614
+  (0.7ms) rollback transaction
5615
+  (0.0ms) begin transaction
5616
+ Processing by LtiProvider::LtiController#cookie_test as HTML
5617
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
5618
+  (0.1ms) rollback transaction
5619
+  (0.0ms) begin transaction
5620
+ Processing by LtiProvider::LtiController#cookie_test as HTML
5621
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
5622
+  (0.0ms) rollback transaction
5623
+  (0.0ms) begin transaction
5624
+ Processing by LtiProvider::LtiController#launch as HTML
5625
+ Parameters: {"oauth_consumer_key"=>"12345", "oauth_signature_method"=>"HMAC-SHA1", "oauth_timestamp"=>"1440099959", "oauth_nonce"=>"DHlkQcKFRHyL4uXMEUGZUQPkGvWdHEvXSRsybpbgq0", "oauth_version"=>"1.0", "custom_canvas_user_id"=>"1", "launch_presentation_return_url"=>"http://test.canvas", "launch_url"=>"http://test.host", "lti_message_type"=>"basic-lti-launch-request", "lti_version"=>"LTI-1p0", "oauth_signature"=>"ky8aMdeQ92j+geXeK3TGH8Hp2m4="}
5626
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
5627
+  (0.1ms) rollback transaction
5628
+  (0.1ms) begin transaction
5629
+ Processing by LtiProvider::LtiController#launch as HTML
5630
+ Parameters: {"oauth_consumer_key"=>"12345", "oauth_signature_method"=>"HMAC-SHA1", "oauth_timestamp"=>"1440099959", "oauth_nonce"=>"BhJqsEX8tlf2Xglq6wubYqqEb1lTe8DLcdauwFZLjI", "oauth_version"=>"1.0", "custom_canvas_user_id"=>"1", "launch_presentation_return_url"=>"http://test.canvas", "launch_url"=>"http://test.host", "lti_message_type"=>"basic-lti-launch-request", "lti_version"=>"LTI-1p0", "oauth_signature"=>"f+colh7Dm4s/bgPWUNXdrFR4BQE="}
5631
+  (0.0ms) SAVEPOINT active_record_1
5632
+ SQL (0.3ms) INSERT INTO "lti_provider_launches" ("canvas_url", "created_at", "nonce", "provider_params", "updated_at") VALUES (?, ?, ?, ?, ?) [["canvas_url", "http://test.canvas"], ["created_at", "2015-08-20 19:45:59.843502"], ["nonce", "BhJqsEX8tlf2Xglq6wubYqqEb1lTe8DLcdauwFZLjI"], ["provider_params", "---\nlaunch_presentation_return_url: http://test.canvas\nlti_message_type: basic-lti-launch-request\nlti_version: LTI-1p0\noauth_consumer_key: '12345'\noauth_nonce: BhJqsEX8tlf2Xglq6wubYqqEb1lTe8DLcdauwFZLjI\noauth_signature: f+colh7Dm4s/bgPWUNXdrFR4BQE=\noauth_signature_method: HMAC-SHA1\noauth_timestamp: '1440099959'\noauth_version: '1.0'\ncustom_canvas_user_id: '1'\n"], ["updated_at", "2015-08-20 19:45:59.843502"]]
5633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5634
+ Redirected to http://test.host/cookie_test?nonce=BhJqsEX8tlf2Xglq6wubYqqEb1lTe8DLcdauwFZLjI
5635
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
5636
+  (0.4ms) rollback transaction
5637
+  (0.0ms) begin transaction
5638
+ Processing by LtiProvider::LtiController#launch as HTML
5639
+ Parameters: {"oauth_consumer_key"=>"12345", "oauth_signature_method"=>"HMAC-SHA1", "oauth_timestamp"=>"1440099959", "oauth_nonce"=>"pqFhiL3kYP00C1MBdvWbj5JWMrt7jtzkVPYGGF9WwyY", "oauth_version"=>"1.0", "custom_canvas_user_id"=>"1", "launch_presentation_return_url"=>"http://test.canvas", "launch_url"=>"http://test.host", "lti_message_type"=>"basic-lti-launch-request", "lti_version"=>"LTI-1p0", "oauth_signature"=>"nvONUqLctztRpU6ngUzjYundu7s="}
5640
+  (0.0ms) SAVEPOINT active_record_1
5641
+ SQL (0.3ms) INSERT INTO "lti_provider_launches" ("canvas_url", "created_at", "nonce", "provider_params", "updated_at") VALUES (?, ?, ?, ?, ?) [["canvas_url", "http://test.canvas"], ["created_at", "2015-08-20 19:45:59.854697"], ["nonce", "pqFhiL3kYP00C1MBdvWbj5JWMrt7jtzkVPYGGF9WwyY"], ["provider_params", "---\nlaunch_presentation_return_url: http://test.canvas\nlti_message_type: basic-lti-launch-request\nlti_version: LTI-1p0\noauth_consumer_key: '12345'\noauth_nonce: pqFhiL3kYP00C1MBdvWbj5JWMrt7jtzkVPYGGF9WwyY\noauth_signature: nvONUqLctztRpU6ngUzjYundu7s=\noauth_signature_method: HMAC-SHA1\noauth_timestamp: '1440099959'\noauth_version: '1.0'\ncustom_canvas_user_id: '1'\n"], ["updated_at", "2015-08-20 19:45:59.854697"]]
5642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5643
+ Redirected to http://test.host/cookie_test?nonce=pqFhiL3kYP00C1MBdvWbj5JWMrt7jtzkVPYGGF9WwyY
5644
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
5645
+ LtiProvider::Launch Load (0.1ms) SELECT "lti_provider_launches".* FROM "lti_provider_launches" ORDER BY "lti_provider_launches"."id" ASC LIMIT 1
5646
+  (0.4ms) rollback transaction
5647
+  (0.0ms) begin transaction
5648
+ Processing by LtiProvider::LtiController#launch as HTML
5649
+ Parameters: {"oauth_signature_method"=>"HMAC-SHA1", "oauth_timestamp"=>"1440099959", "oauth_nonce"=>"uwyU9DRiF7ndpctwTb6S48WUKQ5RQUCY0TIUSubz6Y", "oauth_version"=>"1.0", "custom_canvas_user_id"=>"1", "launch_presentation_return_url"=>"http://test.canvas", "launch_url"=>"http://test.host", "lti_message_type"=>"basic-lti-launch-request", "lti_version"=>"LTI-1p0", "oauth_signature"=>"8oJlfVCs8AuR9F2H6S0KW3ecE8Q="}
5650
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
5651
+  (0.0ms) rollback transaction
5652
+  (0.0ms) begin transaction
5653
+  (0.1ms) rollback transaction
5654
+  (0.1ms) begin transaction
5655
+  (0.0ms) rollback transaction
5656
+  (0.0ms) begin transaction
5657
+  (0.0ms) rollback transaction
5658
+  (0.0ms) begin transaction
5659
+  (0.0ms) rollback transaction
5660
+  (0.0ms) begin transaction
5661
+  (0.0ms) rollback transaction
5662
+  (0.0ms) begin transaction
5663
+  (0.1ms) rollback transaction
5664
+  (0.0ms) begin transaction
5665
+  (0.0ms) rollback transaction
5666
+  (0.0ms) begin transaction
5667
+  (0.0ms) rollback transaction
5668
+  (0.0ms) begin transaction
5669
+  (0.1ms) rollback transaction
5670
+  (0.0ms) begin transaction
5671
+  (0.0ms) rollback transaction
5672
+  (0.0ms) begin transaction
5673
+  (0.1ms) rollback transaction
5674
+  (0.0ms) begin transaction
5675
+  (0.0ms) rollback transaction
5676
+  (0.0ms) begin transaction
5677
+  (0.0ms) rollback transaction
5678
+  (0.0ms) begin transaction
5679
+  (0.0ms) rollback transaction
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: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Donahue
@@ -10,26 +10,26 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-11-25 00:00:00.000000000 Z
13
+ date: 2015-08-21 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: '3.2'
22
- - - <
22
+ - - "<"
23
23
  - !ruby/object:Gem::Version
24
24
  version: '4.2'
25
25
  type: :runtime
26
26
  prerelease: false
27
27
  version_requirements: !ruby/object:Gem::Requirement
28
28
  requirements:
29
- - - ! '>='
29
+ - - ">="
30
30
  - !ruby/object:Gem::Version
31
31
  version: '3.2'
32
- - - <
32
+ - - "<"
33
33
  - !ruby/object:Gem::Version
34
34
  version: '4.2'
35
35
  - !ruby/object:Gem::Dependency
@@ -50,154 +50,140 @@ dependencies:
50
50
  name: sqlite3
51
51
  requirement: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ! '>='
53
+ - - ">="
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
56
  type: :development
57
57
  prerelease: false
58
58
  version_requirements: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - ! '>='
60
+ - - ">="
61
61
  - !ruby/object:Gem::Version
62
62
  version: '0'
63
63
  - !ruby/object:Gem::Dependency
64
64
  name: nokogiri
65
65
  requirement: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - ! '>='
67
+ - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  version: '0'
70
70
  type: :development
71
71
  prerelease: false
72
72
  version_requirements: !ruby/object:Gem::Requirement
73
73
  requirements:
74
- - - ! '>='
74
+ - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  - !ruby/object:Gem::Dependency
78
78
  name: rspec
79
79
  requirement: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - ! '>='
81
+ - - ">="
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  type: :development
85
85
  prerelease: false
86
86
  version_requirements: !ruby/object:Gem::Requirement
87
87
  requirements:
88
- - - ! '>='
88
+ - - ">="
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  - !ruby/object:Gem::Dependency
92
92
  name: rspec-its
93
93
  requirement: !ruby/object:Gem::Requirement
94
94
  requirements:
95
- - - ! '>='
95
+ - - ">="
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
98
  type: :development
99
99
  prerelease: false
100
100
  version_requirements: !ruby/object:Gem::Requirement
101
101
  requirements:
102
- - - ! '>='
102
+ - - ">="
103
103
  - !ruby/object:Gem::Version
104
104
  version: '0'
105
105
  - !ruby/object:Gem::Dependency
106
106
  name: rspec-rails
107
107
  requirement: !ruby/object:Gem::Requirement
108
108
  requirements:
109
- - - ! '>='
109
+ - - ">="
110
110
  - !ruby/object:Gem::Version
111
111
  version: '0'
112
112
  type: :development
113
113
  prerelease: false
114
114
  version_requirements: !ruby/object:Gem::Requirement
115
115
  requirements:
116
- - - ! '>='
116
+ - - ">="
117
117
  - !ruby/object:Gem::Version
118
118
  version: '0'
119
119
  - !ruby/object:Gem::Dependency
120
120
  name: rspec-rails-mocha
121
121
  requirement: !ruby/object:Gem::Requirement
122
122
  requirements:
123
- - - ! '>='
123
+ - - ">="
124
124
  - !ruby/object:Gem::Version
125
125
  version: '0'
126
126
  type: :development
127
127
  prerelease: false
128
128
  version_requirements: !ruby/object:Gem::Requirement
129
129
  requirements:
130
- - - ! '>='
130
+ - - ">="
131
131
  - !ruby/object:Gem::Version
132
132
  version: '0'
133
133
  - !ruby/object:Gem::Dependency
134
134
  name: shoulda-matchers
135
135
  requirement: !ruby/object:Gem::Requirement
136
136
  requirements:
137
- - - ! '>='
137
+ - - ">="
138
138
  - !ruby/object:Gem::Version
139
139
  version: '0'
140
140
  type: :development
141
141
  prerelease: false
142
142
  version_requirements: !ruby/object:Gem::Requirement
143
143
  requirements:
144
- - - ! '>='
144
+ - - ">="
145
145
  - !ruby/object:Gem::Version
146
146
  version: '0'
147
147
  - !ruby/object:Gem::Dependency
148
148
  name: webmock
149
149
  requirement: !ruby/object:Gem::Requirement
150
150
  requirements:
151
- - - ! '>='
151
+ - - ">="
152
152
  - !ruby/object:Gem::Version
153
153
  version: '0'
154
154
  type: :development
155
155
  prerelease: false
156
156
  version_requirements: !ruby/object:Gem::Requirement
157
157
  requirements:
158
- - - ! '>='
159
- - !ruby/object:Gem::Version
160
- version: '0'
161
- - !ruby/object:Gem::Dependency
162
- name: debugger
163
- requirement: !ruby/object:Gem::Requirement
164
- requirements:
165
- - - ! '>='
166
- - !ruby/object:Gem::Version
167
- version: '0'
168
- type: :development
169
- prerelease: false
170
- version_requirements: !ruby/object:Gem::Requirement
171
- requirements:
172
- - - ! '>='
158
+ - - ">="
173
159
  - !ruby/object:Gem::Version
174
160
  version: '0'
175
161
  - !ruby/object:Gem::Dependency
176
162
  name: guard-rspec
177
163
  requirement: !ruby/object:Gem::Requirement
178
164
  requirements:
179
- - - ! '>='
165
+ - - ">="
180
166
  - !ruby/object:Gem::Version
181
167
  version: '0'
182
168
  type: :development
183
169
  prerelease: false
184
170
  version_requirements: !ruby/object:Gem::Requirement
185
171
  requirements:
186
- - - ! '>='
172
+ - - ">="
187
173
  - !ruby/object:Gem::Version
188
174
  version: '0'
189
175
  - !ruby/object:Gem::Dependency
190
176
  name: rb-fsevent
191
177
  requirement: !ruby/object:Gem::Requirement
192
178
  requirements:
193
- - - ! '>='
179
+ - - ">="
194
180
  - !ruby/object:Gem::Version
195
181
  version: '0'
196
182
  type: :development
197
183
  prerelease: false
198
184
  version_requirements: !ruby/object:Gem::Requirement
199
185
  requirements:
200
- - - ! '>='
186
+ - - ">="
201
187
  - !ruby/object:Gem::Version
202
188
  version: '0'
203
189
  description:
@@ -211,7 +197,7 @@ files:
211
197
  - MIT-LICENSE
212
198
  - README.md
213
199
  - Rakefile
214
- - app/controllers/lti_provider/application_controller.rb
200
+ - app/controllers/lti_provider/lti_application_controller.rb
215
201
  - app/controllers/lti_provider/lti_controller.rb
216
202
  - app/models/lti_provider/launch.rb
217
203
  - app/views/layouts/lti_provider/application.html.erb
@@ -274,17 +260,17 @@ require_paths:
274
260
  - lib
275
261
  required_ruby_version: !ruby/object:Gem::Requirement
276
262
  requirements:
277
- - - ! '>='
263
+ - - ">="
278
264
  - !ruby/object:Gem::Version
279
265
  version: '0'
280
266
  required_rubygems_version: !ruby/object:Gem::Requirement
281
267
  requirements:
282
- - - ! '>='
268
+ - - ">="
283
269
  - !ruby/object:Gem::Version
284
270
  version: '0'
285
271
  requirements: []
286
272
  rubyforge_project:
287
- rubygems_version: 2.4.1
273
+ rubygems_version: 2.4.8
288
274
  signing_key:
289
275
  specification_version: 4
290
276
  summary: LtiProvider is a mountable engine for handling the LTI launch and exposing
@@ -325,3 +311,4 @@ test_files:
325
311
  - spec/dummy/script/rails
326
312
  - spec/models/lti_provider/launch_spec.rb
327
313
  - spec/spec_helper.rb
314
+ has_rdoc: