sinatra-rabbit 1.1.5 → 1.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/sinatra/rabbit/base_collection.rb +3 -3
- data/sinatra-rabbit.gemspec +1 -1
- metadata +2 -2
@@ -50,9 +50,9 @@ module Sinatra
|
|
50
50
|
|
51
51
|
def self.collection_class(name, parent_class=nil)
|
52
52
|
if base_module = Rabbit::configuration[:base_module]
|
53
|
-
|
54
|
-
base_module = base_module
|
55
|
-
|
53
|
+
begin
|
54
|
+
base_module = base_module.const_get 'Rabbit'
|
55
|
+
rescue NameError
|
56
56
|
base_module = base_module.const_set('Rabbit', Module.new)
|
57
57
|
end
|
58
58
|
else
|
data/sinatra-rabbit.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sinatra-rabbit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-03-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sinatra
|