bundler-bootstrap 0.0.1
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.
- data/bin/bundler-bootstrap +11 -0
- data/gemspec +28 -0
- data/pkg/bundle-bootstrap.gemspec +28 -0
- metadata +69 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
if (system "which curl")
|
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)}
|
6
|
+
elsif (system "which wget")
|
7
|
+
system %{wget --no-check-certificate https://raw.github.com/jfreeze/Bundler-Bootstrap/master/Gemfile}
|
8
|
+
system %{mkdir .bundle; (cd .bundle; wget --no-check-certificate https://raw.github.com/jfreeze/Bundler-Bootstrap/master/.bundle/config)}
|
9
|
+
else
|
10
|
+
puts "Cannot install bundle bootstrap. Cannot find 'curl' or 'wget'"
|
11
|
+
end
|
data/gemspec
ADDED
@@ -0,0 +1,28 @@
|
|
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
|
@@ -0,0 +1,28 @@
|
|
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
|
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bundler-bootstrap
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
version: 0.0.1
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Jim Freeze
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2011-07-24 00:00:00 -05:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: Bundler bootstrap gem
|
22
|
+
email:
|
23
|
+
- jimfreeze@gmail.com
|
24
|
+
executables: []
|
25
|
+
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files: []
|
29
|
+
|
30
|
+
files:
|
31
|
+
- bin/bundler-bootstrap
|
32
|
+
- gemspec
|
33
|
+
- pkg/bundle-bootstrap.gemspec
|
34
|
+
has_rdoc: true
|
35
|
+
homepage:
|
36
|
+
licenses: []
|
37
|
+
|
38
|
+
post_install_message:
|
39
|
+
rdoc_options: []
|
40
|
+
|
41
|
+
require_paths:
|
42
|
+
- lib
|
43
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
44
|
+
none: false
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
segments:
|
49
|
+
- 0
|
50
|
+
version: "0"
|
51
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
segments:
|
57
|
+
- 1
|
58
|
+
- 3
|
59
|
+
- 6
|
60
|
+
version: 1.3.6
|
61
|
+
requirements: []
|
62
|
+
|
63
|
+
rubyforge_project: bundler-bootstrap
|
64
|
+
rubygems_version: 1.3.7
|
65
|
+
signing_key:
|
66
|
+
specification_version: 3
|
67
|
+
summary: Bootstrap bundler setup for a new project
|
68
|
+
test_files: []
|
69
|
+
|