sinatra_more 0.3.39 → 0.3.40

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/README.rdoc CHANGED
@@ -1,5 +1,22 @@
1
1
  = sinatra_more
2
2
 
3
+ == Notice
4
+
5
+ Worth noting here that sinatra_more is still undergoing bug fixes and occasional development.
6
+ However, I want to point out that this project is essentially made obsolete by another project that
7
+ I am working on (with DAddYE and others) called the {Padrino Framework}[http://github.com/padrino/padrino-framework].
8
+
9
+ {Padrino}[http://wiki.github.com/padrino/padrino-framework/] is definately the place to look in the future
10
+ for a modular extension to Sinatra. Note that {Padrino}[http://github.com/padrino/padrino-framework] contains
11
+ everything from sinatra_more but is far more powerful and larger in scope.
12
+
13
+ Padrino is still early in development but is worth taking a look at. The idea for Padrino is to start with Sinatra
14
+ and follow that philosophy but to super-charge the functionality adding support for
15
+ development code reloading, advanced route definitions, I18n localization support, baked-in orm support, baked-in code generators, multi-app support, admin dashboard, authentication logic, view helpers, and more.
16
+
17
+ Feel free to use sinatra_more for now but if you enjoy this and get curious, please contribute to Padrino or at least
18
+ let us know what you think!
19
+
3
20
  == Preface
4
21
 
5
22
  This gem has been designed to work with Sinatra (http://www.sinatrarb.com).
@@ -64,7 +81,7 @@ If you want to use the WardenPlugin component, then the 'warden' gem would need
64
81
 
65
82
  To install sinatra_more, simply grab the latest version from gemcutter:
66
83
 
67
- $ sudo gem install sinatra_more --source http://gemcutter.org
84
+ $ sudo gem install sinatra_more
68
85
 
69
86
  Now you are ready to use this gem in your sinatra project.
70
87
 
@@ -732,6 +749,7 @@ See the wiki article for additional information: <http://wiki.github.com/nesquen
732
749
  * Arthur Chiu - Forming the idea and various code contributions
733
750
  * Rob Holland - Added couchrest ORM component to generator
734
751
  * Bill Turner - Added several form builder and helper fixes
752
+ * Adrian (orangea) - Fixes to content_for and tests
735
753
 
736
754
  == Known Issues
737
755
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.39
1
+ 0.3.40
@@ -1,5 +1,5 @@
1
1
  RACK_ENV = 'test' unless defined?(RACK_ENV)
2
2
  require File.dirname(__FILE__) + "/../config/boot"
3
- Bundler.require_env(:testing)
3
+ Bundler.require(:default, :testing)
4
4
 
5
5
  # Test configuration
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.39"
8
+ s.version = "0.3.40"
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-16}
12
+ s.date = %q{2010-02-24}
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}
@@ -157,7 +157,7 @@ Gem::Specification.new do |s|
157
157
  s.homepage = %q{http://github.com/nesquena/sinatra_more}
158
158
  s.rdoc_options = ["--charset=UTF-8"]
159
159
  s.require_paths = ["lib"]
160
- s.rubygems_version = %q{1.3.5}
160
+ s.rubygems_version = %q{1.3.6}
161
161
  s.summary = %q{Expands sinatra to allow for complex applications}
162
162
  s.test_files = [
163
163
  "test/active_support_helpers.rb",
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinatra_more
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.39
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 3
8
+ - 40
9
+ version: 0.3.40
5
10
  platform: ruby
6
11
  authors:
7
12
  - Nathan Esquenazi
@@ -9,109 +14,148 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2010-02-16 00:00:00 -08:00
17
+ date: 2010-02-24 00:00:00 -08:00
13
18
  default_executable: sinatra_gen
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: sinatra
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
20
24
  requirements:
21
25
  - - ">="
22
26
  - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ - 9
30
+ - 2
23
31
  version: 0.9.2
24
- version:
32
+ type: :runtime
33
+ version_requirements: *id001
25
34
  - !ruby/object:Gem::Dependency
26
35
  name: tilt
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
30
38
  requirements:
31
39
  - - ">="
32
40
  - !ruby/object:Gem::Version
41
+ segments:
42
+ - 0
43
+ - 2
33
44
  version: "0.2"
34
- version:
45
+ type: :runtime
46
+ version_requirements: *id002
35
47
  - !ruby/object:Gem::Dependency
36
48
  name: thor
37
- type: :runtime
38
- version_requirement:
39
- version_requirements: !ruby/object:Gem::Requirement
49
+ prerelease: false
50
+ requirement: &id003 !ruby/object:Gem::Requirement
40
51
  requirements:
41
52
  - - ">="
42
53
  - !ruby/object:Gem::Version
54
+ segments:
55
+ - 0
56
+ - 11
57
+ - 8
43
58
  version: 0.11.8
44
- version:
59
+ type: :runtime
60
+ version_requirements: *id003
45
61
  - !ruby/object:Gem::Dependency
46
62
  name: activesupport
47
- type: :runtime
48
- version_requirement:
49
- version_requirements: !ruby/object:Gem::Requirement
63
+ prerelease: false
64
+ requirement: &id004 !ruby/object:Gem::Requirement
50
65
  requirements:
51
66
  - - ">="
52
67
  - !ruby/object:Gem::Version
68
+ segments:
69
+ - 2
70
+ - 2
71
+ - 2
53
72
  version: 2.2.2
54
- version:
73
+ type: :runtime
74
+ version_requirements: *id004
55
75
  - !ruby/object:Gem::Dependency
56
76
  name: bundler
57
- type: :runtime
58
- version_requirement:
59
- version_requirements: !ruby/object:Gem::Requirement
77
+ prerelease: false
78
+ requirement: &id005 !ruby/object:Gem::Requirement
60
79
  requirements:
61
80
  - - ">="
62
81
  - !ruby/object:Gem::Version
82
+ segments:
83
+ - 0
84
+ - 9
85
+ - 2
63
86
  version: 0.9.2
64
- version:
87
+ type: :runtime
88
+ version_requirements: *id005
65
89
  - !ruby/object:Gem::Dependency
66
90
  name: haml
67
- type: :development
68
- version_requirement:
69
- version_requirements: !ruby/object:Gem::Requirement
91
+ prerelease: false
92
+ requirement: &id006 !ruby/object:Gem::Requirement
70
93
  requirements:
71
94
  - - ">="
72
95
  - !ruby/object:Gem::Version
96
+ segments:
97
+ - 2
98
+ - 2
99
+ - 14
73
100
  version: 2.2.14
74
- version:
101
+ type: :development
102
+ version_requirements: *id006
75
103
  - !ruby/object:Gem::Dependency
76
104
  name: shoulda
77
- type: :development
78
- version_requirement:
79
- version_requirements: !ruby/object:Gem::Requirement
105
+ prerelease: false
106
+ requirement: &id007 !ruby/object:Gem::Requirement
80
107
  requirements:
81
108
  - - ">="
82
109
  - !ruby/object:Gem::Version
110
+ segments:
111
+ - 2
112
+ - 10
113
+ - 2
83
114
  version: 2.10.2
84
- version:
115
+ type: :development
116
+ version_requirements: *id007
85
117
  - !ruby/object:Gem::Dependency
86
118
  name: mocha
87
- type: :development
88
- version_requirement:
89
- version_requirements: !ruby/object:Gem::Requirement
119
+ prerelease: false
120
+ requirement: &id008 !ruby/object:Gem::Requirement
90
121
  requirements:
91
122
  - - ">="
92
123
  - !ruby/object:Gem::Version
124
+ segments:
125
+ - 0
126
+ - 9
127
+ - 7
93
128
  version: 0.9.7
94
- version:
129
+ type: :development
130
+ version_requirements: *id008
95
131
  - !ruby/object:Gem::Dependency
96
132
  name: rack-test
97
- type: :development
98
- version_requirement:
99
- version_requirements: !ruby/object:Gem::Requirement
133
+ prerelease: false
134
+ requirement: &id009 !ruby/object:Gem::Requirement
100
135
  requirements:
101
136
  - - ">="
102
137
  - !ruby/object:Gem::Version
138
+ segments:
139
+ - 0
140
+ - 5
141
+ - 0
103
142
  version: 0.5.0
104
- version:
143
+ type: :development
144
+ version_requirements: *id009
105
145
  - !ruby/object:Gem::Dependency
106
146
  name: webrat
107
- type: :development
108
- version_requirement:
109
- version_requirements: !ruby/object:Gem::Requirement
147
+ prerelease: false
148
+ requirement: &id010 !ruby/object:Gem::Requirement
110
149
  requirements:
111
150
  - - ">="
112
151
  - !ruby/object:Gem::Version
152
+ segments:
153
+ - 0
154
+ - 5
155
+ - 1
113
156
  version: 0.5.1
114
- version:
157
+ type: :development
158
+ version_requirements: *id010
115
159
  description: Expands sinatra with standard helpers and tools to allow for complex applications
116
160
  email: nesquena@gmail.com
117
161
  executables:
@@ -269,18 +313,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
269
313
  requirements:
270
314
  - - ">="
271
315
  - !ruby/object:Gem::Version
316
+ segments:
317
+ - 0
272
318
  version: "0"
273
- version:
274
319
  required_rubygems_version: !ruby/object:Gem::Requirement
275
320
  requirements:
276
321
  - - ">="
277
322
  - !ruby/object:Gem::Version
323
+ segments:
324
+ - 0
278
325
  version: "0"
279
- version:
280
326
  requirements: []
281
327
 
282
328
  rubyforge_project:
283
- rubygems_version: 1.3.5
329
+ rubygems_version: 1.3.6
284
330
  signing_key:
285
331
  specification_version: 3
286
332
  summary: Expands sinatra to allow for complex applications