automatiek 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 85c7d992b571870df9453e2c8a9444aa0fec8681
4
- data.tar.gz: 5d36600505418d98a807f349bf4d2b87e8ad9ec2
3
+ metadata.gz: e21ed2cbdb9c66802a18b6303c144273af578a2c
4
+ data.tar.gz: 0a40a33771c25ec30fffcbe0bc99ff2f5dc9ff46
5
5
  SHA512:
6
- metadata.gz: b5a2706070c4db18683eb796f0ae9b65c30d3a0fc44a88a78dcd8dd92934467014bb01591f5b2a3a6e134851334688c6b6d9d3d562012ec2f0ef0d37d6fb9ce1
7
- data.tar.gz: d9ca33572a13d878d1f2438a4c329beba441958eab3c538e9e3acbd4a509fb8ea89dd34b7a4a084a3e629aa3798c2f139d9ef83eae468f47c638ccbddf5898fb
6
+ metadata.gz: 6c17a729cef503bcde14e245b222b9ec6c268adf40266bdc0207fc339d4da3c2d23b93dfeaf01f0baba29e45a8171cedb3561bce62d87f5e3c5e4cdcd0547faa
7
+ data.tar.gz: e7ac11158c62ec4bc5aaa49c28adcf7bd38a22fde57aca294df64f7f9b014c0fccac68ff4a812a08c42c110907d2a1f0c774cfebe7a823750fdcbd27f8e59cf0
data/.gitignore CHANGED
@@ -1,6 +1,5 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
- /Gemfile.lock
4
3
  /_yardoc/
5
4
  /coverage/
6
5
  /doc/
@@ -2,3 +2,6 @@ language: ruby
2
2
  rvm:
3
3
  - 2.2.2
4
4
  before_install: gem install bundler -v 1.10.6
5
+ branches:
6
+ only:
7
+ - master
@@ -1,3 +1,11 @@
1
+ ## 0.1.1
2
+
3
+ ##### Bug Fixes
4
+
5
+ * Removed errant debug log statement.
6
+ [Samuel Giddins](https://github.com/segiddins)
7
+
8
+
1
9
  ## 0.1.0
2
10
 
3
11
  ##### Enhancements
@@ -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
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/automatiek`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
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
- TODO: Write usage instructions here
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 `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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 https://github.com/[USERNAME]/automatiek. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
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
-
@@ -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')
@@ -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')
@@ -20,7 +20,6 @@ module Automatiek
20
20
  @download = lambda do |version|
21
21
  Dir.chdir File.dirname(vendor_lib) do
22
22
  `curl -L #{github}/archive/#{version}.tar.gz | tar -xz`
23
- puts `ls`
24
23
  unless $?.success?
25
24
  raise "Downloading & untarring #{gem_name} (#{version}) failed"
26
25
  end
@@ -1,3 +1,3 @@
1
1
  module Automatiek
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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-08-08 00:00:00.000000000 Z
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.4.8
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.