bun 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d621884082dd78c98f0cffcf7252526256f50d25d16a7d359b4938bec037af98
4
- data.tar.gz: d1901478267385abd1ca5dd4664388c07f30419c55c3efc733fb395c0b317612
3
+ metadata.gz: a78ef77c51beb53e4f9315da260e14e008b985de8d042829f908644a38dbaefb
4
+ data.tar.gz: f1aeead00d6e4a8c90938892fefc2315f8789052fce5cbfae0f4cfb1d057fb96
5
5
  SHA512:
6
- metadata.gz: fea7b713f724b63378dc543e905006f9ee145283fb23435eefcddcb19e7c47b5ab0ad3d35a5ae3d2b141d85f324bc17af9109ecef5db983f81a4979b86be61f8
7
- data.tar.gz: e5f57a7963312f8825e56b240c1e9f2ba5b2cfdd6575ff0c9af1c183b9777ce10e71529c9a509f6184622576d2f5d1be6fa36943cae4623b276b5f8ed4c8e3d7
6
+ metadata.gz: d3973bfacf135730a50d3af809f04d68a68dd31f38b1ea4204ffd236aaa1b7df311b4809a48b6179acf0fb2ae27909cc06bf521bdae0a5cd4b8664242bb9742b
7
+ data.tar.gz: cbc83eda8586d31eb8f020b6cd823e7fe20f5ecdc81a343dcf15236252f014a77cafd75d113c50f86888537976df8e86a8c1dbf0612845c5311b3b479569e488
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bun (1.0.0)
4
+ bun (1.0.1)
5
5
  bundler (~> 1.16)
6
6
  paint (~> 2.0)
7
7
  tty-spinner (~> 0.8)
@@ -33,9 +33,9 @@ module Bun
33
33
  install if arguments.empty?
34
34
 
35
35
  case command
36
- when /^install$|^i$/
36
+ when /^install$|^i$|^add$/
37
37
  install(gems)
38
- when /^uninstall$|^rm$|^d$/
38
+ when /^uninstall$|^rm$|^remove$|^d$/
39
39
  uninstall(gems)
40
40
  end
41
41
  end
@@ -1,3 +1,3 @@
1
1
  module Bun
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
data/readme.md CHANGED
@@ -16,49 +16,49 @@ $ gem install bun
16
16
  Install RSpec:
17
17
 
18
18
  ```
19
- $ bun install rspec
19
+ $ bun add rspec
20
20
  ```
21
21
 
22
22
  Install Pry in development group:
23
23
 
24
24
  ```
25
- $ bun install pry --development
25
+ $ bun add pry --development
26
26
  ```
27
27
 
28
28
  Install RSpec and Cucumber in test group:
29
29
 
30
30
  ```
31
- $ bun install rspec cucumber --test
31
+ $ bun add rspec cucumber --test
32
32
  ```
33
33
 
34
34
  Uninstall RSpec:
35
35
 
36
36
  ```
37
- $ bun uninstall rspec
37
+ $ bun remove rspec
38
38
  ```
39
39
 
40
40
  Uninstall Rails:
41
41
 
42
42
  ```
43
- $ bun rm rails
43
+ $ bun remove rails
44
44
  ```
45
45
 
46
46
  Install Cuba with strict version range:
47
47
 
48
48
  ```
49
- $ bun i cuba --strict
49
+ $ bun add cuba --strict
50
50
  ```
51
51
 
52
52
  Add Sequel to the Gemfile and exit without installing it:
53
53
 
54
54
  ```
55
- $ bun i sequel --skip-install
55
+ $ bun add sequel --skip-install
56
56
  ```
57
57
 
58
58
  Just print the gem name with the latest version found and exit:
59
59
 
60
60
  ```
61
- $ bun i sequel --print
61
+ $ bun add sequel --print
62
62
  ```
63
63
 
64
64
  More info:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bun
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hrvoje Šimić
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-08 00:00:00.000000000 Z
11
+ date: 2018-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-spinner