sqrbl 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -3
- data/Rakefile +2 -3
- data/lib/sqrbl.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
@@ -1,4 +1,7 @@
|
|
1
|
-
== 1.
|
1
|
+
== 0.1.2 / 2009-08-06
|
2
2
|
|
3
|
-
*
|
4
|
-
|
3
|
+
* No changes -- just want to make sure the latest release is actually usable after flailing around trying to use the 'bones' and 'rubyforge' gems.
|
4
|
+
|
5
|
+
== 0.1.0 / 2009-08-06
|
6
|
+
|
7
|
+
* Ready for public consumption?
|
data/Rakefile
CHANGED
@@ -18,13 +18,12 @@ require 'sqrbl'
|
|
18
18
|
|
19
19
|
task :default => 'spec:run'
|
20
20
|
|
21
|
+
PROJ.rubyforge.name = 'sqrbl'
|
21
22
|
PROJ.name = 'sqrbl'
|
23
|
+
PROJ.version = Sqrbl::VERSION
|
22
24
|
PROJ.authors = 'Sam Livingston-Gray'
|
23
25
|
PROJ.email = 'geeksam@gmail.com'
|
24
26
|
PROJ.url = 'http://sqrbl.rubyforge.org'
|
25
|
-
PROJ.version = Sqrbl::VERSION
|
26
|
-
PROJ.rubyforge.name = 'sqrbl'
|
27
|
-
PROJ.group_id = 'sqrbl'
|
28
27
|
PROJ.ignore_file = '.gitignore'
|
29
28
|
|
30
29
|
|
data/lib/sqrbl.rb
CHANGED