bundle-try 1.6.2 → 1.7.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.
- checksums.yaml +4 -4
- data/README.md +21 -6
- data/assets/cloons-approved.png +0 -0
- data/bundle-try.gemspec +2 -2
- data/exe/bundler-try +3 -4
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ab3fc26e9211d6db5b8923d3d9f762b9a539998
|
4
|
+
data.tar.gz: d35b47a0102d77d5a77540dc47ef3ba8871b0da9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0998a9497b5ffbc24f8a51e90ecba448e8cda6ca429ab38aeb421c7e2da2e697007eaba02add26dbdf8347a8e197dfdb7dfa6ff0da728f479b8d61070bdbc918
|
7
|
+
data.tar.gz: 42518d6b166b3686b9f4a73d0c09da43961a16fa48a08a5be4508ee894484e3b14f52164eae14ba2b2179c65991c9d5c6cfafda0b151ea6fa191875c6d3bb539
|
data/README.md
CHANGED
@@ -3,6 +3,12 @@
|
|
3
3
|
Open a REPL with the gems you want to try.
|
4
4
|
Quick weekend-hack inspired by [lein-try](https://github.com/rkneufeld/lein-try).
|
5
5
|
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
```
|
9
|
+
gem install bundle-try
|
10
|
+
```
|
11
|
+
|
6
12
|
## Usage
|
7
13
|
|
8
14
|
By default `bundle try some_gem` will start a Ruby REPL.
|
@@ -71,24 +77,33 @@ Gem in a gist (see [the gist](https://gist.github.com/eval/66f7bfaf17d364ddd232)
|
|
71
77
|
$ bundle try rot13@https://gist.github.com/eval/66f7bfaf17d364ddd232
|
72
78
|
```
|
73
79
|
|
74
|
-
|
75
|
-
But if you need
|
80
|
+
Nothing will be written to the current directory, so it's save to run from an existing project-folder.
|
81
|
+
But if you need the Gemfile:
|
76
82
|
|
77
83
|
```
|
78
84
|
$ bundle try rake > Gemfile
|
79
85
|
```
|
80
86
|
|
81
|
-
|
87
|
+
Feeling lucky?
|
82
88
|
|
83
89
|
```
|
84
|
-
#
|
90
|
+
# Gemception
|
85
91
|
$ bundle try bundle-try
|
86
92
|
```
|
87
93
|
|
88
94
|
|
89
|
-
##
|
95
|
+
## Developing
|
96
|
+
|
97
|
+
Run the features:
|
90
98
|
|
91
99
|
```
|
92
|
-
|
100
|
+
$ bundle exec cucumber
|
93
101
|
```
|
94
102
|
|
103
|
+
## Is it any good?
|
104
|
+
|
105
|
+
Glad you ask! Yes, it's 'Cloons Approved'. This, as my Ruby-friend [Elizabeth](https://twitter.com/_elsapet) learned me, means that if this gem would've had a slightly bigger budget, there would be a nice Nespresso-like commercial with George himself vowing for this software.
|
106
|
+
|
107
|
+

|
108
|
+
|
109
|
+
Thanks to [Odaeus](https://github.com/Odaeus) for the image.
|
Binary file
|
data/bundle-try.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "bundle-try"
|
7
|
-
spec.version = '1.
|
7
|
+
spec.version = '1.7.0'
|
8
8
|
spec.authors = ["Gert Goet"]
|
9
9
|
spec.email = ["gert@thinkcreate.nl"]
|
10
10
|
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
27
27
|
spec.require_paths = ["lib"]
|
28
28
|
|
29
|
-
spec.add_dependency "bundler", "~> 1.
|
29
|
+
spec.add_dependency "bundler", "~> 1.8"
|
30
30
|
spec.add_dependency "mustache", '~> 0.99.1'
|
31
31
|
spec.add_development_dependency "rake", "~> 10.0"
|
32
32
|
spec.add_development_dependency "aruba", "~> 0.6.2"
|
data/exe/bundler-try
CHANGED
@@ -52,14 +52,13 @@ Gem in a gist (see [the gist](https://gist.github.com/eval/66f7bfaf17d364ddd232)
|
|
52
52
|
|
53
53
|
$ bundle try rot13@https://gist.github.com/eval/66f7bfaf17d364ddd232
|
54
54
|
|
55
|
-
|
56
|
-
But if you need
|
55
|
+
Nothing will be written to the current directory, so it's save to run from an existing project-folder.
|
56
|
+
But if you need the Gemfile:
|
57
57
|
|
58
58
|
$ bundle try rake > Gemfile
|
59
59
|
|
60
|
-
|
60
|
+
Feeling lucky?
|
61
61
|
|
62
|
-
# No Gemception
|
63
62
|
$ bundle try bundle-try
|
64
63
|
|
65
64
|
EOH
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundle-try
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gert Goet
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.8'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.8'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: mustache
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,6 +83,7 @@ files:
|
|
83
83
|
- LICENSE.txt
|
84
84
|
- README.md
|
85
85
|
- Rakefile
|
86
|
+
- assets/cloons-approved.png
|
86
87
|
- bin/console
|
87
88
|
- bin/setup
|
88
89
|
- bundle-try.gemspec
|