bundler-bootstrap 0.0.1 → 0.0.2

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  if (system "which curl")
4
4
  system %{curl -O https://raw.github.com/jfreeze/Bundler-Bootstrap/master/Gemfile}
5
- system %{mkdir .bundle; (cd .bundle; curl -O https://github.com/jfreeze/Bundler-Bootstrap/blob/master/.bundle/config)}
5
+ system %{mkdir .bundle; (cd .bundle; curl -O https://raw.github.com/jfreeze/Bundler-Bootstrap/master/.bundle/config)}
6
6
  elsif (system "which wget")
7
7
  system %{wget --no-check-certificate https://raw.github.com/jfreeze/Bundler-Bootstrap/master/Gemfile}
8
8
  system %{mkdir .bundle; (cd .bundle; wget --no-check-certificate https://raw.github.com/jfreeze/Bundler-Bootstrap/master/.bundle/config)}
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jim Freeze
@@ -21,16 +21,14 @@ dependencies: []
21
21
  description: Bundler bootstrap gem
22
22
  email:
23
23
  - jimfreeze@gmail.com
24
- executables: []
25
-
24
+ executables:
25
+ - bundler-bootstrap
26
26
  extensions: []
27
27
 
28
28
  extra_rdoc_files: []
29
29
 
30
30
  files:
31
31
  - bin/bundler-bootstrap
32
- - gemspec
33
- - pkg/bundle-bootstrap.gemspec
34
32
  has_rdoc: true
35
33
  homepage:
36
34
  licenses: []
data/gemspec DELETED
@@ -1,28 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = "bundler-bootstrap"
3
- s.version = "0.0.1"
4
- s.platform = Gem::Platform::RUBY
5
- s.authors = ["Jim Freeze"]
6
- s.email = ["jimfreeze@gmail.com"]
7
- s.summary = "Bootstrap bundler setup for a new project"
8
- s.description = "Bundler bootstrap gem"
9
- s.rubyforge_project = s.name
10
-
11
- s.required_rubygems_version = ">= 1.3.6"
12
-
13
- # If you have runtime dependencies, add them here
14
- # s.add_runtime_dependency "other", "~> 1.2"
15
-
16
- # If you have development dependencies, add them here
17
- # s.add_development_dependency "another", "= 0.9"
18
-
19
- # The list of files to be contained in the gem
20
- s.files = `git ls-files`.split("\n")
21
- # s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
22
- # s.extensions = `git ls-files ext/extconf.rb`.split("\n")
23
-
24
- # s.require_path = 'lib'
25
-
26
- # For C extensions
27
- # s.extensions = "ext/extconf.rb"
28
- end
@@ -1,28 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = "bundler-bootstrap"
3
- s.version = "0.0.1"
4
- s.platform = Gem::Platform::RUBY
5
- s.authors = ["Jim Freeze"]
6
- s.email = ["jimfreeze@gmail.com"]
7
- s.summary = "Bootstrap bundler setup for a new project"
8
- s.description = "Bundler bootstrap gem"
9
- s.rubyforge_project = s.name
10
-
11
- s.required_rubygems_version = ">= 1.3.6"
12
-
13
- # If you have runtime dependencies, add them here
14
- # s.add_runtime_dependency "other", "~> 1.2"
15
-
16
- # If you have development dependencies, add them here
17
- # s.add_development_dependency "another", "= 0.9"
18
-
19
- # The list of files to be contained in the gem
20
- s.files = `git ls-files`.split("\n")
21
- # s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
22
- # s.extensions = `git ls-files ext/extconf.rb`.split("\n")
23
-
24
- # s.require_path = 'lib'
25
-
26
- # For C extensions
27
- # s.extensions = "ext/extconf.rb"
28
- end