grill 0.0.2 → 0.1.0
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.
- data/README.md +9 -2
- data/grill.gemspec +1 -1
- data/lib/grill/version.rb +1 -1
- metadata +4 -4
data/README.md
CHANGED
@@ -10,6 +10,8 @@ Implant Gemfile into your script.
|
|
10
10
|
|
11
11
|
$ gem install grill
|
12
12
|
|
13
|
+
If you want to uninstall gems installed by Grill, delete `$HOME/.grill` directory.
|
14
|
+
|
13
15
|
## Usage
|
14
16
|
|
15
17
|
#!ruby
|
@@ -21,8 +23,13 @@ Implant Gemfile into your script.
|
|
21
23
|
Grill.implant <<-GEMFILE
|
22
24
|
source :rubygems
|
23
25
|
gem "rack"
|
24
|
-
gem "foo", :path => "/path/to/lib"
|
25
|
-
gem "bar", :git => "file:///path/to/repo"
|
26
26
|
GEMFILE
|
27
27
|
|
28
28
|
p defined?(Rack) # => "constant"
|
29
|
+
|
30
|
+
It is completely compatible (you installed version) Bundler's Gemfile so you can use [full spec of it](http://gembundler.com/gemfile.html) for version fixation, `:require`, `:path`, etc.
|
31
|
+
|
32
|
+
## When use this?
|
33
|
+
|
34
|
+
Grill is useful for your disposable scripts. Do you want to do that create directory and put Gemfile into it and `bundle install; bundle exec foo.rb` for *disposable* scripts?
|
35
|
+
|
data/grill.gemspec
CHANGED
data/lib/grill/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grill
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-09-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
21
|
+
version: 1.1.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 1.1.0
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: rspec
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|