bamboo_rails 1.0.3 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,5 +1,10 @@
1
1
  = Change Log
2
2
 
3
+ == 1.0.4
4
+
5
+ * Run the "gems" task before any other task as we need gems to be built before
6
+ the Rails environment will actually load.
7
+
3
8
  == 1.0.3
4
9
 
5
10
  * Test suite with RSpec to verify the correct behaviour of the `rake bamboo`
data/bamboo_rails.gemspec CHANGED
@@ -1,8 +1,8 @@
1
1
  spec = Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'bamboo_rails'
4
- s.version = '1.0.3'
5
- s.date = '2009-05-12'
4
+ s.version = '1.0.4'
5
+ s.date = '2009-06-12'
6
6
  s.authors = ['Graeme Mathieson', 'Rubaidh Ltd']
7
7
  s.email = 'support@rubaidh.com'
8
8
  s.homepage = 'http://github.com/rubaidh/bamboo_rails'
@@ -9,7 +9,7 @@ end
9
9
  namespace :bamboo do
10
10
  task :all => [ :preflight, :test, :spec, :features ]
11
11
 
12
- task :preflight => [ "log:clear", :environment, :gems, :db ]
12
+ task :preflight => [ :gems, "log:clear", :environment, :db ]
13
13
 
14
14
  task :gems do
15
15
  if Rake::Task.task_defined?("gems:build:force")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bamboo_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Graeme Mathieson
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-05-12 00:00:00 +01:00
13
+ date: 2009-06-12 00:00:00 +01:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements: []
72
72
 
73
73
  rubyforge_project: rubaidh
74
- rubygems_version: 1.3.3
74
+ rubygems_version: 1.3.4
75
75
  signing_key:
76
76
  specification_version: 3
77
77
  summary: "[Rails] A bit of assistance for using Bamboo in your Rails applications"