fibon 0.0.1 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Fibon
2
2
 
3
- TODO: Write a gem description
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
- TODO: Write usage instructions here
21
+ The command Fibonacci.place(number) will generate the value at that point in the sequence.
22
22
 
23
23
  ## Contributing
24
24
 
@@ -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) }
@@ -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
@@ -0,0 +1,5 @@
1
+ require "fibon/version"
2
+
3
+ module Fibon
4
+ # Your code goes here...
5
+ end
@@ -1,3 +1,3 @@
1
1
  module Fibon
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -0,0 +1,3 @@
1
+ module Fibon
2
+ VERSION = "0.0.2"
3
+ end
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.1
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
- homepage: ''
31
+ - lib/fibon/version.rb~
32
+ homepage: https://github.com/michaeljacoby/Fibonacci
30
33
  licenses: []
31
34
  post_install_message:
32
35
  rdoc_options: []