continued_fractions 1.8.0 → 1.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/continued_fractions.gemspec +6 -3
- data/lib/continued_fractions/version.rb +3 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f5e54a2a88348ca82c9441587086590b750fd8535da5299c2d952d3dd8238f5
|
4
|
+
data.tar.gz: 1778ffab3d3d9550d8227c2d99dd6370f5ea4c9a4ef53eac998ddfb06cfb182c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88c8d2bc9140b2b0b983af39d075f810349fa3fed4111e3e5e32029e680a5e717ccfefed0049c3de5b4faeefdd3233b5945273471a1b4573f1563980be1789ea
|
7
|
+
data.tar.gz: 6cec9280ee990520504d076d38d485118ea12458e5f4b644fd0c39e498738bd416c2b2b1194ac53028f98c7af56eb30c08a55129f9b551bbf0af462c2d5a5226
|
data/LICENSE
CHANGED
data/continued_fractions.gemspec
CHANGED
@@ -14,14 +14,17 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.description = "Class for working with continued fractions"
|
15
15
|
spec.email = "jolohaga@me.com"
|
16
16
|
spec.extra_rdoc_files = ["LICENSE", "README.md", "lib/continued_fractions.rb"]
|
17
|
-
spec.files = ["Gemfile", "LICENSE", "README.md", "Rakefile", "continued_fractions.gemspec", "lib/continued_fractions.rb", "spec/continued_fractions/continued_fraction_spec.rb", "spec/spec_helper.rb"]
|
17
|
+
spec.files = ["Gemfile", "LICENSE", "README.md", "Rakefile", "continued_fractions.gemspec", "lib/continued_fractions.rb", "lib/continued_fractions/version.rb", "spec/continued_fractions/continued_fraction_spec.rb", "spec/spec_helper.rb"]
|
18
18
|
spec.homepage = "http://jolohaga.github.io/continued_fractions"
|
19
19
|
spec.licenses = ["MIT"]
|
20
|
-
spec.rdoc_options = ["--line-numbers", "--title", "
|
20
|
+
spec.rdoc_options = ["--line-numbers", "--title", "continued_fractions", "--main", "README.md"]
|
21
21
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.2.2")
|
22
22
|
spec.rubyforge_project = "continued_fractions"
|
23
|
-
spec.rubygems_version = "
|
23
|
+
spec.rubygems_version = "3.0.3"
|
24
24
|
spec.summary = "Generate continued fractions"
|
25
|
+
spec.metadata = {
|
26
|
+
"source_code_uri" => "https://github.com/jolohaga/continued_fractions"
|
27
|
+
}
|
25
28
|
|
26
29
|
if spec.respond_to? :specification_version then
|
27
30
|
spec.specification_version = 4
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: continued_fractions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jose Hales-Garcia
|
@@ -39,17 +39,19 @@ files:
|
|
39
39
|
- Rakefile
|
40
40
|
- continued_fractions.gemspec
|
41
41
|
- lib/continued_fractions.rb
|
42
|
+
- lib/continued_fractions/version.rb
|
42
43
|
- spec/continued_fractions/continued_fraction_spec.rb
|
43
44
|
- spec/spec_helper.rb
|
44
45
|
homepage: http://jolohaga.github.io/continued_fractions
|
45
46
|
licenses:
|
46
47
|
- MIT
|
47
|
-
metadata:
|
48
|
+
metadata:
|
49
|
+
source_code_uri: https://github.com/jolohaga/continued_fractions
|
48
50
|
post_install_message:
|
49
51
|
rdoc_options:
|
50
52
|
- "--line-numbers"
|
51
53
|
- "--title"
|
52
|
-
-
|
54
|
+
- continued_fractions
|
53
55
|
- "--main"
|
54
56
|
- README.md
|
55
57
|
require_paths:
|