fast_rake 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -102,6 +102,7 @@ class FastRake::FastRunner
102
102
 
103
103
  def setup_database(task_name)
104
104
  ENV["TEST_DB_NAME"] = "test_#{task_string(task_name)}"
105
+ puts "RAILS_ENV is #{ENV["RAILS_ENV"]} and TEST_DB_NAME is #{ENV["TEST_DB_NAME"]}"
105
106
  Rake::Task["db:create"].reenable
106
107
  Rake::Task["db:create"].invoke
107
108
  Rake::Task["db:test:prepare"].reenable
@@ -1,6 +1,6 @@
1
1
  module FastRake
2
2
  VERSION_MAJOR = 0
3
3
  VERSION_MINOR = 0
4
- VERSION_PATCH = 2
4
+ VERSION_PATCH = 3
5
5
  VERSION = [VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH].join('.')
6
6
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fast_rake
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jonathan Ricketson
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-03-16 00:00:00 +11:00
19
- default_executable:
18
+ date: 2012-03-17 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: gemma
@@ -34,7 +33,7 @@ dependencies:
34
33
  version: 2.1.0
35
34
  type: :development
36
35
  version_requirements: *id001
37
- description: "\n Runs a small number of setup tasks, followed by a bunch of expensive tasks in parallel.\n This manages the number of running tasks and keeps the visible output to a small and useful amount.\n "
36
+ description: "\n Runs a small number of setup tasks, followed by a bunch of expensive tasks in parallel.\n This manages the number of running tasks and keeps the visible output to a small and useful amount.\n It was created to make developer pre-commit builds really fast, but still able to cover a lot of tests.\n "
38
37
  email:
39
38
  - jonathan.ricketson@lonelyplanet.com.au
40
39
  executables: []
@@ -47,14 +46,13 @@ files:
47
46
  - lib/fast_rake/version.rb
48
47
  - lib/fast_rake/fast_runner.rb
49
48
  - lib/fast_rake.rb
50
- has_rdoc: true
51
- homepage: ""
49
+ homepage: https://github.com/jricketson/fast_rake
52
50
  licenses: []
53
51
 
54
52
  post_install_message:
55
53
  rdoc_options:
56
54
  - --title
57
- - fast_rake-0.0.2 Documentation
55
+ - fast_rake-0.0.3 Documentation
58
56
  require_paths:
59
57
  - lib
60
58
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -78,9 +76,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
76
  requirements: []
79
77
 
80
78
  rubyforge_project: fast_rake
81
- rubygems_version: 1.5.3
79
+ rubygems_version: 1.8.15
82
80
  signing_key:
83
81
  specification_version: 3
84
- summary: Runs a small number of setup tasks, followed by a bunch of expensive tasks in parallel.
82
+ summary: Makes developer pre-commit builds really fast. Runs a small number of setup tasks, followed by a bunch of expensive tasks in parallel.
85
83
  test_files: []
86
84
 
85
+ has_rdoc: