pboling-subdomain-fu 0.5.2 → 0.5.3
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.
- data/VERSION.yml +1 -1
- data/init.rb +6 -1
- metadata +1 -2
- data/rails/init.rb +0 -6
data/VERSION.yml
CHANGED
data/init.rb
CHANGED
@@ -1 +1,6 @@
|
|
1
|
-
|
1
|
+
#Allow whatever Ruby Package tool is being used ot manage load paths. gem auto adds the gem's lib dir to load path.
|
2
|
+
require 'subdomain-fu' unless defined?(SubdomainFu)
|
3
|
+
|
4
|
+
ActionController::Base.send :include, SubdomainFu::Controller
|
5
|
+
|
6
|
+
RAILS_DEFAULT_LOGGER.info("** SubdomainFu: initialized properly")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pboling-subdomain-fu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Bleigh
|
@@ -31,7 +31,6 @@ files:
|
|
31
31
|
- lib/subdomain_fu/routing_extensions.rb
|
32
32
|
- lib/subdomain_fu/url_rewriter.rb
|
33
33
|
- init.rb
|
34
|
-
- rails/init.rb
|
35
34
|
- spec/spec.opts
|
36
35
|
- spec/spec_helper.rb
|
37
36
|
- spec/subdomain_fu_spec.rb
|
data/rails/init.rb
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
#Allow whatever Ruby Package tool is being used ot manage load paths. gem auto adds the gem's lib dir to load path.
|
2
|
-
require 'subdomain-fu' unless defined?(SubdomainFu)
|
3
|
-
|
4
|
-
ActionController::Base.send :include, SubdomainFu::Controller
|
5
|
-
|
6
|
-
RAILS_DEFAULT_LOGGER.info("** SubdomainFu: initialized properly")
|