Commit 5f657df070533677a77e75e053c8e6c1b65ec97b
- Date: Sat Feb 09 08:28:15 +0000 2008
- Committer: Ron Damen (ron@ganja.nl)
- Author: Ron Damen (ron@ganja.nl)
- Commit SHA1: 5f657df070533677a77e75e053c8e6c1b65ec97b
- Tree SHA1: 39880a224bcfb20073769a373bccda85c948544d
Merge branch 'master' of ../mainline
Conflicts:
lib/git-rails/commands/init.rb
Commit diff
| |   |
| 1 | === 0.3.0 / 2008-02-06 |
| 2 | |
| 3 | * enhancements: |
| 4 | * split up ignores - Ron Damen |
| 5 | |
| 6 | i prefer the ignore to be in separate files. |
| 7 | added ignore for sqlite databases. |
| 8 | |
| 9 | * typo fixed in init - Ron Damen |
| 10 | |
| 1 | 11 | === 0.2.0 / 2008-02-04 |
| 2 | 12 | |
| 3 | 13 | * enhancements: |
| toggle raw diff |
--- a/History.txt
+++ b/History.txt
@@ -1,3 +1,13 @@
+=== 0.3.0 / 2008-02-06
+
+* enhancements:
+ * split up ignores - Ron Damen
+
+ i prefer the ignore to be in separate files.
+ added ignore for sqlite databases.
+
+ * typo fixed in init - Ron Damen
+
=== 0.2.0 / 2008-02-04
* enhancements: |
| |   |
| 1 | | = git-rails |
| 1 | = git-rails: |
| 2 | 2 | |
| 3 | 3 | * http://blog.nanorails.com/git-rails |
| 4 | * http://rubyforge.org/projects/git-rails/ |
| 4 | 5 | |
| 5 | 6 | == DESCRIPTION: |
| 6 | 7 | |
| … | … | |
| 26 | 26 | * hoe 1.5.0 |
| 27 | 27 | * main 2.8.0 |
| 28 | 28 | * rake 0.8.1 |
| 29 | * rspec 1.1.3 |
| 29 | 30 | |
| 30 | 31 | == INSTALL: |
| 31 | 32 | |
| toggle raw diff |
--- a/README.txt
+++ b/README.txt
@@ -1,6 +1,7 @@
-= git-rails
+= git-rails:
* http://blog.nanorails.com/git-rails
+* http://rubyforge.org/projects/git-rails/
== DESCRIPTION:
@@ -25,6 +26,7 @@ Tools to help using git with rails
* hoe 1.5.0
* main 2.8.0
* rake 0.8.1
+* rspec 1.1.3
== INSTALL:
|
| |   |
| 8 | 8 | p.rubyforge_name = 'git-rails' |
| 9 | 9 | p.author = 'Pascal Belloncle (nano RAILS)' |
| 10 | 10 | p.email = 'psq@nanorails.com' |
| 11 | | p.summary = 'Tools to make using git with rails a breeze' |
| 12 | | p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n") |
| 13 | | p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1] |
| 14 | | p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n") |
| 15 | 11 | p.extra_deps << ['main', '>= 2.8.0'] |
| 16 | 12 | end |
| 17 | 13 | |
| toggle raw diff |
--- a/Rakefile
+++ b/Rakefile
@@ -8,10 +8,6 @@ Hoe.new('git-rails', GitRails::VERSION::STRING) do |p|
p.rubyforge_name = 'git-rails'
p.author = 'Pascal Belloncle (nano RAILS)'
p.email = 'psq@nanorails.com'
- p.summary = 'Tools to make using git with rails a breeze'
- p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
- p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
- p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
p.extra_deps << ['main', '>= 2.8.0']
end
|
| |   |
| 1 | 1 | module GitRails #:nodoc: |
| 2 | 2 | module VERSION #:nodoc: |
| 3 | 3 | MAJOR = 0 |
| 4 | | MINOR = 2 |
| 5 | | TINY = 1 |
| 4 | MINOR = 3 |
| 5 | TINY = 0 |
| 6 | 6 | |
| 7 | 7 | STRING = [MAJOR, MINOR, TINY].join('.') |
| 8 | 8 | end |
| toggle raw diff |
--- a/lib/git-rails/version.rb
+++ b/lib/git-rails/version.rb
@@ -1,8 +1,8 @@
module GitRails #:nodoc:
module VERSION #:nodoc:
MAJOR = 0
- MINOR = 2
- TINY = 1
+ MINOR = 3
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end |