lti_public_resources 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ba026e3f8726be3d209b73c838051ca3f2116ec0
4
- data.tar.gz: a3d4cac31d06ca3930a3f01b888c8a0eda2d7bdf
3
+ metadata.gz: 34018fcdd4c5463805a6b5be23109eb92be045b4
4
+ data.tar.gz: b3e86fa3bdc802dbd6eb071c60d95b0de5679149
5
5
  SHA512:
6
- metadata.gz: abb3b54573292ff0284e55c6ecd0d266616f8062eff5a9705da09e2c04472b649aafe136756da398b8982e0536e70b2df0f136be2d4f8eb3b6b88eb5716475c0
7
- data.tar.gz: a7d1b3fe4db5adeb62a38291e7b7de7cab998bb2df63f924e5accbc4ad0c73efe8e8f3e7b9709fc521660ac0c0f549b7442c5c328b7561e82da9b2c4ec59d45c
6
+ metadata.gz: f6a71d0df4defbbabbdab7669c1a2db997b56fb0238a4ec90e1164f6fba39306ab2f9b3bb7be3cd26661410f968d7533318daf87cbe8c3de7c2996e8f37a7faf
7
+ data.tar.gz: 1f9cbbd31089d5dadfc831a3c71bd0272468b567ebb38082016036f13d8928560d34f60e8233cf3d9c34d6269414251bc433b883973e041673bd06948413f6b6
@@ -3,7 +3,8 @@ module LtiPublicResources
3
3
  isolate_namespace LtiPublicResources
4
4
 
5
5
  initializer "static assets" do |app|
6
- app.middleware.use ::ActionDispatch::Static, "#{root}/public"
6
+ # Order of middleware is important: http://stackoverflow.com/questions/4266232/rails-3-engine-static-assets
7
+ app.middleware.insert_before ::ActionDispatch::Static, ::ActionDispatch::Static, "#{root}/public"
7
8
  end
8
9
 
9
10
  initializer "lti_public_resources.load_app_instance_data" do |app|
@@ -1,3 +1,3 @@
1
1
  module LtiPublicResources
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lti_public_resources
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
  - Eric Berry
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-18 00:00:00.000000000 Z
12
+ date: 2013-12-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -88,7 +88,6 @@ files:
88
88
  - lib/tasks/lti_public_resources_tasks.rake
89
89
  - MIT-LICENSE
90
90
  - Rakefile
91
- - README.rdoc
92
91
  - test/controllers/lti_public_resources/api_controller_test.rb
93
92
  - test/controllers/lti_public_resources/ember_controller_test.rb
94
93
  - test/dummy/app/assets/javascripts/application.js
data/README.rdoc DELETED
@@ -1,3 +0,0 @@
1
- = LtiPublicResources
2
-
3
- This project rocks and uses MIT-LICENSE.