rails_config 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_config (0.2.2)
4
+ rails_config (0.2.3)
5
5
  activesupport (~> 3.0)
6
6
 
7
7
  GEM
@@ -1,3 +1,5 @@
1
+ require "rails_config/rack/reloader"
2
+
1
3
  module RailsConfig
2
4
  # provide helper to register within your Sinatra app
3
5
  #
@@ -22,7 +24,7 @@ module RailsConfig
22
24
  File.join(root.to_s, "config", "environments", "#{env}.yml").to_s
23
25
  )
24
26
 
25
- inner_app.use(Rack::Reloader) if inner_app.development?
27
+ inner_app.use(::RailsConfig::Rack::Reloader) if inner_app.development?
26
28
  end
27
29
  end
28
30
 
@@ -1,3 +1,3 @@
1
1
  module RailsConfig
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rails_config
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.2.2
5
+ version: 0.2.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jacques Crocker