continued_fractions 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/README.txt +3 -9
- data/Rakefile +1 -1
- data/continued_fractions.gemspec +1 -1
- data/lib/continued_fractions.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
data/README.txt
CHANGED
@@ -37,18 +37,12 @@ sudo gem install continued_fractions
|
|
37
37
|
|
38
38
|
== Developers:
|
39
39
|
|
40
|
-
|
41
|
-
|
42
|
-
$ rake newb
|
43
|
-
|
44
|
-
This task will install any missing dependencies, run the tests/specs,
|
45
|
-
and generate the RDoc.
|
40
|
+
* Ruby 1.9+
|
41
|
+
* Echoe required to run rake tasks.
|
46
42
|
|
47
43
|
== License:
|
48
44
|
|
49
|
-
(
|
50
|
-
|
51
|
-
Copyright (c) 2010 FIX
|
45
|
+
Copyright (c) 2010 Jose Hales-Garcia
|
52
46
|
|
53
47
|
Permission is hereby granted, free of charge, to any person obtaining
|
54
48
|
a copy of this software and associated documentation files (the
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('continued_fractions', '0.1.
|
5
|
+
Echoe.new('continued_fractions', '0.1.5') do |config|
|
6
6
|
config.description = 'Generate continued fractions.'
|
7
7
|
config.author = 'Jose Hales-Garcia'
|
8
8
|
config.url = 'http://bitbucket.org/jolohaga/continued_fractions/'
|
data/continued_fractions.gemspec
CHANGED
data/lib/continued_fractions.rb
CHANGED