sinatra_more 0.3.36 → 0.3.37
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/sinatra_more/support_lite.rb +1 -1
- data/sinatra_more.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.37
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# This is for adding specific methods that are required by sinatra_more if activesupport isn't required
|
2
2
|
|
3
3
|
unless String.method_defined?(:titleize) && Hash.method_defined?(:slice)
|
4
|
+
require 'active_support/core_ext/kernel'
|
4
5
|
require 'active_support/core_ext/array'
|
5
6
|
require 'active_support/core_ext/hash'
|
6
7
|
require 'active_support/deprecation'
|
7
8
|
require 'active_support/inflector'
|
8
|
-
require 'active_support/core_ext/kernel'
|
9
9
|
require 'active_support/core_ext/module'
|
10
10
|
require 'active_support/core_ext/class'
|
11
11
|
end
|
data/sinatra_more.gemspec
CHANGED