automatiek 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +0 -1
- data/.travis.yml +3 -0
- data/CHANGELOG.md +8 -0
- data/Gemfile.lock +35 -0
- data/README.md +27 -21
- data/bin/rake +16 -0
- data/bin/rspec +16 -0
- data/lib/automatiek/gem.rb +0 -1
- data/lib/automatiek/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e21ed2cbdb9c66802a18b6303c144273af578a2c
|
4
|
+
data.tar.gz: 0a40a33771c25ec30fffcbe0bc99ff2f5dc9ff46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c17a729cef503bcde14e245b222b9ec6c268adf40266bdc0207fc339d4da3c2d23b93dfeaf01f0baba29e45a8171cedb3561bce62d87f5e3c5e4cdcd0547faa
|
7
|
+
data.tar.gz: e7ac11158c62ec4bc5aaa49c28adcf7bd38a22fde57aca294df64f7f9b014c0fccac68ff4a812a08c42c110907d2a1f0c774cfebe7a823750fdcbd27f8e59cf0
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
automatiek (0.1.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.2.5)
|
10
|
+
rake (10.4.2)
|
11
|
+
rspec (3.2.0)
|
12
|
+
rspec-core (~> 3.2.0)
|
13
|
+
rspec-expectations (~> 3.2.0)
|
14
|
+
rspec-mocks (~> 3.2.0)
|
15
|
+
rspec-core (3.2.3)
|
16
|
+
rspec-support (~> 3.2.0)
|
17
|
+
rspec-expectations (3.2.1)
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
19
|
+
rspec-support (~> 3.2.0)
|
20
|
+
rspec-mocks (3.2.1)
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
+
rspec-support (~> 3.2.0)
|
23
|
+
rspec-support (3.2.2)
|
24
|
+
|
25
|
+
PLATFORMS
|
26
|
+
ruby
|
27
|
+
|
28
|
+
DEPENDENCIES
|
29
|
+
automatiek!
|
30
|
+
bundler (~> 1.10)
|
31
|
+
rake (~> 10.0)
|
32
|
+
rspec
|
33
|
+
|
34
|
+
BUNDLED WITH
|
35
|
+
1.10.6
|
data/README.md
CHANGED
@@ -1,41 +1,47 @@
|
|
1
1
|
# Automatiek
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
3
|
+
A gem to vendor other gems, for situations where dependency resolution just
|
4
|
+
isn't an option. Extracted from [Bundler](https://github.com/bundler/bundler)'s
|
5
|
+
Rakefile.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'automatiek'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
9
|
$ gem install automatiek
|
22
10
|
|
23
11
|
## Usage
|
24
12
|
|
25
|
-
|
13
|
+
In your `Rakefile`:
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
require "automatiek"
|
17
|
+
|
18
|
+
Automatiek::RakeTask.new("molinillo") do |lib|
|
19
|
+
lib.download = { :github => "https://github.com/CocoaPods/Molinillo" }
|
20
|
+
lib.namespace = "Molinillo"
|
21
|
+
lib.prefix = "Bundler"
|
22
|
+
lib.vendor_lib = "lib/bundler/vendor/molinillo"
|
23
|
+
end
|
24
|
+
```
|
26
25
|
|
27
26
|
## Development
|
28
27
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
28
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
29
|
+
`rake spec` to run the tests. You can also run `bin/console` for an interactive
|
30
|
+
prompt that will allow you to experiment.
|
30
31
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
32
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
33
|
+
To release a new version, update the version number in `version.rb`, and then
|
34
|
+
run `bundle exec rake release`, which will create a git tag for the version,
|
35
|
+
push git commits and tags, and push the `.gem` file to
|
36
|
+
[rubygems.org](https://rubygems.org).
|
32
37
|
|
33
38
|
## Contributing
|
34
39
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at
|
36
|
-
|
40
|
+
Bug reports and pull requests are welcome on GitHub at
|
41
|
+
https://github.com/segiddins/automatiek. This project is intended to be a safe,
|
42
|
+
welcoming space for collaboration, and contributors are expected to adhere to
|
43
|
+
the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
37
44
|
|
38
45
|
## License
|
39
46
|
|
40
47
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
-
|
data/bin/rake
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'rake' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('rake', 'rake')
|
data/bin/rspec
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# This file was generated by Bundler.
|
4
|
+
#
|
5
|
+
# The application 'rspec' is installed as part of a gem, and
|
6
|
+
# this file is here to facilitate running it.
|
7
|
+
#
|
8
|
+
|
9
|
+
require 'pathname'
|
10
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
+
Pathname.new(__FILE__).realpath)
|
12
|
+
|
13
|
+
require 'rubygems'
|
14
|
+
require 'bundler/setup'
|
15
|
+
|
16
|
+
load Gem.bin_path('rspec-core', 'rspec')
|
data/lib/automatiek/gem.rb
CHANGED
data/lib/automatiek/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: automatiek
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel E. Giddins
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -65,11 +65,14 @@ files:
|
|
65
65
|
- CHANGELOG.md
|
66
66
|
- CODE_OF_CONDUCT.md
|
67
67
|
- Gemfile
|
68
|
+
- Gemfile.lock
|
68
69
|
- LICENSE.txt
|
69
70
|
- README.md
|
70
71
|
- Rakefile
|
71
72
|
- automatiek.gemspec
|
72
73
|
- bin/console
|
74
|
+
- bin/rake
|
75
|
+
- bin/rspec
|
73
76
|
- bin/setup
|
74
77
|
- lib/automatiek.rb
|
75
78
|
- lib/automatiek/gem.rb
|
@@ -95,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
98
|
version: '0'
|
96
99
|
requirements: []
|
97
100
|
rubyforge_project:
|
98
|
-
rubygems_version: 2.
|
101
|
+
rubygems_version: 2.5.0
|
99
102
|
signing_key:
|
100
103
|
specification_version: 4
|
101
104
|
summary: Vendor your gem's dependencies in retro style.
|