merb-helpers 1.1.0 → 1.1.1

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/Rakefile CHANGED
@@ -1,46 +1,9 @@
1
1
  require 'rubygems'
2
2
  require 'rake'
3
3
 
4
- # Assume a typical dev checkout to fetch the current merb-core version
5
- require File.expand_path('../../merb-core/lib/merb-core/version', __FILE__)
6
-
7
4
  # Load this library's version information
8
5
  require File.expand_path('../lib/merb-helpers/version', __FILE__)
9
6
 
10
-
11
- begin
12
-
13
- gem 'jeweler', '~> 1.4'
14
- require 'jeweler'
15
-
16
- Jeweler::Tasks.new do |gemspec|
17
-
18
- gemspec.version = Merb::Helpers::VERSION.dup
19
-
20
- gemspec.name = "merb-helpers"
21
- gemspec.description = "Merb plugin containing view helpers"
22
- gemspec.summary = "Merb plugin that provides helpers for writing HTML templates"
23
-
24
- gemspec.authors = [ "Michael D. Ivey" ]
25
- gemspec.email = "ivey@gweezlebur.com"
26
- gemspec.homepage = "http://merbivore.com/"
27
-
28
- gemspec.files = %w(LICENSE Rakefile README TODO) + Dir['{lib,spec}/**/*']
29
-
30
- # Runtime dependencies
31
- gemspec.add_dependency 'merb-core', "~> #{Merb::VERSION}"
32
-
33
- # Development dependencies
34
- gemspec.add_development_dependency 'rspec', '>= 1.2.9'
35
-
36
- end
37
-
38
- Jeweler::GemcutterTasks.new
39
-
40
- rescue LoadError
41
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
42
- end
43
-
44
7
  require 'spec/rake/spectask'
45
8
  Spec::Rake::SpecTask.new(:spec) do |spec|
46
9
  spec.spec_opts << '--options' << 'spec/spec.opts' if File.exists?('spec/spec.opts')
@@ -1,5 +1,5 @@
1
1
  module Merb
2
2
  module Helpers
3
- VERSION = '1.1.0'.freeze
3
+ VERSION = '1.1.1'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: merb-helpers
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 17
4
5
  prerelease: false
5
6
  segments:
6
7
  - 1
7
8
  - 1
8
- - 0
9
- version: 1.1.0
9
+ - 1
10
+ version: 1.1.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Michael D. Ivey
@@ -14,30 +15,34 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-03-22 00:00:00 +00:00
18
+ date: 2010-06-15 00:00:00 +01:00
18
19
  default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
22
  name: merb-core
22
23
  prerelease: false
23
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
24
26
  requirements:
25
27
  - - ~>
26
28
  - !ruby/object:Gem::Version
29
+ hash: 17
27
30
  segments:
28
31
  - 1
29
32
  - 1
30
- - 0
31
- version: 1.1.0
33
+ - 1
34
+ version: 1.1.1
32
35
  type: :runtime
33
36
  version_requirements: *id001
34
37
  - !ruby/object:Gem::Dependency
35
38
  name: rspec
36
39
  prerelease: false
37
40
  requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
38
42
  requirements:
39
43
  - - ">="
40
44
  - !ruby/object:Gem::Version
45
+ hash: 13
41
46
  segments:
42
47
  - 1
43
48
  - 2
@@ -52,17 +57,13 @@ executables: []
52
57
  extensions: []
53
58
 
54
59
  extra_rdoc_files:
55
- - LICENSE
56
60
  - README
61
+ - LICENSE
57
62
  - TODO
58
63
  files:
59
- - LICENSE
60
- - README
61
64
  - Rakefile
62
- - TODO
63
- - lib/merb-helpers.rb
64
- - lib/merb-helpers/core_ext.rb
65
65
  - lib/merb-helpers/core_ext/numeric.rb
66
+ - lib/merb-helpers/core_ext.rb
66
67
  - lib/merb-helpers/date_time_formatting.rb
67
68
  - lib/merb-helpers/date_time_helpers.rb
68
69
  - lib/merb-helpers/form/builder.rb
@@ -72,6 +73,7 @@ files:
72
73
  - lib/merb-helpers/text_helpers.rb
73
74
  - lib/merb-helpers/time_dsl.rb
74
75
  - lib/merb-helpers/version.rb
76
+ - lib/merb-helpers.rb
75
77
  - spec/core_ext_spec.rb
76
78
  - spec/fixture/app/controllers/application.rb
77
79
  - spec/fixture/app/controllers/bound_check_box.rb
@@ -275,39 +277,45 @@ files:
275
277
  - spec/merb_helpers_form_spec.rb
276
278
  - spec/merb_helpers_tag_helper_spec.rb
277
279
  - spec/merb_helpers_text_spec.rb
278
- - spec/merb_test.log
279
280
  - spec/numeric_extlib_spec.rb
280
281
  - spec/ordinalize_spec.rb
281
282
  - spec/spec.opts
282
283
  - spec/spec_helper.rb
283
284
  - spec/time_dsl_spec.rb
285
+ - README
286
+ - LICENSE
287
+ - TODO
284
288
  has_rdoc: true
285
289
  homepage: http://merbivore.com/
286
290
  licenses: []
287
291
 
288
292
  post_install_message:
289
- rdoc_options:
290
- - --charset=UTF-8
293
+ rdoc_options: []
294
+
291
295
  require_paths:
292
296
  - lib
293
297
  required_ruby_version: !ruby/object:Gem::Requirement
298
+ none: false
294
299
  requirements:
295
300
  - - ">="
296
301
  - !ruby/object:Gem::Version
302
+ hash: 3
297
303
  segments:
298
304
  - 0
299
305
  version: "0"
300
306
  required_rubygems_version: !ruby/object:Gem::Requirement
307
+ none: false
301
308
  requirements:
302
309
  - - ">="
303
310
  - !ruby/object:Gem::Version
311
+ hash: 3
304
312
  segments:
305
313
  - 0
306
314
  version: "0"
307
315
  requirements: []
308
316
 
309
317
  rubyforge_project:
310
- rubygems_version: 1.3.6
318
+ rubygems_version: 1.3.7
311
319
  signing_key:
312
320
  specification_version: 3
313
321
  summary: Merb plugin that provides helpers for writing HTML templates
File without changes