errbit_cloudfuji 0.1.3 → 0.1.4
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/config/routes.rb +13 -0
- data/lib/errbit_cloudfuji/version.rb +1 -1
- metadata +4 -3
data/config/routes.rb
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Rails.application.routes.draw do
|
|
2
|
+
begin
|
|
3
|
+
cloudfuji_routes
|
|
4
|
+
|
|
5
|
+
if Cloudfuji::Platform.on_cloudfuji?
|
|
6
|
+
# Setup cloudfuji authentication routes
|
|
7
|
+
devise_cloudfuji_authenticatable
|
|
8
|
+
end
|
|
9
|
+
rescue => e
|
|
10
|
+
puts "Error loading the Cloudfuji routes:"
|
|
11
|
+
puts "#{e.inspect}"
|
|
12
|
+
end
|
|
13
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: errbit_cloudfuji
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -80,6 +80,7 @@ files:
|
|
|
80
80
|
- config/initializers/cloudfuji.rb
|
|
81
81
|
- config/initializers/cloudfuji_config.rb
|
|
82
82
|
- config/mongoid.cloudfuji.yml
|
|
83
|
+
- config/routes.rb
|
|
83
84
|
- errbit_cloudfuji.gemspec
|
|
84
85
|
- lib/errbit/cloudfuji.rb
|
|
85
86
|
- lib/errbit/cloudfuji/event_observers/app_observer.rb
|
|
@@ -102,7 +103,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
102
103
|
version: '0'
|
|
103
104
|
segments:
|
|
104
105
|
- 0
|
|
105
|
-
hash: -
|
|
106
|
+
hash: -1387439371449530758
|
|
106
107
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
108
|
none: false
|
|
108
109
|
requirements:
|
|
@@ -111,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
112
|
version: '0'
|
|
112
113
|
segments:
|
|
113
114
|
- 0
|
|
114
|
-
hash: -
|
|
115
|
+
hash: -1387439371449530758
|
|
115
116
|
requirements: []
|
|
116
117
|
rubyforge_project:
|
|
117
118
|
rubygems_version: 1.8.24
|