padrino-helpers 0.9.25 → 0.9.26

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/padrino-helpers.gemspec +8 -3
  2. metadata +65 -15
@@ -1,3 +1,4 @@
1
+ # -*- encoding: utf-8 -*-
1
2
  require File.expand_path("../../padrino-core/lib/padrino-core/version.rb", __FILE__)
2
3
 
3
4
  Gem::Specification.new do |s|
@@ -11,10 +12,14 @@ Gem::Specification.new do |s|
11
12
  s.required_rubygems_version = ">= 1.3.6"
12
13
  s.version = Padrino.version
13
14
  s.date = Time.now.strftime("%Y-%m-%d")
15
+
14
16
  s.extra_rdoc_files = Dir["*.rdoc"]
15
- s.files = %w(.document .gitignore LICENSE README.rdoc Rakefile padrino-helpers.gemspec) + Dir.glob("{bin,lib,test}/**/*")
16
- s.rdoc_options = ["--charset=UTF-8"]
17
- s.require_path = "lib"
17
+ s.files = `git ls-files`.split("\n")
18
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
20
+ s.require_paths = ["lib"]
21
+ s.rdoc_options = ["--charset=UTF-8"]
22
+
18
23
  s.add_dependency("padrino-core", Padrino.version)
19
24
  s.add_dependency("i18n", ">=0.4.1")
20
25
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: padrino-helpers
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 25
10
- version: 0.9.25
9
+ - 26
10
+ version: 0.9.26
11
11
  platform: ruby
12
12
  authors:
13
13
  - Padrino Team
@@ -18,8 +18,7 @@ autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
20
 
21
- date: 2011-04-27 00:00:00 +02:00
22
- default_executable:
21
+ date: 2011-04-28 00:00:00 Z
23
22
  dependencies:
24
23
  - !ruby/object:Gem::Dependency
25
24
  name: padrino-core
@@ -29,12 +28,12 @@ dependencies:
29
28
  requirements:
30
29
  - - "="
31
30
  - !ruby/object:Gem::Version
32
- hash: 9
31
+ hash: 15
33
32
  segments:
34
33
  - 0
35
34
  - 9
36
- - 25
37
- version: 0.9.25
35
+ - 26
36
+ version: 0.9.26
38
37
  type: :runtime
39
38
  version_requirements: *id001
40
39
  - !ruby/object:Gem::Dependency
@@ -67,7 +66,7 @@ files:
67
66
  - LICENSE
68
67
  - README.rdoc
69
68
  - Rakefile
70
- - padrino-helpers.gemspec
69
+ - lib/padrino-helpers.rb
71
70
  - lib/padrino-helpers/asset_tag_helpers.rb
72
71
  - lib/padrino-helpers/form_builder/abstract_form_builder.rb
73
72
  - lib/padrino-helpers/form_builder/standard_form_builder.rb
@@ -91,15 +90,15 @@ files:
91
90
  - lib/padrino-helpers/locale/zh_cn.yml
92
91
  - lib/padrino-helpers/locale/zh_tw.yml
93
92
  - lib/padrino-helpers/number_helpers.rb
93
+ - lib/padrino-helpers/output_helpers.rb
94
94
  - lib/padrino-helpers/output_helpers/abstract_handler.rb
95
95
  - lib/padrino-helpers/output_helpers/erb_handler.rb
96
96
  - lib/padrino-helpers/output_helpers/haml_handler.rb
97
97
  - lib/padrino-helpers/output_helpers/slim_handler.rb
98
- - lib/padrino-helpers/output_helpers.rb
99
98
  - lib/padrino-helpers/render_helpers.rb
100
99
  - lib/padrino-helpers/tag_helpers.rb
101
100
  - lib/padrino-helpers/translation_helpers.rb
102
- - lib/padrino-helpers.rb
101
+ - padrino-helpers.gemspec
103
102
  - test/fixtures/markup_app/app.rb
104
103
  - test/fixtures/markup_app/views/capture_concat.erb
105
104
  - test/fixtures/markup_app/views/capture_concat.haml
@@ -153,7 +152,6 @@ files:
153
152
  - test/test_output_helpers.rb
154
153
  - test/test_render_helpers.rb
155
154
  - test/test_tag_helpers.rb
156
- has_rdoc: true
157
155
  homepage: http://www.padrinorb.com
158
156
  licenses: []
159
157
 
@@ -185,9 +183,61 @@ required_rubygems_version: !ruby/object:Gem::Requirement
185
183
  requirements: []
186
184
 
187
185
  rubyforge_project: padrino-helpers
188
- rubygems_version: 1.5.2
186
+ rubygems_version: 1.7.2
189
187
  signing_key:
190
188
  specification_version: 3
191
189
  summary: Helpers for padrino
192
- test_files: []
193
-
190
+ test_files:
191
+ - test/fixtures/markup_app/app.rb
192
+ - test/fixtures/markup_app/views/capture_concat.erb
193
+ - test/fixtures/markup_app/views/capture_concat.haml
194
+ - test/fixtures/markup_app/views/capture_concat.slim
195
+ - test/fixtures/markup_app/views/content_for.erb
196
+ - test/fixtures/markup_app/views/content_for.haml
197
+ - test/fixtures/markup_app/views/content_for.slim
198
+ - test/fixtures/markup_app/views/content_tag.erb
199
+ - test/fixtures/markup_app/views/content_tag.haml
200
+ - test/fixtures/markup_app/views/content_tag.slim
201
+ - test/fixtures/markup_app/views/current_engine.erb
202
+ - test/fixtures/markup_app/views/current_engine.haml
203
+ - test/fixtures/markup_app/views/current_engine.slim
204
+ - test/fixtures/markup_app/views/fields_for.erb
205
+ - test/fixtures/markup_app/views/fields_for.haml
206
+ - test/fixtures/markup_app/views/fields_for.slim
207
+ - test/fixtures/markup_app/views/form_for.erb
208
+ - test/fixtures/markup_app/views/form_for.haml
209
+ - test/fixtures/markup_app/views/form_for.slim
210
+ - test/fixtures/markup_app/views/form_tag.erb
211
+ - test/fixtures/markup_app/views/form_tag.haml
212
+ - test/fixtures/markup_app/views/form_tag.slim
213
+ - test/fixtures/markup_app/views/link_to.erb
214
+ - test/fixtures/markup_app/views/link_to.haml
215
+ - test/fixtures/markup_app/views/link_to.slim
216
+ - test/fixtures/markup_app/views/mail_to.erb
217
+ - test/fixtures/markup_app/views/mail_to.haml
218
+ - test/fixtures/markup_app/views/mail_to.slim
219
+ - test/fixtures/markup_app/views/meta_tag.erb
220
+ - test/fixtures/markup_app/views/meta_tag.haml
221
+ - test/fixtures/markup_app/views/meta_tag.slim
222
+ - test/fixtures/markup_app/views/partials/_erb.erb
223
+ - test/fixtures/markup_app/views/partials/_haml.haml
224
+ - test/fixtures/markup_app/views/partials/_slim.slim
225
+ - test/fixtures/render_app/app.rb
226
+ - test/fixtures/render_app/views/current_engine.haml
227
+ - test/fixtures/render_app/views/current_engines/_erb.erb
228
+ - test/fixtures/render_app/views/current_engines/_haml.haml
229
+ - test/fixtures/render_app/views/current_engines/_slim.slim
230
+ - test/fixtures/render_app/views/erb/test.erb
231
+ - test/fixtures/render_app/views/haml/test.haml
232
+ - test/fixtures/render_app/views/template/_user.haml
233
+ - test/fixtures/render_app/views/template/haml_template.haml
234
+ - test/fixtures/render_app/views/template/some_template.haml
235
+ - test/helper.rb
236
+ - test/test_asset_tag_helpers.rb
237
+ - test/test_form_builder.rb
238
+ - test/test_form_helpers.rb
239
+ - test/test_format_helpers.rb
240
+ - test/test_number_helpers.rb
241
+ - test/test_output_helpers.rb
242
+ - test/test_render_helpers.rb
243
+ - test/test_tag_helpers.rb