continued_fractions 0.1.4 → 0.1.5

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/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ === 0.1.5 / 2010-03-15
2
+
3
+ * Minor changes to README
4
+ * Added :nodoc: to Matrix singleton class method.
5
+
1
6
  === 0.1.4 / 2010-03-15
2
7
 
3
8
  * Added Rspec files and tests.
data/README.txt CHANGED
@@ -37,18 +37,12 @@ sudo gem install continued_fractions
37
37
 
38
38
  == Developers:
39
39
 
40
- After checking out the source, run:
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
- (The MIT License)
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.4') do |config|
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/'
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{continued_fractions}
5
- s.version = "0.1.4"
5
+ s.version = "0.1.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jose Hales-Garcia"]
@@ -50,7 +50,7 @@ module ContinuedFractions
50
50
  end
51
51
  end
52
52
 
53
- class << self
53
+ class << self # :nodoc:
54
54
  def matrix(n,m,fill=nil)
55
55
  Array.new(n).map!{Array.new(m,fill)}
56
56
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 4
9
- version: 0.1.4
8
+ - 5
9
+ version: 0.1.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jose Hales-Garcia