to_rupees 0.1.0 → 0.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +35 -0
- data/lib/to_rupees/under_hundred.rb +0 -1
- data/lib/to_rupees/version.rb +1 -1
- data/lib/to_rupees.rb +0 -1
- data/to_rupees.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc1958d7636ac8ebbfb4afd355d518dc0170f477c199ff16f6ea9a12cd5a47df
|
4
|
+
data.tar.gz: 2191df55a84c14d1cd35b93526ad44c78f3476bee7fce6d7dbb0ab35b593ef66
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 218de6dfa3eefa21030c49b8a567c277fa9d3b2e282987b2304763a2e6e40503ed324ec819db6fce834b6b3edbac00365d0427e608884bab9ad87341127de504
|
7
|
+
data.tar.gz: a80a0e8497b6e95410d51f24866346f8a6a4a83dcc2d5f8cfbef475b77779a6284ed058089a89621cec57021a9bf125edb37c8fe033bec5a43888731bef22431
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
to_rupees (0.1.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.3)
|
10
|
+
rake (10.5.0)
|
11
|
+
rspec (3.7.0)
|
12
|
+
rspec-core (~> 3.7.0)
|
13
|
+
rspec-expectations (~> 3.7.0)
|
14
|
+
rspec-mocks (~> 3.7.0)
|
15
|
+
rspec-core (3.7.1)
|
16
|
+
rspec-support (~> 3.7.0)
|
17
|
+
rspec-expectations (3.7.0)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.7.0)
|
20
|
+
rspec-mocks (3.7.0)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.7.0)
|
23
|
+
rspec-support (3.7.1)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
bundler (~> 1.17)
|
30
|
+
rake (~> 10.0)
|
31
|
+
rspec (~> 3.0)
|
32
|
+
to_rupees!
|
33
|
+
|
34
|
+
BUNDLED WITH
|
35
|
+
1.17.2
|
data/lib/to_rupees/version.rb
CHANGED
data/lib/to_rupees.rb
CHANGED
data/to_rupees.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["vineet.12cs069@abes.ac.in"]
|
11
11
|
|
12
12
|
spec.summary = %q{Spell out numbers in indian currency.}
|
13
|
-
spec.description = %q{
|
13
|
+
spec.description = %q{Spell out numbers in indian currency.}
|
14
14
|
spec.homepage = "https://github.com/vin-droid/to_rupees"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: to_rupees
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vineet sahu
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
-
description:
|
55
|
+
description: Spell out numbers in indian currency.
|
56
56
|
email:
|
57
57
|
- vineet.12cs069@abes.ac.in
|
58
58
|
executables: []
|
@@ -64,6 +64,7 @@ files:
|
|
64
64
|
- ".travis.yml"
|
65
65
|
- CODE_OF_CONDUCT.md
|
66
66
|
- Gemfile
|
67
|
+
- Gemfile.lock
|
67
68
|
- LICENSE
|
68
69
|
- LICENSE.txt
|
69
70
|
- README.md
|