fibon 0.0.1 → 0.0.3
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.
- data/README.md +2 -2
- data/fibon.gemspec +1 -1
- data/fibon.gemspec~ +19 -0
- data/lib/fibon.rb~ +5 -0
- data/lib/fibon/version.rb +1 -1
- data/lib/fibon/version.rb~ +3 -0
- metadata +5 -2
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Fibon
|
2
2
|
|
3
|
-
|
3
|
+
Fibon is a simple Fibonacci number generator.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -18,7 +18,7 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
The command Fibonacci.place(number) will generate the value at that point in the sequence.
|
22
22
|
|
23
23
|
## Contributing
|
24
24
|
|
data/fibon.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.email = ["Michaelkjacoby@gmail.com"]
|
11
11
|
gem.description = %q{Fibonacci number Generator}
|
12
12
|
gem.summary = %q{Returns the nth value in the fibonacci sequence}
|
13
|
-
gem.homepage = ""
|
13
|
+
gem.homepage = "https://github.com/michaeljacoby/Fibonacci"
|
14
14
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/fibon.gemspec~
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'fibon/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "fibon"
|
8
|
+
gem.version = Fibon::VERSION
|
9
|
+
gem.authors = ["Michael Jacoby"]
|
10
|
+
gem.email = ["Michaelkjacoby@gmail.com"]
|
11
|
+
gem.description = %q{Fibonacci number Generator}
|
12
|
+
gem.summary = %q{Returns the nth value in the fibonacci sequence}
|
13
|
+
gem.homepage = ""
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
end
|
data/lib/fibon.rb~
ADDED
data/lib/fibon/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fibon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -24,9 +24,12 @@ files:
|
|
24
24
|
- README.md
|
25
25
|
- Rakefile
|
26
26
|
- fibon.gemspec
|
27
|
+
- fibon.gemspec~
|
27
28
|
- lib/fibon.rb
|
29
|
+
- lib/fibon.rb~
|
28
30
|
- lib/fibon/version.rb
|
29
|
-
|
31
|
+
- lib/fibon/version.rb~
|
32
|
+
homepage: https://github.com/michaeljacoby/Fibonacci
|
30
33
|
licenses: []
|
31
34
|
post_install_message:
|
32
35
|
rdoc_options: []
|