horse_power 0.4.0 → 0.4.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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf9037cfdf693d11a734e454b6d32789bd3a56e4
|
|
4
|
+
data.tar.gz: caed7eba21428affc8207cd2766683e52531f3be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 808b5da592431637363f9938a4e4d25ee5f12cd3ba6d45678229b0712595aa413c8992b462fcb21abc5600e95eed31203879226f1e09b543c3228b01ea36860d
|
|
7
|
+
data.tar.gz: e3b0731f04c862a4ee1b8cb8b57e7ed59be3c198dcf4211d5701f09abf1e15a4bd576427879a831a2571f575039c0fa9c3135f7a4c26e9c6593f857e9f9720e1
|
|
@@ -36,6 +36,8 @@ module HorsePower
|
|
|
36
36
|
def addToApplication
|
|
37
37
|
inject_into_file 'config/application.rb', after: "class Application < Rails::Application\n" do <<-'RUBY'
|
|
38
38
|
|
|
39
|
+
#IdentityCache needs to fix serialized attributes for Rails 4.2
|
|
40
|
+
ActiveSupport::Deprecation.silenced = true
|
|
39
41
|
#So url_for works in the mailer
|
|
40
42
|
config.action_mailer.default_url_options = { host: 'localhost:3000' }
|
|
41
43
|
#config.middleware.insert_before "ActionDispatch::Static", "Rack::Cors" do
|
data/lib/horse_power/version.rb
CHANGED