vendorise 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +32 -0
- data/Rakefile +7 -0
- data/lib/vendorise.rb +2 -0
- data/lib/vendorise/parser.rb +15 -0
- data/lib/vendorise/tasks.rb +13 -0
- data/lib/vendorise/version.rb +3 -0
- data/spec/lib/vendorise/parser_spec.rb +34 -0
- data/spec/spec_helper.rb +5 -0
- data/vendorise.gemspec +29 -0
- metadata +100 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 3cea22b6bc34febaae056441e570b20c6b2d7cab
|
4
|
+
data.tar.gz: e9cc6590f2a6f69c6293845f546a2eb8b003037e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7acead04015749ab1a13e998f3f5a41103389afd75164fb6c06d1c0d2a24967f3eeeef2afd489c3565fa8b08d46d6c55754fb8254ee69e9e91f651583811da58
|
7
|
+
data.tar.gz: da91412d2faf6cf4ca58f480c9a708fd96c80734fc3eb98288e3acd935144c8bea6a420a246be09c38b1664e69b2d7c5eb26d836b756dfc4d29261651fce9d27
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Iain Beeston
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# Vendorise
|
2
|
+
|
3
|
+
A reusable rake task to vendorise a gem hosted in a private git repo, using git subtree (requires git 1.8)
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile (if you're using Rails, only add it to the development group):
|
8
|
+
|
9
|
+
gem 'vendorise'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install vendorise
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
1. Run `rake vendorise:gem[repo_url]` to vendorise the gem hosted at `repo_url` into `/vendor/gems`.
|
22
|
+
2. Add `gem '<gem_name>', path: 'vendor/gems/<gem_name>'` to your Gemfile
|
23
|
+
|
24
|
+
You can update the gem at any time by running the rake task again
|
25
|
+
|
26
|
+
## Contributing
|
27
|
+
|
28
|
+
1. Fork it
|
29
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
30
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
31
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
32
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/lib/vendorise.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require "rake"
|
2
|
+
require_relative "parser"
|
3
|
+
|
4
|
+
namespace :vendorise do
|
5
|
+
desc "Installs a gem from the specified url to /vendor/gems"
|
6
|
+
task :gem, :url do |t, args|
|
7
|
+
url = Vendorise::Parser.gem_url(args[:url]) or raise "Please specify a valid url for the gem"
|
8
|
+
path = "vendor/gems/#{Vendorise::Parser.gem_name(args[:url])}"
|
9
|
+
cmd = Dir.exist?(path) ? "pull" : "add"
|
10
|
+
|
11
|
+
puts `git subtree #{cmd} --prefix #{path} #{url} master --squash`
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require_relative "../../spec_helper.rb"
|
2
|
+
require_relative "../../../lib/vendorise/parser"
|
3
|
+
|
4
|
+
module Vendorise
|
5
|
+
describe Parser do
|
6
|
+
describe :gem_url do
|
7
|
+
it "is nil for pure whitespace urls" do
|
8
|
+
expect(Vendorise::Parser.gem_url(" ")).to eq nil
|
9
|
+
end
|
10
|
+
|
11
|
+
it "is nil for nil urls" do
|
12
|
+
expect(Vendorise::Parser.gem_url(nil)).to eq nil
|
13
|
+
end
|
14
|
+
|
15
|
+
it "is a http url for a http url" do
|
16
|
+
expect(Vendorise::Parser.gem_url("https://github.com/New-Bamboo/vendorise.git")).to eq "https://github.com/New-Bamboo/vendorise.git"
|
17
|
+
end
|
18
|
+
|
19
|
+
it "is a ssh url for a ssh url" do
|
20
|
+
expect(Vendorise::Parser.gem_url("git@github.com:New-Bamboo/vendorise.git")).to eq "git@github.com:New-Bamboo/vendorise.git"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe :gem_name do
|
25
|
+
it "is the last part of the path for a http url" do
|
26
|
+
expect(Vendorise::Parser.gem_name("https://github.com/New-Bamboo/vendorise.git")).to eq "vendorise"
|
27
|
+
end
|
28
|
+
|
29
|
+
it "is the last part of the path for a ssh url" do
|
30
|
+
expect(Vendorise::Parser.gem_name("git@github.com:New-Bamboo/vendorise.git")).to eq "vendorise"
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
data/spec/spec_helper.rb
ADDED
data/vendorise.gemspec
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'vendorise/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "vendorise"
|
8
|
+
spec.version = Vendorise::VERSION
|
9
|
+
spec.authors = ["Iain Beeston"]
|
10
|
+
spec.email = ["iain.beeston@gmail.com"]
|
11
|
+
spec.description = %q{A reusable rake task to vendorise a gem hosted in a private git repo}
|
12
|
+
spec.summary = %q{Uses git subtree to download the source for a gem into /vendor/gems}
|
13
|
+
spec.homepage = "http://github.com/New-Bamboo/vendorise"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(spec)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
if RUBY_ENGINE == "rbx"
|
22
|
+
spec.add_dependency "rubysl-rake"
|
23
|
+
spec.add_development_dependency "rubysl-bundler"
|
24
|
+
end
|
25
|
+
|
26
|
+
spec.add_dependency "rake"
|
27
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
28
|
+
spec.add_development_dependency "rspec"
|
29
|
+
end
|
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vendorise
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Iain Beeston
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-03-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
description: A reusable rake task to vendorise a gem hosted in a private git repo
|
56
|
+
email:
|
57
|
+
- iain.beeston@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- .gitignore
|
63
|
+
- Gemfile
|
64
|
+
- LICENSE.txt
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- lib/vendorise.rb
|
68
|
+
- lib/vendorise/parser.rb
|
69
|
+
- lib/vendorise/tasks.rb
|
70
|
+
- lib/vendorise/version.rb
|
71
|
+
- spec/lib/vendorise/parser_spec.rb
|
72
|
+
- spec/spec_helper.rb
|
73
|
+
- vendorise.gemspec
|
74
|
+
homepage: http://github.com/New-Bamboo/vendorise
|
75
|
+
licenses:
|
76
|
+
- MIT
|
77
|
+
metadata: {}
|
78
|
+
post_install_message:
|
79
|
+
rdoc_options: []
|
80
|
+
require_paths:
|
81
|
+
- lib
|
82
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - '>='
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - '>='
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
requirements: []
|
93
|
+
rubyforge_project:
|
94
|
+
rubygems_version: 2.1.11
|
95
|
+
signing_key:
|
96
|
+
specification_version: 4
|
97
|
+
summary: Uses git subtree to download the source for a gem into /vendor/gems
|
98
|
+
test_files:
|
99
|
+
- spec/lib/vendorise/parser_spec.rb
|
100
|
+
- spec/spec_helper.rb
|