fig_rake 0.9.1 → 0.9.2
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.
- checksums.yaml +4 -4
- data/README.md +6 -2
- data/lib/fig_rake/rails.rb +3 -3
- data/lib/fig_rake/rake.rb +3 -3
- data/lib/fig_rake/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97b4bb73ecaa56b396a843a1dd1f4d07f7324d73
|
|
4
|
+
data.tar.gz: 6e536728b3798dd17369ccb5f6cd87701aff4cf1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 984a383459fb81ffc26615379ebf69c4772a6b70c66fbfb3d27daebb680d43d9bf5b740953a511723a0110feb99847cf28b90fb7eb61ae03870efcc14647f698
|
|
7
|
+
data.tar.gz: bccc0f6a2256c2ba79eef1723a42c05036837c3e33b0da17060df98ee03c88115c36b99a4458c5c13a140d5d30b40145a732793160ad314b87fedf9029846fec
|
data/README.md
CHANGED
|
@@ -32,9 +32,13 @@ For more information type `frake --help` or `frails --help`
|
|
|
32
32
|
|
|
33
33
|
I don't think there's anything wrong with monkey patching, so let's do it.
|
|
34
34
|
|
|
35
|
-
Just add `require 'fig_rake/rake'` to your Rakefile or `require 'fig_rake/rails'` and frake will automatically intercept your rake and rails commands and run them against its default container. The default container will be determined in the same manner as the `frake` command. You can optionally call `FigRake::Rake.default_container "name"` in your Rakefile or `FigRake::Rails.default_container "name"` in your config/
|
|
35
|
+
Just add `require 'fig_rake/rake'` to your Rakefile or `require 'fig_rake/rails'` and frake will automatically intercept your rake and rails commands and run them against its default container. The default container will be determined in the same manner as the `frake` command. You can optionally call `FigRake::Rake.default_container "name"` in your Rakefile or `FigRake::Rails.default_container "name"` in your config/boot.rb to set the default container name there.
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
You still need to explicity enable Fig Rake after including it in Rake or Rails by setting the environment variable `FIG_RAKE`.
|
|
38
|
+
|
|
39
|
+
## Versioning
|
|
40
|
+
|
|
41
|
+
This Gem is feature complete for my purposes. However it lacks tests. As soon as I have added enough of a test suite to feel comfortable, I will cut a 1.0.0 release.
|
|
38
42
|
|
|
39
43
|
## Contributing
|
|
40
44
|
|
data/lib/fig_rake/rails.rb
CHANGED
data/lib/fig_rake/rake.rb
CHANGED
data/lib/fig_rake/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fig_rake
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edward Paget
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-01-
|
|
11
|
+
date: 2015-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|