bungler 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.md +24 -0
  2. data/bungler.gemspec +2 -2
  3. metadata +4 -4
  4. data/README +0 -1
@@ -0,0 +1,24 @@
1
+ ## A gem meta-package for installing bundler as bungler.
2
+
3
+ ### Why?
4
+
5
+ Well, I will often start work on a new (to me) project. Since I have a lot
6
+ of projects on my drive, I use rvm to manage them. I add an .rvmrc to the
7
+ project root, which creates a gemset for use in that project. Since too many
8
+ projects seem to be using Bundler, I also then need to say:
9
+
10
+
11
+ % gem install bundler
12
+ % bungle install
13
+
14
+ "bungle" being my semantically appropriate alias for 'bundle' on the command-line.
15
+
16
+ It's a bit jarring, however, to install a gem of one name, and use it from the
17
+ command-line under another name.
18
+
19
+ So, now I can:
20
+
21
+ % gem install bungler
22
+ % bungle install
23
+
24
+
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
4
4
  s.rubygems_version = '0.8.7'
5
5
 
6
6
  s.name = 'bungler'
7
- s.version = '0.0.1'
7
+ s.version = '0.0.2'
8
8
  s.date = '2012-06-07'
9
9
  s.rubyforge_project = 'bungler'
10
10
 
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
 
21
21
  # = MANIFEST =
22
22
  s.files = %w[
23
- README
23
+ README.md
24
24
  bungler.gemspec
25
25
  ]
26
26
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bungler
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Rick Bradley
@@ -41,7 +41,7 @@ extensions: []
41
41
  extra_rdoc_files: []
42
42
 
43
43
  files:
44
- - README
44
+ - README.md
45
45
  - bungler.gemspec
46
46
  homepage: http://github.com/rick/bungler
47
47
  licenses: []
data/README DELETED
@@ -1 +0,0 @@
1
- A gem meta-package for installing bundler as bungler.