cousin_roman 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0e08d7223e1f6cbac0596e6d4c353926caa690a8
4
- data.tar.gz: 101f30339215263b1532cfb542224bd3d9870bf1
3
+ metadata.gz: d721d30a8c9bfff8692b8be996a4b10697fb2d60
4
+ data.tar.gz: 9134a9f70a990f750a4c904daaa90878aefd6552
5
5
  SHA512:
6
- metadata.gz: 4913128c893097b9eb09af1dea51b9816412f3680153168836c90a28600ea9db28bc7caf321a13ba7fe9f806c5978a2473f0168b5b049948c3bd2c80f424de95
7
- data.tar.gz: 375f6152b384cafae84d4ae299fff46f9b895c40ad59559981922e64f15e5073c0679a10572d71be784d1883879febc7bcdea22e3674e885da6493ff7604cfb7
6
+ metadata.gz: 6fd61fa7907ce017e491be441e96f00c51e94cb67ac1407965dc15bb3d41caf118f4b4898fe3a885cd0d117b911182aa4a5ce363bb674f0c13d1ca25ae76c919
7
+ data.tar.gz: fa39c4136a8b29e9d7d7408a37716ed423f1144cf6422b98368838a640ae1b82ee9b2056db4b7de2cc86f7166cb919184cf609d4122708b27db556092a488321
data/README.md CHANGED
@@ -1,8 +1,7 @@
1
1
  # CousinRoman
2
2
 
3
- `CousinRoman` is a `String` extension that allows you to convert
4
- string representation of Roman numbers
5
- (following modern subtractive notation)
3
+ `CousinRoman` is a `String` extension which allows you to convert
4
+ Roman numerals (following modern subtractive notation)
6
5
  to Arabic numbers (i.e. Integers).
7
6
 
8
7
  ## Installation
@@ -21,7 +20,7 @@ Or install it yourself as:
21
20
 
22
21
  ## Usage
23
22
 
24
- Just use `#to_arabic` or `#to_arabic!` method.
23
+ Just use `String#to_arabic` or `String#to_arabic!` method.
25
24
 
26
25
  For example:
27
26
 
data/cousin_roman.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = CousinRoman::VERSION
9
9
  spec.authors = ["Artem Pyanykh"]
10
10
  spec.email = ["artem.pyanykh@gmail.com"]
11
- spec.description = %q{String extension adding capaibility to convert Roman number to Integers.}
12
- spec.summary = %q{Conversion from Roman numbers to Arabic ones.}
11
+ spec.description = %q{Easily convert Roman numerals to Integers. Functionality provided via String extension}
12
+ spec.summary = %q{Convert Roman numerals to Integers}
13
13
  spec.homepage = "https://github.com/ArtemPyanykh/cousin_roman"
14
14
  spec.license = "MIT"
15
15
 
@@ -1,3 +1,3 @@
1
1
  module CousinRoman
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cousin_roman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Pyanykh
@@ -52,7 +52,8 @@ dependencies:
52
52
  - - '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: String extension adding capaibility to convert Roman number to Integers.
55
+ description: Easily convert Roman numerals to Integers. Functionality provided via
56
+ String extension
56
57
  email:
57
58
  - artem.pyanykh@gmail.com
58
59
  executables: []
@@ -96,7 +97,7 @@ rubyforge_project:
96
97
  rubygems_version: 2.1.8
97
98
  signing_key:
98
99
  specification_version: 4
99
- summary: Conversion from Roman numbers to Arabic ones.
100
+ summary: Convert Roman numerals to Integers
100
101
  test_files:
101
102
  - spec/cousin_roman_spec.rb
102
103
  - spec/spec_helper.rb