fast_rake 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -101,7 +101,7 @@ class FastRake::FastRunner
101
101
  end
102
102
 
103
103
  def setup_database(task_name)
104
- ENV["ATLAS_TEST_DB_NAME"] = "atlas_test_#{task_string(task_name)}"
104
+ ENV["TEST_DB_NAME"] = "test_#{task_string(task_name)}"
105
105
  Rake::Task["db:create"].reenable
106
106
  Rake::Task["db:create"].invoke
107
107
  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 = 1
4
+ VERSION_PATCH = 2
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: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jonathan Ricketson
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-03-15 00:00:00 +11:00
18
+ date: 2012-03-16 00:00:00 +11:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -41,23 +41,20 @@ executables: []
41
41
 
42
42
  extensions: []
43
43
 
44
- extra_rdoc_files:
45
- - README.rdoc
44
+ extra_rdoc_files: []
45
+
46
46
  files:
47
47
  - lib/fast_rake/version.rb
48
48
  - lib/fast_rake/fast_runner.rb
49
49
  - lib/fast_rake.rb
50
- - README.rdoc
51
50
  has_rdoc: true
52
51
  homepage: ""
53
52
  licenses: []
54
53
 
55
54
  post_install_message:
56
55
  rdoc_options:
57
- - --main
58
- - README.rdoc
59
56
  - --title
60
- - fast_rake-0.0.1 Documentation
57
+ - fast_rake-0.0.2 Documentation
61
58
  require_paths:
62
59
  - lib
63
60
  required_ruby_version: !ruby/object:Gem::Requirement
data/README.rdoc DELETED
@@ -1,49 +0,0 @@
1
- = fast_rake
2
-
3
- * TODO url
4
-
5
- == SYNOPSIS
6
-
7
- TODO description
8
-
9
- === Usage
10
-
11
- TODO (code sample of usage)
12
-
13
- == REQUIREMENTS
14
-
15
- * TODO (list of requirements)
16
-
17
- == INSTALLATION
18
-
19
- sudo gem install fast_rake
20
-
21
- == DEVELOPMENT
22
-
23
- TODO developer advice
24
-
25
- == LICENSE
26
-
27
- (The MIT License)
28
-
29
- Copyright (c) 2012 TODO
30
-
31
- Permission is hereby granted, free of charge, to any person obtaining
32
- a copy of this software and associated documentation files (the
33
- 'Software'), to deal in the Software without restriction, including
34
- without limitation the rights to use, copy, modify, merge, publish,
35
- distribute, sublicense, and/or sell copies of the Software, and to
36
- permit persons to whom the Software is furnished to do so, subject to
37
- the following conditions:
38
-
39
- The above copyright notice and this permission notice shall be
40
- included in all copies or substantial portions of the Software.
41
-
42
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
43
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
44
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
45
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
46
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
47
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
48
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
49
-