sinatra_more 0.3.35 → 0.3.36
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 +1 -1
- data/lib/sinatra_more/support_lite.rb +4 -4
- data/sinatra_more.gemspec +2 -2
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.36
|
|
@@ -1,13 +1,13 @@
|
|
|
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/array'
|
|
5
|
+
require 'active_support/core_ext/hash'
|
|
6
|
+
require 'active_support/deprecation'
|
|
7
|
+
require 'active_support/inflector'
|
|
4
8
|
require 'active_support/core_ext/kernel'
|
|
5
9
|
require 'active_support/core_ext/module'
|
|
6
10
|
require 'active_support/core_ext/class'
|
|
7
|
-
require 'active_support/deprecation'
|
|
8
|
-
require 'active_support/inflector'
|
|
9
|
-
require 'active_support/core_ext/hash'
|
|
10
|
-
require 'active_support/core_ext/array'
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
unless String.method_defined?(:blank?)
|
data/sinatra_more.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{sinatra_more}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.36"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Nathan Esquenazi"]
|
|
12
|
-
s.date = %q{2010-02-
|
|
12
|
+
s.date = %q{2010-02-10}
|
|
13
13
|
s.default_executable = %q{sinatra_gen}
|
|
14
14
|
s.description = %q{Expands sinatra with standard helpers and tools to allow for complex applications}
|
|
15
15
|
s.email = %q{nesquena@gmail.com}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sinatra_more
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.36
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nathan Esquenazi
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-02-
|
|
12
|
+
date: 2010-02-10 00:00:00 -08:00
|
|
13
13
|
default_executable: sinatra_gen
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|