roman_numbers 0.0.6 → 0.1.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.
- checksums.yaml +4 -4
- data/lib/roman_numbers/version.rb +1 -1
- data/lib/roman_numbers.rb +1 -1
- data/spec/string_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9bda07541b713948b1e92d369048d61cf19d3fe0
|
|
4
|
+
data.tar.gz: fe2074c80f27fcc975bb94c987441437942b0fed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f02f887bb4d2e2e53df857dfe9c94c8c69cdbc4e211e29136ffd44f1fed99720690baca98d72f6892dff845ebae41c65db974566a9bf319100ec94060675a13
|
|
7
|
+
data.tar.gz: 4e765195cf0b41405b5cac0f22f560090fad0da61430f6938e1cc3104f1042f01242475d2a44825c8201746da3a2418a7be6c438e6bbb2de63a57ee023a08912
|
data/lib/roman_numbers.rb
CHANGED
data/spec/string_spec.rb
CHANGED
|
@@ -3,11 +3,11 @@ include RomanNumbers
|
|
|
3
3
|
|
|
4
4
|
describe String do
|
|
5
5
|
|
|
6
|
-
context "#
|
|
6
|
+
context "#from_roman_to_decimal" do
|
|
7
7
|
|
|
8
8
|
it "is added and internally calls 'convert_roman_to_decimal'" do
|
|
9
9
|
expect_any_instance_of(RomanNumbers::RomanNumber).to receive(:convert_roman_to_decimal)
|
|
10
|
-
"some_string".
|
|
10
|
+
"some_string".from_roman_to_decimal
|
|
11
11
|
end
|
|
12
12
|
end
|
|
13
13
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: roman_numbers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Munish Goyal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-05-
|
|
11
|
+
date: 2015-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|