amount_field 1.4.2 → 1.4.3

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.
@@ -1,3 +1,11 @@
1
+ == 1.4.3 2011-11-07
2
+
3
+ * require configurtion.rb to avoid uninitialized constant AmountField::Configuration
4
+
5
+ == 1.4.2 2010-05-11
6
+
7
+ * Don't set default dom Id for FormBuilder amount_field, use Rails default or use given one.
8
+
1
9
  == 1.4.1 2010-05-11
2
10
 
3
11
  * Don't set default dom Id for FormBuilder amount_field, use Rails default or use given one.
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('amount_field', '1.4.2') do |p|
5
+ Echoe.new('amount_field', '1.4.3') do |p|
6
6
  p.description = "Rails gem/plugin that accepts (amount) values in german or us format like 1.234,56 or 1,234.56"
7
7
  p.url = "http://github.com/thomasbaustert/amount_field"
8
8
  p.author = "Thomas Baustert"
@@ -2,28 +2,27 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{amount_field}
5
- s.version = "1.4.2"
5
+ s.version = "1.4.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Thomas Baustert"]
9
- s.date = %q{2010-05-11}
8
+ s.authors = [%q{Thomas Baustert}]
9
+ s.date = %q{2011-11-07}
10
10
  s.description = %q{Rails gem/plugin that accepts (amount) values in german or us format like 1.234,56 or 1,234.56}
11
11
  s.email = %q{ business@thomasbaustert.de}
12
- s.extra_rdoc_files = ["README.rdoc", "lib/amount_field.rb", "lib/amount_field/configuration.rb", "lib/amount_field/form_helper.rb", "lib/amount_field/form_tag_helper.rb", "lib/amount_field/validations.rb"]
13
- s.files = ["History.txt", "MIT-LICENSE", "Manifest", "README.rdoc", "Rakefile", "amount_field.gemspec", "init.rb", "install.rb", "lib/amount_field.rb", "lib/amount_field/configuration.rb", "lib/amount_field/form_helper.rb", "lib/amount_field/form_tag_helper.rb", "lib/amount_field/validations.rb", "locale/de.yml", "locale/en.yml", "test/form_helper_test.rb", "test/form_tag_helper_test.rb", "test/models/test_product.rb", "test/test_helper.rb", "test/validations_test.rb", "uninstall.rb"]
12
+ s.extra_rdoc_files = [%q{README.rdoc}, %q{lib/amount_field.rb}, %q{lib/amount_field/configuration.rb}, %q{lib/amount_field/form_helper.rb}, %q{lib/amount_field/form_tag_helper.rb}, %q{lib/amount_field/validations.rb}]
13
+ s.files = [%q{History.txt}, %q{MIT-LICENSE}, %q{Manifest}, %q{README.rdoc}, %q{Rakefile}, %q{amount_field.gemspec}, %q{init.rb}, %q{install.rb}, %q{lib/amount_field.rb}, %q{lib/amount_field/configuration.rb}, %q{lib/amount_field/form_helper.rb}, %q{lib/amount_field/form_tag_helper.rb}, %q{lib/amount_field/validations.rb}, %q{locale/de.yml}, %q{locale/en.yml}, %q{test/form_helper_test.rb}, %q{test/form_tag_helper_test.rb}, %q{test/models/test_product.rb}, %q{test/test_helper.rb}, %q{test/validations_test.rb}, %q{uninstall.rb}]
14
14
  s.homepage = %q{http://github.com/thomasbaustert/amount_field}
15
- s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Amount_field", "--main", "README.rdoc"]
16
- s.require_paths = ["lib"]
15
+ s.rdoc_options = [%q{--line-numbers}, %q{--inline-source}, %q{--title}, %q{Amount_field}, %q{--main}, %q{README.rdoc}]
16
+ s.require_paths = [%q{lib}]
17
17
  s.rubyforge_project = %q{amount_field}
18
- s.rubygems_version = %q{1.3.6}
18
+ s.rubygems_version = %q{1.8.8}
19
19
  s.summary = %q{Rails gem/plugin that accepts (amount) values in german or us format like 1.234,56 or 1,234.56}
20
- s.test_files = ["test/form_helper_test.rb", "test/form_tag_helper_test.rb", "test/models/test_product.rb", "test/test_helper.rb", "test/validations_test.rb"]
20
+ s.test_files = [%q{test/form_helper_test.rb}, %q{test/form_tag_helper_test.rb}, %q{test/models/test_product.rb}, %q{test/test_helper.rb}, %q{test/validations_test.rb}]
21
21
 
22
22
  if s.respond_to? :specification_version then
23
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
24
23
  s.specification_version = 3
25
24
 
26
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
25
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
26
  else
28
27
  end
29
28
  else
@@ -1,5 +1,6 @@
1
1
  # AmountField
2
2
 
3
+ require 'amount_field/configuration'
3
4
  require 'amount_field/validations'
4
5
  require 'amount_field/form_helper'
5
6
  require 'amount_field/form_tag_helper'
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amount_field
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
4
+ hash: 1
5
+ prerelease:
5
6
  segments:
6
7
  - 1
7
8
  - 4
8
- - 2
9
- version: 1.4.2
9
+ - 3
10
+ version: 1.4.3
10
11
  platform: ruby
11
12
  authors:
12
13
  - Thomas Baustert
@@ -14,8 +15,7 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-05-11 00:00:00 +02:00
18
- default_executable:
18
+ date: 2011-11-07 00:00:00 Z
19
19
  dependencies: []
20
20
 
21
21
  description: Rails gem/plugin that accepts (amount) values in german or us format like 1.234,56 or 1,234.56
@@ -53,7 +53,6 @@ files:
53
53
  - test/test_helper.rb
54
54
  - test/validations_test.rb
55
55
  - uninstall.rb
56
- has_rdoc: true
57
56
  homepage: http://github.com/thomasbaustert/amount_field
58
57
  licenses: []
59
58
 
@@ -68,16 +67,20 @@ rdoc_options:
68
67
  require_paths:
69
68
  - lib
70
69
  required_ruby_version: !ruby/object:Gem::Requirement
70
+ none: false
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
+ hash: 3
74
75
  segments:
75
76
  - 0
76
77
  version: "0"
77
78
  required_rubygems_version: !ruby/object:Gem::Requirement
79
+ none: false
78
80
  requirements:
79
81
  - - ">="
80
82
  - !ruby/object:Gem::Version
83
+ hash: 11
81
84
  segments:
82
85
  - 1
83
86
  - 2
@@ -85,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
88
  requirements: []
86
89
 
87
90
  rubyforge_project: amount_field
88
- rubygems_version: 1.3.6
91
+ rubygems_version: 1.8.8
89
92
  signing_key:
90
93
  specification_version: 3
91
94
  summary: Rails gem/plugin that accepts (amount) values in german or us format like 1.234,56 or 1,234.56