arithmos 0.1.1 → 0.1.2
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/README.md +2 -0
- data/arithmos.gemspec +2 -4
- data/lib/arithmos/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 595ac004277f8ca6b35712c7882f34e237ff4f1e6b3fb3d3e14255abcf1a7597
|
|
4
|
+
data.tar.gz: 6fc9941ed2b670ef4824ed926c901923a3ed0b2208c2bcf7141f018942f0d733
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 968729bf568a6540d5d5f9434637322d30f516008241cb7957568ebef2e683e474d30c697aeb6003019bcfd9bf6af9c35c97677998f6733dde2d4f6e648a13fb
|
|
7
|
+
data.tar.gz: 36f61b1b9302c176e209af8ba99f35366d106b908df45f186a4758922c2eff578b9d469e709a4b8cf5aafd2e5e210a82b5596c3f50f5722271c19872c5390010
|
data/README.md
CHANGED
|
@@ -33,6 +33,8 @@ Or install it yourself as:
|
|
|
33
33
|
=> "ϛ"
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
Currently the method returns only a valid greek numeral representation for numbers in range `0..999`. For others it raises `Arithmos::Error`.
|
|
37
|
+
|
|
36
38
|
## Development
|
|
37
39
|
|
|
38
40
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
data/arithmos.gemspec
CHANGED
|
@@ -13,10 +13,8 @@ Gem::Specification.new do |spec|
|
|
|
13
13
|
spec.homepage = "https://rubygems.org/gems/arithmos"
|
|
14
14
|
|
|
15
15
|
if spec.respond_to?(:metadata)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
#spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
|
|
19
|
-
#spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
16
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
17
|
+
spec.metadata["source_code_uri"] = "https://github.com/placek/arithmos"
|
|
20
18
|
else
|
|
21
19
|
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
|
22
20
|
end
|
data/lib/arithmos/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: arithmos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paweł Placzyński
|
|
@@ -73,7 +73,9 @@ files:
|
|
|
73
73
|
- lib/arithmos/version.rb
|
|
74
74
|
homepage: https://rubygems.org/gems/arithmos
|
|
75
75
|
licenses: []
|
|
76
|
-
metadata:
|
|
76
|
+
metadata:
|
|
77
|
+
homepage_uri: https://rubygems.org/gems/arithmos
|
|
78
|
+
source_code_uri: https://github.com/placek/arithmos
|
|
77
79
|
post_install_message:
|
|
78
80
|
rdoc_options: []
|
|
79
81
|
require_paths:
|