rubaidh-generators 1.0.7 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
data/generators.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  spec = Gem::Specification.new do |s|
2
2
  s.name = 'generators'
3
- s.version = '1.0.7'
3
+ s.version = '1.0.8'
4
4
  s.date = '2009-04-20'
5
5
  s.authors = ['Graeme Mathieson', 'Mark Connell' 'Rubaidh Ltd']
6
6
  s.email = 'support@rubaidh.com'
data/templates/rubaidh.rb CHANGED
@@ -29,7 +29,8 @@ git :add => '.'
29
29
  git :commit => "-m 'Initial commit of application skeleton.'"
30
30
 
31
31
  # Pull Rails in as a submodule
32
- git :submodule => 'add git://github.com/rails/rails.git vendor/rails -b 2-3-stable'
32
+ git :submodule => 'add git://github.com/rails/rails.git vendor/rails'
33
+ run 'cd vendor/rails && git checkout -b 2-3-stable origin/2-3-stable'
33
34
  git :commit => '-m "Pull in Rails as a git submodule and pin to version 2.3 stable."'
34
35
 
35
36
  # Update against the latest edge Rails
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubaidh-generators
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Graeme Mathieson