cartesian 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +2 -2
- data/Wishlist.txt +2 -0
- data/lib/cartesian.rb +1 -1
- data/lib/cartesian/version.rb +1 -1
- data/website/index.html +4 -4
- data/website/index.txt +2 -2
- metadata +3 -3
data/History.txt
CHANGED
data/Wishlist.txt
CHANGED
@@ -1 +1,3 @@
|
|
1
1
|
* Release GridSearch as a separate, independent gem. Note that 'lib/grid_search.rb' is already independent.
|
2
|
+
* Remove replication of VERSION in lib/cartesian.rb and lib/cartesian/version.rb due to parts of newgem 1.5.3 and older (DRY)
|
3
|
+
* Fix/automate the FIXME in the website email (currently being fixed manually)
|
data/lib/cartesian.rb
CHANGED
@@ -39,7 +39,7 @@ module Cartesian
|
|
39
39
|
# Unfortunately, as of now, the version data must be replicated in ../cartesian.rb,
|
40
40
|
# due to a mix of newgem versions, each requiring a different one. Not DRY :P
|
41
41
|
#
|
42
|
-
VERSION = "0.5.
|
42
|
+
VERSION = "0.5.3"
|
43
43
|
|
44
44
|
# Produces the cartesian product of self and other.
|
45
45
|
# The result is an array of pairs (i.e. two-element arrays).
|
data/lib/cartesian/version.rb
CHANGED
data/website/index.html
CHANGED
@@ -33,10 +33,10 @@
|
|
33
33
|
<h1></h1>
|
34
34
|
<div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/cartesian"; return false'>
|
35
35
|
<p>Get Version</p>
|
36
|
-
<a href="http://rubyforge.org/projects/cartesian" class="numbers">0.5.
|
36
|
+
<a href="http://rubyforge.org/projects/cartesian" class="numbers">0.5.3</a>
|
37
37
|
</div>
|
38
|
-
<script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script><h1>
|
39
|
-
<
|
38
|
+
<script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script><h1>cartesian</h1>
|
39
|
+
<h3>Cartesian products in Ruby</h3>
|
40
40
|
<h2>What</h2>
|
41
41
|
<p>Provides methods for the calculation of the cartesian producted between<br />
|
42
42
|
two or more enumerable objects. Includes grid search optimization methods.<br />
|
@@ -99,7 +99,7 @@ rake install_gem</pre>
|
|
99
99
|
<p><img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"></p>
|
100
100
|
</form>
|
101
101
|
<p class="coda">
|
102
|
-
<a href="adriano.mitre@gmail.com">Adriano Mitre</a>,
|
102
|
+
<a href="adriano.mitre@gmail.com">Adriano Mitre</a>, 5th January 2011<br>
|
103
103
|
Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
|
104
104
|
</p>
|
105
105
|
</div>
|
data/website/index.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
<link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
|
2
2
|
<script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
|
3
3
|
|
4
|
-
h1. Cartesian products in Ruby
|
5
|
-
|
6
4
|
h1. cartesian
|
7
5
|
|
6
|
+
h3. Cartesian products in Ruby
|
7
|
+
|
8
8
|
h2. What
|
9
9
|
|
10
10
|
Provides methods for the calculation of the cartesian producted between
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cartesian
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 3
|
10
|
+
version: 0.5.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Adriano Mitre
|