lti2 0.0.1 → 0.0.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.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/lib/lti2/version.rb +1 -1
  3. data/lti2_tc/Gemfile +14 -0
  4. data/lti2_tc/Gemfile.lock +94 -0
  5. data/lti2_tc/MIT-LICENSE +20 -0
  6. data/lti2_tc/README.rdoc +3 -0
  7. data/lti2_tc/Rakefile +34 -0
  8. data/lti2_tc/app/assets/javascripts/lti2_tc/application.js +13 -0
  9. data/lti2_tc/app/assets/stylesheets/lti2_tc/application.css +13 -0
  10. data/lti2_tc/app/controllers/lti2_tc/application_controller.rb +13 -0
  11. data/lti2_tc/app/controllers/lti2_tc/deployment_requests_controller.rb +9 -0
  12. data/lti2_tc/app/controllers/lti2_tc/tool_consumer_profiles_controller.rb +23 -0
  13. data/lti2_tc/app/controllers/lti2_tc/tool_proxies_controller.rb +8 -0
  14. data/lti2_tc/app/controllers/lti2_tc/tool_settings_controller.rb +215 -0
  15. data/lti2_tc/app/controllers/lti2_tc/tools_controller.rb +361 -0
  16. data/lti2_tc/app/models/lti2_tc/deployment_request.rb +43 -0
  17. data/lti2_tc/app/models/lti2_tc/link.rb +24 -0
  18. data/lti2_tc/app/models/lti2_tc/registry.rb +4 -0
  19. data/lti2_tc/app/models/lti2_tc/resource.rb +6 -0
  20. data/lti2_tc/app/models/lti2_tc/tool.rb +12 -0
  21. data/lti2_tc/app/models/lti2_tc/tool_consumer_profile.rb +4 -0
  22. data/lti2_tc/app/models/lti2_tc/tool_consumer_registry.rb +24 -0
  23. data/lti2_tc/app/models/lti2_tc/tool_registration.rb +83 -0
  24. data/lti2_tc/app/models/lti2_tc/tool_setting.rb +61 -0
  25. data/lti2_tc/app/services/lti2_tc/authorizer.rb +36 -0
  26. data/lti2_tc/app/services/lti2_tc/lti2_launch.rb +259 -0
  27. data/lti2_tc/app/views/layouts/lti2_tc/application.html.erb +14 -0
  28. data/lti2_tc/app/views/lti2_tc/deployment_requests/show.html.erb +2 -0
  29. data/lti2_tc/app/views/lti2_tc/tool_consumer_profiles/index.html.erb +2 -0
  30. data/lti2_tc/app/views/lti2_tc/tool_consumer_profiles/show.html.erb +2 -0
  31. data/lti2_tc/app/views/lti2_tc/tool_proxies_controller/index.html.erb +2 -0
  32. data/lti2_tc/app/views/lti2_tc/tool_settings_controller/show.html.erb +2 -0
  33. data/lti2_tc/app/views/lti2_tc/tool_settings_controller/update.html.erb +2 -0
  34. data/lti2_tc/app/views/lti2_tc/tools_controller/create.html.erb +2 -0
  35. data/lti2_tc/app/views/lti2_tc/tools_controller/show.html.erb +2 -0
  36. data/lti2_tc/bin/rails +8 -0
  37. data/lti2_tc/config/routes.rb +20 -0
  38. data/lti2_tc/db/migrate/20140826141858_create_lti2_tool_consumer_tables.rb +94 -0
  39. data/lti2_tc/db/migrate/20140826150753_create_lti2_tc_resources.rb +37 -0
  40. data/lti2_tc/db/migrate/20141027193548_insert_tool_guid.rb +5 -0
  41. data/lti2_tc/lib/lti2_tc.rb +4 -0
  42. data/lti2_tc/lib/lti2_tc/engine.rb +5 -0
  43. data/lti2_tc/lib/lti2_tc/version.rb +3 -0
  44. data/lti2_tc/lib/tasks/lti2_tc_tasks.rake +4 -0
  45. data/lti2_tc/lti2_tc.gemspec +27 -0
  46. data/lti2_tc/test/controllers/lti2_tc/deployment_requests_controller_test.rb +11 -0
  47. data/lti2_tc/test/controllers/lti2_tc/tool_consumer_profiles_controller_test.rb +16 -0
  48. data/lti2_tc/test/controllers/lti2_tc/tool_proxies_controller_controller_test.rb +11 -0
  49. data/lti2_tc/test/controllers/lti2_tc/tool_settings_controller_controller_test.rb +16 -0
  50. data/lti2_tc/test/controllers/lti2_tc/tools_controller_controller_test.rb +16 -0
  51. data/lti2_tc/test/dummy/README.rdoc +28 -0
  52. data/lti2_tc/test/dummy/Rakefile +6 -0
  53. data/lti2_tc/test/dummy/app/assets/javascripts/application.js +13 -0
  54. data/lti2_tc/test/dummy/app/assets/stylesheets/application.css +13 -0
  55. data/lti2_tc/test/dummy/app/controllers/application_controller.rb +5 -0
  56. data/lti2_tc/test/dummy/app/helpers/application_helper.rb +2 -0
  57. data/lti2_tc/test/dummy/app/views/layouts/application.html.erb +14 -0
  58. data/lti2_tc/test/dummy/bin/bundle +3 -0
  59. data/lti2_tc/test/dummy/bin/rails +4 -0
  60. data/lti2_tc/test/dummy/bin/rake +4 -0
  61. data/lti2_tc/test/dummy/config.ru +4 -0
  62. data/lti2_tc/test/dummy/config/application.rb +23 -0
  63. data/lti2_tc/test/dummy/config/boot.rb +5 -0
  64. data/lti2_tc/test/dummy/config/database.yml +39 -0
  65. data/lti2_tc/test/dummy/config/environment.rb +5 -0
  66. data/lti2_tc/test/dummy/config/environments/development.rb +29 -0
  67. data/lti2_tc/test/dummy/config/environments/production.rb +80 -0
  68. data/lti2_tc/test/dummy/config/environments/test.rb +36 -0
  69. data/lti2_tc/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  70. data/lti2_tc/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  71. data/lti2_tc/test/dummy/config/initializers/inflections.rb +16 -0
  72. data/lti2_tc/test/dummy/config/initializers/mime_types.rb +5 -0
  73. data/lti2_tc/test/dummy/config/initializers/secret_token.rb +12 -0
  74. data/lti2_tc/test/dummy/config/initializers/session_store.rb +3 -0
  75. data/lti2_tc/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  76. data/lti2_tc/test/dummy/config/locales/en.yml +23 -0
  77. data/lti2_tc/test/dummy/config/routes.rb +4 -0
  78. data/lti2_tc/test/dummy/db/database.yml +39 -0
  79. data/lti2_tc/test/dummy/db/migrate/20131121225051_create_lti2_tc_registries.lti2_tc.rb +55 -0
  80. data/lti2_tc/test/dummy/db/schema.rb +68 -0
  81. data/lti2_tc/test/dummy/public/404.html +58 -0
  82. data/lti2_tc/test/dummy/public/422.html +58 -0
  83. data/lti2_tc/test/dummy/public/500.html +57 -0
  84. data/lti2_tc/test/dummy/public/favicon.ico +0 -0
  85. data/lti2_tc/test/fixtures/lti2_tc/registries.yml +7 -0
  86. data/lti2_tc/test/helpers/lti2_tc/deployment_requests_helper_test.rb +6 -0
  87. data/lti2_tc/test/helpers/lti2_tc/tool_consumer_profiles_helper_test.rb +6 -0
  88. data/lti2_tc/test/helpers/lti2_tc/tool_proxies_controller_helper_test.rb +6 -0
  89. data/lti2_tc/test/helpers/lti2_tc/tool_settings_controller_helper_test.rb +6 -0
  90. data/lti2_tc/test/helpers/lti2_tc/tools_controller_helper_test.rb +6 -0
  91. data/lti2_tc/test/integration/navigation_test.rb +10 -0
  92. data/lti2_tc/test/lti2_tc_test.rb +7 -0
  93. data/lti2_tc/test/models/lti2_tc/registries_test.rb +9 -0
  94. data/lti2_tc/test/test_helper.rb +15 -0
  95. metadata +93 -1
@@ -0,0 +1,68 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20131121012233) do
15
+
16
+ create_table "lti2_tc_deployment_requests", force: true do |t|
17
+ t.string "reg_key"
18
+ t.string "reg_password"
19
+ t.string "partner_url"
20
+ t.string "status"
21
+ t.integer "tool_id"
22
+ t.string "tc_profile_guid"
23
+ t.datetime "created_at"
24
+ t.datetime "updated_at"
25
+ end
26
+
27
+ add_index "lti2_tc_deployment_requests", ["tc_profile_guid"], name: "index_deployment_requests_on_tc_profile_guid", unique: true, using: :btree
28
+
29
+ create_table "lti2_tc_registries", force: true do |t|
30
+ t.string "name"
31
+ t.text "content"
32
+ t.datetime "created_at"
33
+ t.datetime "updated_at"
34
+ end
35
+
36
+ create_table "lti2_tc_tool_consumer_profiles", force: true do |t|
37
+ t.string "tc_profile_guid"
38
+ t.text "tc_profile"
39
+ t.datetime "created_at"
40
+ t.datetime "updated_at"
41
+ end
42
+
43
+ add_index "lti2_tc_tool_consumer_profiles", ["tc_profile_guid"], name: "index_tool_consumer_profiles_on_tc_profile_guid", unique: true, using: :btree
44
+
45
+ create_table "lti2_tc_tool_settings", force: true do |t|
46
+ t.integer "tool_id"
47
+ t.integer "scopeable_id"
48
+ t.string "scopeable_type"
49
+ t.string "name"
50
+ t.string "value"
51
+ t.datetime "created_at"
52
+ t.datetime "updated_at"
53
+ end
54
+
55
+ create_table "lti2_tc_tools", force: true do |t|
56
+ t.text "tool_proxy"
57
+ t.boolean "is_enabled"
58
+ t.string "product_name"
59
+ t.string "description"
60
+ t.string "key"
61
+ t.string "secret"
62
+ t.datetime "created_at"
63
+ t.datetime "updated_at"
64
+ end
65
+
66
+ add_index "lti2_tc_tools", ["key"], name: "index_tools_on_key", unique: true, using: :btree
67
+
68
+ end
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>
File without changes
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
+
3
+ one:
4
+ name: MyString
5
+
6
+ two:
7
+ name: MyString
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Lti2Tc
4
+ class DeploymentRequestsHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Lti2Tc
4
+ class ToolConsumerProfilesHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Lti2Tc
4
+ class ToolProxiesControllerHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Lti2Tc
4
+ class ToolSettingsControllerHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Lti2Tc
4
+ class ToolsControllerHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class Lti2TcTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, Lti2Tc
6
+ end
7
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Lti2Tc
4
+ class RegistriesTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lti2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Tibbetts, James Rissler
@@ -172,6 +172,98 @@ files:
172
172
  - lib/lti2_commons/test/test_substitution_support.rb
173
173
  - lib/lti2_commons/test/test_wire_log.rb
174
174
  - lib/tasks/lti2_tasks.rake
175
+ - lti2_tc/Gemfile
176
+ - lti2_tc/Gemfile.lock
177
+ - lti2_tc/MIT-LICENSE
178
+ - lti2_tc/README.rdoc
179
+ - lti2_tc/Rakefile
180
+ - lti2_tc/app/assets/javascripts/lti2_tc/application.js
181
+ - lti2_tc/app/assets/stylesheets/lti2_tc/application.css
182
+ - lti2_tc/app/controllers/lti2_tc/application_controller.rb
183
+ - lti2_tc/app/controllers/lti2_tc/deployment_requests_controller.rb
184
+ - lti2_tc/app/controllers/lti2_tc/tool_consumer_profiles_controller.rb
185
+ - lti2_tc/app/controllers/lti2_tc/tool_proxies_controller.rb
186
+ - lti2_tc/app/controllers/lti2_tc/tool_settings_controller.rb
187
+ - lti2_tc/app/controllers/lti2_tc/tools_controller.rb
188
+ - lti2_tc/app/models/lti2_tc/deployment_request.rb
189
+ - lti2_tc/app/models/lti2_tc/link.rb
190
+ - lti2_tc/app/models/lti2_tc/registry.rb
191
+ - lti2_tc/app/models/lti2_tc/resource.rb
192
+ - lti2_tc/app/models/lti2_tc/tool.rb
193
+ - lti2_tc/app/models/lti2_tc/tool_consumer_profile.rb
194
+ - lti2_tc/app/models/lti2_tc/tool_consumer_registry.rb
195
+ - lti2_tc/app/models/lti2_tc/tool_registration.rb
196
+ - lti2_tc/app/models/lti2_tc/tool_setting.rb
197
+ - lti2_tc/app/services/lti2_tc/authorizer.rb
198
+ - lti2_tc/app/services/lti2_tc/lti2_launch.rb
199
+ - lti2_tc/app/views/layouts/lti2_tc/application.html.erb
200
+ - lti2_tc/app/views/lti2_tc/deployment_requests/show.html.erb
201
+ - lti2_tc/app/views/lti2_tc/tool_consumer_profiles/index.html.erb
202
+ - lti2_tc/app/views/lti2_tc/tool_consumer_profiles/show.html.erb
203
+ - lti2_tc/app/views/lti2_tc/tool_proxies_controller/index.html.erb
204
+ - lti2_tc/app/views/lti2_tc/tool_settings_controller/show.html.erb
205
+ - lti2_tc/app/views/lti2_tc/tool_settings_controller/update.html.erb
206
+ - lti2_tc/app/views/lti2_tc/tools_controller/create.html.erb
207
+ - lti2_tc/app/views/lti2_tc/tools_controller/show.html.erb
208
+ - lti2_tc/bin/rails
209
+ - lti2_tc/config/routes.rb
210
+ - lti2_tc/db/migrate/20140826141858_create_lti2_tool_consumer_tables.rb
211
+ - lti2_tc/db/migrate/20140826150753_create_lti2_tc_resources.rb
212
+ - lti2_tc/db/migrate/20141027193548_insert_tool_guid.rb
213
+ - lti2_tc/lib/lti2_tc.rb
214
+ - lti2_tc/lib/lti2_tc/engine.rb
215
+ - lti2_tc/lib/lti2_tc/version.rb
216
+ - lti2_tc/lib/tasks/lti2_tc_tasks.rake
217
+ - lti2_tc/lti2_tc.gemspec
218
+ - lti2_tc/test/controllers/lti2_tc/deployment_requests_controller_test.rb
219
+ - lti2_tc/test/controllers/lti2_tc/tool_consumer_profiles_controller_test.rb
220
+ - lti2_tc/test/controllers/lti2_tc/tool_proxies_controller_controller_test.rb
221
+ - lti2_tc/test/controllers/lti2_tc/tool_settings_controller_controller_test.rb
222
+ - lti2_tc/test/controllers/lti2_tc/tools_controller_controller_test.rb
223
+ - lti2_tc/test/dummy/README.rdoc
224
+ - lti2_tc/test/dummy/Rakefile
225
+ - lti2_tc/test/dummy/app/assets/javascripts/application.js
226
+ - lti2_tc/test/dummy/app/assets/stylesheets/application.css
227
+ - lti2_tc/test/dummy/app/controllers/application_controller.rb
228
+ - lti2_tc/test/dummy/app/helpers/application_helper.rb
229
+ - lti2_tc/test/dummy/app/views/layouts/application.html.erb
230
+ - lti2_tc/test/dummy/bin/bundle
231
+ - lti2_tc/test/dummy/bin/rails
232
+ - lti2_tc/test/dummy/bin/rake
233
+ - lti2_tc/test/dummy/config.ru
234
+ - lti2_tc/test/dummy/config/application.rb
235
+ - lti2_tc/test/dummy/config/boot.rb
236
+ - lti2_tc/test/dummy/config/database.yml
237
+ - lti2_tc/test/dummy/config/environment.rb
238
+ - lti2_tc/test/dummy/config/environments/development.rb
239
+ - lti2_tc/test/dummy/config/environments/production.rb
240
+ - lti2_tc/test/dummy/config/environments/test.rb
241
+ - lti2_tc/test/dummy/config/initializers/backtrace_silencers.rb
242
+ - lti2_tc/test/dummy/config/initializers/filter_parameter_logging.rb
243
+ - lti2_tc/test/dummy/config/initializers/inflections.rb
244
+ - lti2_tc/test/dummy/config/initializers/mime_types.rb
245
+ - lti2_tc/test/dummy/config/initializers/secret_token.rb
246
+ - lti2_tc/test/dummy/config/initializers/session_store.rb
247
+ - lti2_tc/test/dummy/config/initializers/wrap_parameters.rb
248
+ - lti2_tc/test/dummy/config/locales/en.yml
249
+ - lti2_tc/test/dummy/config/routes.rb
250
+ - lti2_tc/test/dummy/db/database.yml
251
+ - lti2_tc/test/dummy/db/migrate/20131121225051_create_lti2_tc_registries.lti2_tc.rb
252
+ - lti2_tc/test/dummy/db/schema.rb
253
+ - lti2_tc/test/dummy/public/404.html
254
+ - lti2_tc/test/dummy/public/422.html
255
+ - lti2_tc/test/dummy/public/500.html
256
+ - lti2_tc/test/dummy/public/favicon.ico
257
+ - lti2_tc/test/fixtures/lti2_tc/registries.yml
258
+ - lti2_tc/test/helpers/lti2_tc/deployment_requests_helper_test.rb
259
+ - lti2_tc/test/helpers/lti2_tc/tool_consumer_profiles_helper_test.rb
260
+ - lti2_tc/test/helpers/lti2_tc/tool_proxies_controller_helper_test.rb
261
+ - lti2_tc/test/helpers/lti2_tc/tool_settings_controller_helper_test.rb
262
+ - lti2_tc/test/helpers/lti2_tc/tools_controller_helper_test.rb
263
+ - lti2_tc/test/integration/navigation_test.rb
264
+ - lti2_tc/test/lti2_tc_test.rb
265
+ - lti2_tc/test/models/lti2_tc/registries_test.rb
266
+ - lti2_tc/test/test_helper.rb
175
267
  homepage:
176
268
  licenses:
177
269
  - MIT