padrino-helpers 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -1,4 +1,4 @@
1
- require File.dirname(__FILE__) + '/../../padrino-core/lib/padrino-core/support_lite'
1
+ require 'padrino-core/support_lite'
2
2
  Dir[File.dirname(__FILE__) + '/padrino-helpers/**/*.rb'].each {|file| require file }
3
3
 
4
4
  module Padrino
@@ -0,0 +1,105 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{padrino-helpers}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Padrino Team", "Nathan Esquenazi", "Davide D'Agostino", "Arthur Chiu"]
12
+ s.date = %q{2009-11-17}
13
+ s.description = %q{Tag helpers, asset helpers, form helpers, form builders and many more helpers for padrino}
14
+ s.email = %q{nesquena@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "README.rdoc",
25
+ "Rakefile",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "lib/padrino-helpers.rb",
29
+ "lib/padrino-helpers/asset_tag_helpers.rb",
30
+ "lib/padrino-helpers/form_builder/abstract_form_builder.rb",
31
+ "lib/padrino-helpers/form_builder/standard_form_builder.rb",
32
+ "lib/padrino-helpers/form_helpers.rb",
33
+ "lib/padrino-helpers/format_helpers.rb",
34
+ "lib/padrino-helpers/output_helpers.rb",
35
+ "lib/padrino-helpers/render_helpers.rb",
36
+ "lib/padrino-helpers/tag_helpers.rb",
37
+ "padrino-helpers.gemspec",
38
+ "test/active_support_helpers.rb",
39
+ "test/fixtures/markup_app/app.rb",
40
+ "test/fixtures/markup_app/views/capture_concat.erb",
41
+ "test/fixtures/markup_app/views/capture_concat.haml",
42
+ "test/fixtures/markup_app/views/content_for.erb",
43
+ "test/fixtures/markup_app/views/content_for.haml",
44
+ "test/fixtures/markup_app/views/content_tag.erb",
45
+ "test/fixtures/markup_app/views/content_tag.haml",
46
+ "test/fixtures/markup_app/views/fields_for.erb",
47
+ "test/fixtures/markup_app/views/fields_for.haml",
48
+ "test/fixtures/markup_app/views/form_for.erb",
49
+ "test/fixtures/markup_app/views/form_for.haml",
50
+ "test/fixtures/markup_app/views/form_tag.erb",
51
+ "test/fixtures/markup_app/views/form_tag.haml",
52
+ "test/fixtures/markup_app/views/link_to.erb",
53
+ "test/fixtures/markup_app/views/link_to.haml",
54
+ "test/fixtures/markup_app/views/mail_to.erb",
55
+ "test/fixtures/markup_app/views/mail_to.haml",
56
+ "test/fixtures/render_app/app.rb",
57
+ "test/fixtures/render_app/views/erb/test.erb",
58
+ "test/fixtures/render_app/views/haml/test.haml",
59
+ "test/fixtures/render_app/views/template/_user.haml",
60
+ "test/fixtures/render_app/views/template/haml_template.haml",
61
+ "test/fixtures/render_app/views/template/some_template.haml",
62
+ "test/helper.rb",
63
+ "test/test_asset_tag_helpers.rb",
64
+ "test/test_form_builder.rb",
65
+ "test/test_form_helpers.rb",
66
+ "test/test_format_helpers.rb",
67
+ "test/test_output_helpers.rb",
68
+ "test/test_render_helpers.rb",
69
+ "test/test_tag_helpers.rb"
70
+ ]
71
+ s.homepage = %q{http://github.com/padrino/padrino-helpers}
72
+ s.rdoc_options = ["--charset=UTF-8"]
73
+ s.require_paths = ["lib"]
74
+ s.rubygems_version = %q{1.3.5}
75
+ s.summary = %q{Helpers for padrino}
76
+
77
+ if s.respond_to? :specification_version then
78
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
79
+ s.specification_version = 3
80
+
81
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
82
+ s.add_runtime_dependency(%q<sinatra>, [">= 0.9.2"])
83
+ s.add_development_dependency(%q<haml>, [">= 2.2.1"])
84
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
85
+ s.add_development_dependency(%q<mocha>, [">= 0.9.7"])
86
+ s.add_development_dependency(%q<rack-test>, [">= 0.5.0"])
87
+ s.add_development_dependency(%q<webrat>, [">= 0.5.1"])
88
+ else
89
+ s.add_dependency(%q<sinatra>, [">= 0.9.2"])
90
+ s.add_dependency(%q<haml>, [">= 2.2.1"])
91
+ s.add_dependency(%q<shoulda>, [">= 0"])
92
+ s.add_dependency(%q<mocha>, [">= 0.9.7"])
93
+ s.add_dependency(%q<rack-test>, [">= 0.5.0"])
94
+ s.add_dependency(%q<webrat>, [">= 0.5.1"])
95
+ end
96
+ else
97
+ s.add_dependency(%q<sinatra>, [">= 0.9.2"])
98
+ s.add_dependency(%q<haml>, [">= 2.2.1"])
99
+ s.add_dependency(%q<shoulda>, [">= 0"])
100
+ s.add_dependency(%q<mocha>, [">= 0.9.7"])
101
+ s.add_dependency(%q<rack-test>, [">= 0.5.0"])
102
+ s.add_dependency(%q<webrat>, [">= 0.5.1"])
103
+ end
104
+ end
105
+
data/test/helper.rb CHANGED
@@ -8,7 +8,7 @@ require 'webrat'
8
8
  $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
9
9
  $LOAD_PATH.unshift(File.dirname(__FILE__))
10
10
  require 'active_support_helpers'
11
- require File.dirname(__FILE__) + '/../lib/padrino-helpers.rb'
11
+ require 'padrino-helpers'
12
12
 
13
13
  class Test::Unit::TestCase
14
14
  include Padrino::Helpers::OutputHelpers
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: padrino-helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Padrino Team
@@ -12,7 +12,7 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
 
15
- date: 2009-11-16 00:00:00 -08:00
15
+ date: 2009-11-17 00:00:00 -08:00
16
16
  default_executable:
17
17
  dependencies:
18
18
  - !ruby/object:Gem::Dependency
@@ -100,6 +100,7 @@ files:
100
100
  - lib/padrino-helpers/output_helpers.rb
101
101
  - lib/padrino-helpers/render_helpers.rb
102
102
  - lib/padrino-helpers/tag_helpers.rb
103
+ - padrino-helpers.gemspec
103
104
  - test/active_support_helpers.rb
104
105
  - test/fixtures/markup_app/app.rb
105
106
  - test/fixtures/markup_app/views/capture_concat.erb
@@ -160,15 +161,5 @@ rubygems_version: 1.3.5
160
161
  signing_key:
161
162
  specification_version: 3
162
163
  summary: Helpers for padrino
163
- test_files:
164
- - test/active_support_helpers.rb
165
- - test/fixtures/markup_app/app.rb
166
- - test/fixtures/render_app/app.rb
167
- - test/helper.rb
168
- - test/test_asset_tag_helpers.rb
169
- - test/test_form_builder.rb
170
- - test/test_form_helpers.rb
171
- - test/test_format_helpers.rb
172
- - test/test_output_helpers.rb
173
- - test/test_render_helpers.rb
174
- - test/test_tag_helpers.rb
164
+ test_files: []
165
+