sinatra_more 0.3.41 → 0.3.42
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +25 -0
- data/Gemfile +0 -5
- data/README.rdoc +52 -51
- data/Rakefile +4 -28
- data/lib/sinatra_more/markup_plugin/form_helpers.rb +4 -2
- data/lib/sinatra_more/version.rb +3 -0
- data/sinatra_more.gemspec +28 -276
- data/test/helper.rb +1 -1
- data/test/markup_plugin/test_form_helpers.rb +10 -0
- data/test/test_warden_plugin.rb +11 -11
- metadata +121 -351
- data/Gemfile.lock +0 -51
- data/VERSION +0 -1
- data/test/active_support_helpers.rb +0 -8
data/Gemfile.lock
DELETED
@@ -1,51 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
sinatra_more (0.3.40)
|
5
|
-
activesupport (< 3.0.0)
|
6
|
-
bundler (>= 0.9.2)
|
7
|
-
jeweler
|
8
|
-
sinatra (>= 0.9.2)
|
9
|
-
sinatra_more
|
10
|
-
thor (>= 0.11.8)
|
11
|
-
tilt (>= 0.2)
|
12
|
-
|
13
|
-
GEM
|
14
|
-
remote: http://rubygems.org/
|
15
|
-
specs:
|
16
|
-
activesupport (2.3.10)
|
17
|
-
git (1.2.5)
|
18
|
-
haml (3.0.25)
|
19
|
-
jeweler (1.5.2)
|
20
|
-
bundler (~> 1.0.0)
|
21
|
-
git (>= 1.2.5)
|
22
|
-
rake
|
23
|
-
mocha (0.9.10)
|
24
|
-
rake
|
25
|
-
nokogiri (1.4.4)
|
26
|
-
rack (1.2.1)
|
27
|
-
rack-test (0.5.7)
|
28
|
-
rack (>= 1.0)
|
29
|
-
rake (0.8.7)
|
30
|
-
shoulda (2.11.3)
|
31
|
-
sinatra (1.1.2)
|
32
|
-
rack (~> 1.1)
|
33
|
-
tilt (~> 1.2)
|
34
|
-
thor (0.14.6)
|
35
|
-
tilt (1.2.2)
|
36
|
-
webrat (0.7.3)
|
37
|
-
nokogiri (>= 1.2.0)
|
38
|
-
rack (>= 1.0)
|
39
|
-
rack-test (>= 0.5.3)
|
40
|
-
|
41
|
-
PLATFORMS
|
42
|
-
ruby
|
43
|
-
|
44
|
-
DEPENDENCIES
|
45
|
-
haml (>= 2.2.14)
|
46
|
-
jeweler
|
47
|
-
mocha (>= 0.9.7)
|
48
|
-
rack-test (>= 0.5.0)
|
49
|
-
shoulda (>= 2.10.2)
|
50
|
-
sinatra_more!
|
51
|
-
webrat (>= 0.5.1)
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.3.41
|
@@ -1,8 +0,0 @@
|
|
1
|
-
unless Fixnum.method_defined?(:days)
|
2
|
-
require 'active_support/basic_object'
|
3
|
-
require 'active_support/core_ext/object/misc'
|
4
|
-
require 'active_support/core_ext/date'
|
5
|
-
require 'active_support/core_ext/time'
|
6
|
-
require 'active_support/core_ext/numeric'
|
7
|
-
require 'active_support/duration'
|
8
|
-
end
|