thief 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -11
  3. data/lib/thief/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 61f31c07596c41f10ef2cd0f8f6f1ea6b71d07a0
4
- data.tar.gz: a79e94030488d115ffe078176cb8f36c36199ee2
3
+ metadata.gz: 837ee0a4bdf93a3bc8606dcf6624320c6a96220a
4
+ data.tar.gz: c1471656f3c9c5be7de1e9e0bff6df7188a467af
5
5
  SHA512:
6
- metadata.gz: 08b9e9810ed5a4a8052f4b15c479e8ec8ff8afa38fe5911e9ba9e0a3e996e67b5fcf5b94109c693dc372b70c5a7172692a9e15d5a715c40f8d571fa33f55f20c
7
- data.tar.gz: 3c234c22141fc847eb983f7f7acb2d7ba5975f345e2ea5a2cb108a9b092666ab5f558d79c7814d927761e3e3b8cf47ca9f5b038bee55ddfbd65dbe60456e1fa0
6
+ metadata.gz: bdcf9ce7a05db0cbc67735bb8da572ec031df648c4c9915520f93bca5758dcb7164843030ec4690aba9f61ef379766ec3fd6e91132f3ad784515c044d0228b96
7
+ data.tar.gz: b47b6ffe319d9598011c6193c916291ccaf6ef444198031c0135c3f0d8733bc3ad8b554897b35dfd06335c3eabc324746f36315b7948cda18f5ec412f060633b
data/README.md CHANGED
@@ -1,26 +1,33 @@
1
1
  # Thief
2
2
 
3
- TODO: Write a gem description
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
- Add this line to your application's Gemfile:
14
+ Install using the command line:
8
15
 
9
- ```ruby
10
- gem 'thief'
11
- ```
16
+ $ gem install thief
12
17
 
13
- And then execute:
18
+ ## Usage
14
19
 
15
- $ bundle
20
+ Recommended usage for CI builds or production installs is in combination with [Bundler](http://bundler.io/):
16
21
 
17
- Or install it yourself as:
22
+ $ bundle check || thief; bundle install
18
23
 
19
- $ gem install thief
24
+ Execute somewhere where Gemfile is present
20
25
 
21
- ## Usage
26
+ $ thief
27
+
28
+ Or provide path to gemfile as an optional argument
22
29
 
23
- TODO: Write usage instructions here
30
+ $ thief /path/to/some/Gemfile
24
31
 
25
32
  ## Contributing
26
33
 
data/lib/thief/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Thief
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thief
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomas Varaneckas