continued_fractions 1.8.0 → 1.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9253bbf7cf75a29375e99c2bdec92f643413eba529a1d360e0165d2ce98fbdd7
4
- data.tar.gz: '09063bf865028894dd41c43bc47118d8445dd79811154f7c862cf1ab696cff93'
3
+ metadata.gz: 6f5e54a2a88348ca82c9441587086590b750fd8535da5299c2d952d3dd8238f5
4
+ data.tar.gz: 1778ffab3d3d9550d8227c2d99dd6370f5ea4c9a4ef53eac998ddfb06cfb182c
5
5
  SHA512:
6
- metadata.gz: ce2f1dbad5629bef37ea84ceaa549005e0c0c73931ecbf54e36f3f779b22c3256505e4719fe3095fbaa116937ed01307eeded90547491db96084994a6459e77b
7
- data.tar.gz: 1b881899377e3ba060db5d03666ac3451703a169bf768bee1aebc5e512b91c8bc1c5c15373669514854b33cf623449e8588a329f6a68026a22363d268efae2c7
6
+ metadata.gz: 88c8d2bc9140b2b0b983af39d075f810349fa3fed4111e3e5e32029e680a5e717ccfefed0049c3de5b4faeefdd3233b5945273471a1b4573f1563980be1789ea
7
+ data.tar.gz: 6cec9280ee990520504d076d38d485118ea12458e5f4b644fd0c39e498738bd416c2b2b1194ac53028f98c7af56eb30c08a55129f9b551bbf0af462c2d5a5226
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  == License:
2
2
 
3
- Copyright (c) 2015 Jose Hales-Garcia
3
+ Copyright (c) 2019 Jose Hales-Garcia
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining
6
6
  a copy of this software and associated documentation files (the
@@ -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", "Continued_fractions", "--main", "README.md"]
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 = "2.5.1"
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
@@ -0,0 +1,3 @@
1
+ module ContinuedFractions
2
+ VERSION = "1.8.1"
3
+ end
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.0
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
- - Continued_fractions
54
+ - continued_fractions
53
55
  - "--main"
54
56
  - README.md
55
57
  require_paths: