number_to_words 1.1 → 1.2.0
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/.gitignore +1 -0
- data/Rakefile +1 -12
- data/lib/number_to_words.rb +4 -0
- data/number_to_words.gemspec +17 -23
- metadata +30 -45
- data/Manifest +0 -6
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
pkg/*
|
data/Rakefile
CHANGED
@@ -1,12 +1 @@
|
|
1
|
-
require '
|
2
|
-
require 'rake'
|
3
|
-
require 'echoe'
|
4
|
-
|
5
|
-
Echoe.new('number_to_words', '1.1') do |e|
|
6
|
-
e.description = "Gem for Ruby on Rails to describe a number in words"
|
7
|
-
e.url = "http://github.com/mexpolk/number_to_words"
|
8
|
-
e.author = "Ivan Torres"
|
9
|
-
e.email = "mexpolk@gmail.com"
|
10
|
-
e.ignore_pattern = ["tmp/*", "script/*"]
|
11
|
-
e.development_dependencies = []
|
12
|
-
end
|
1
|
+
require 'bundler/gem_tasks'
|
data/lib/number_to_words.rb
CHANGED
data/number_to_words.gemspec
CHANGED
@@ -1,30 +1,24 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path('../lib', __FILE__)
|
3
|
+
require 'number_to_words/version'
|
2
4
|
|
3
5
|
Gem::Specification.new do |s|
|
4
|
-
s.name
|
5
|
-
s.version
|
6
|
+
s.name = 'number_to_words'
|
7
|
+
s.version = NumberToWords::VERSION
|
8
|
+
s.authors = ['Ivan Torres']
|
9
|
+
s.email = ['mexpolk@gmail.com']
|
10
|
+
s.homepage = 'http://github.com/thisivan/number_to_words'
|
11
|
+
s.summary = 'Describes number into words (Spanish)'
|
12
|
+
s.description = 'Describes number into words (Spanish)'
|
6
13
|
|
7
|
-
s.
|
8
|
-
s.authors = ["Ivan Torres"]
|
9
|
-
s.date = %q{2009-08-06}
|
10
|
-
s.description = %q{Gem for Ruby on Rails to describe a number in words}
|
11
|
-
s.email = %q{mexpolk@gmail.com}
|
12
|
-
s.extra_rdoc_files = ["README.rdoc", "lib/number_to_words.rb"]
|
13
|
-
s.files = ["number_to_words.gemspec", "Manifest", "README.rdoc", "Rakefile", "init.rb", "lib/number_to_words.rb"]
|
14
|
-
s.homepage = %q{http://github.com/mexpolk/number_to_words}
|
15
|
-
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Number_to_words", "--main", "README.rdoc"]
|
16
|
-
s.require_paths = ["lib"]
|
17
|
-
s.rubyforge_project = %q{number_to_words}
|
18
|
-
s.rubygems_version = %q{1.3.5}
|
19
|
-
s.summary = %q{Gem for Ruby on Rails to describe a number in words}
|
14
|
+
s.rubyforge_project = 'number_to_words'
|
20
15
|
|
21
|
-
|
22
|
-
|
23
|
-
|
16
|
+
s.files = `git ls-files`.split("\n")
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
18
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
19
|
+
s.require_paths = ['lib']
|
24
20
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
else
|
29
|
-
end
|
21
|
+
# specify any dependencies here; for example:
|
22
|
+
# s.add_development_dependency "rspec"
|
23
|
+
# s.add_runtime_dependency "rest-client"
|
30
24
|
end
|
metadata
CHANGED
@@ -1,66 +1,51 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: number_to_words
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.0
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
|
-
authors:
|
7
|
+
authors:
|
7
8
|
- Ivan Torres
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
|
12
|
-
date: 2009-08-06 00:00:00 -05:00
|
13
|
-
default_executable:
|
12
|
+
date: 2011-11-24 00:00:00.000000000 Z
|
14
13
|
dependencies: []
|
15
|
-
|
16
|
-
|
17
|
-
|
14
|
+
description: Describes number into words (Spanish)
|
15
|
+
email:
|
16
|
+
- mexpolk@gmail.com
|
18
17
|
executables: []
|
19
|
-
|
20
18
|
extensions: []
|
21
|
-
|
22
|
-
|
23
|
-
-
|
24
|
-
- lib/number_to_words.rb
|
25
|
-
files:
|
26
|
-
- number_to_words.gemspec
|
27
|
-
- Manifest
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- .gitignore
|
28
22
|
- README.rdoc
|
29
23
|
- Rakefile
|
30
24
|
- init.rb
|
31
25
|
- lib/number_to_words.rb
|
32
|
-
|
33
|
-
homepage: http://github.com/
|
26
|
+
- number_to_words.gemspec
|
27
|
+
homepage: http://github.com/thisivan/number_to_words
|
34
28
|
licenses: []
|
35
|
-
|
36
29
|
post_install_message:
|
37
|
-
rdoc_options:
|
38
|
-
|
39
|
-
- --inline-source
|
40
|
-
- --title
|
41
|
-
- Number_to_words
|
42
|
-
- --main
|
43
|
-
- README.rdoc
|
44
|
-
require_paths:
|
30
|
+
rdoc_options: []
|
31
|
+
require_paths:
|
45
32
|
- lib
|
46
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
35
|
+
requirements:
|
36
|
+
- - ! '>='
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
58
45
|
requirements: []
|
59
|
-
|
60
46
|
rubyforge_project: number_to_words
|
61
|
-
rubygems_version: 1.
|
47
|
+
rubygems_version: 1.8.10
|
62
48
|
signing_key:
|
63
49
|
specification_version: 3
|
64
|
-
summary:
|
50
|
+
summary: Describes number into words (Spanish)
|
65
51
|
test_files: []
|
66
|
-
|