thief 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +18 -11
- data/lib/thief/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 837ee0a4bdf93a3bc8606dcf6624320c6a96220a
|
4
|
+
data.tar.gz: c1471656f3c9c5be7de1e9e0bff6df7188a467af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdcf9ce7a05db0cbc67735bb8da572ec031df648c4c9915520f93bca5758dcb7164843030ec4690aba9f61ef379766ec3fd6e91132f3ad784515c044d0228b96
|
7
|
+
data.tar.gz: b47b6ffe319d9598011c6193c916291ccaf6ef444198031c0135c3f0d8733bc3ad8b554897b35dfd06335c3eabc324746f36315b7948cda18f5ec412f060633b
|
data/README.md
CHANGED
@@ -1,26 +1,33 @@
|
|
1
1
|
# Thief
|
2
2
|
|
3
|
-
|
3
|
+
Thief is a hack and slash alternative for installing Gemfile contents as fast as possible. It
|
4
|
+
operates in following way:
|
5
|
+
|
6
|
+
1. Parses the `Gemfile`, ignoring `Gemfile.lock`, of course.
|
7
|
+
2. Runs `gem install` for each gem using as many parallel processes as you have CPUs.
|
8
|
+
|
9
|
+
It leaves a mess, but does the majority of work that Bundler is notoriously slow at. Run Bundler
|
10
|
+
afterwards to have a clean finish.
|
4
11
|
|
5
12
|
## Installation
|
6
13
|
|
7
|
-
|
14
|
+
Install using the command line:
|
8
15
|
|
9
|
-
|
10
|
-
gem 'thief'
|
11
|
-
```
|
16
|
+
$ gem install thief
|
12
17
|
|
13
|
-
|
18
|
+
## Usage
|
14
19
|
|
15
|
-
|
20
|
+
Recommended usage for CI builds or production installs is in combination with [Bundler](http://bundler.io/):
|
16
21
|
|
17
|
-
|
22
|
+
$ bundle check || thief; bundle install
|
18
23
|
|
19
|
-
|
24
|
+
Execute somewhere where Gemfile is present
|
20
25
|
|
21
|
-
|
26
|
+
$ thief
|
27
|
+
|
28
|
+
Or provide path to gemfile as an optional argument
|
22
29
|
|
23
|
-
|
30
|
+
$ thief /path/to/some/Gemfile
|
24
31
|
|
25
32
|
## Contributing
|
26
33
|
|
data/lib/thief/version.rb
CHANGED