berksfiler 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b5fc16d987ad8571285a55ce408be5c849f1d7f8
4
- data.tar.gz: 775080806b8f17f710de8ea60955eb6a3e0f6ed5
3
+ metadata.gz: 68fcffa72ba55c03391ba385fcd96cf206005575
4
+ data.tar.gz: 8386dffe63a6ee156b0c5cb2b27978d5ec3940f1
5
5
  SHA512:
6
- metadata.gz: ba41c26dcd94480ee7ecbd50a129ff0305fe2d838298933e2bcb8d1150f771e7a74e771cafec8df86bf920ef91608b16a7213e52f0c41a6a03725f5179b3b30c
7
- data.tar.gz: 6665555a9551a940a623d3336bfaa7964cf04ad76234f15d7d057d622022658c8a3f8fe603be9e46ada49461485049b7dc66b992cb67de4bb7ff16920ea1b38a
6
+ metadata.gz: db2e60c2c04dbacf4d7d86bd40132bdbb7a14adc9c52df98726df3d8e6c584d18df8bb5b9c8a001701d9bc891371ce4e9e615ff195d618f1a19b9ac8fbeb99a9
7
+ data.tar.gz: c9e8f0486b6f39c655457a16685dcba40d09d3867104699cd88091fec55b06286519bbf7b381473d5a77ab171140fdcfb3320552199622e195ea1a08328075f3
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Berksfiler
2
2
 
3
3
  [![Build Status](https://travis-ci.org/mgreensmith/berksfiler.svg)](https://travis-ci.org/mgreensmith/berksfiler)
4
+ [![Gem Version](https://badge.fury.io/rb/berksfiler.png)](http://badge.fury.io/rb/berksfiler)
4
5
 
5
6
  Berksfiler programatically generates [Berkshelf](http://berkshelf.com/) Berksfiles for your [Chef](https://www.chef.io/) cookbooks.
6
7
 
@@ -12,7 +13,7 @@ Berksfiler can iterate through a `/cookbooks` directory and generate a Berksfile
12
13
 
13
14
  It runs `knife deps` to determine the full dependency tree for a cookbook. It then generates a Berksfile that includes all local cookbook dependencies, as well as any cookbooks with manually-specified options or sources.
14
15
 
15
- You can configure Berksfiler to include specific cookbook dependencies in every Berksfile. This is useful for cookbook dependencies that are used for local development (eg. `chef-solo-seach`) but are not appropriate to include in the metadata of your cookbooks.
16
+ You can configure Berksfiler to include specific cookbook dependencies in every Berksfile. This is useful for cookbook dependencies that are used for local development (eg. `chef-solo-search`) but are not appropriate to include in the metadata of your cookbooks.
16
17
 
17
18
  ## Requirements
18
19
 
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = spec.summary
13
13
  spec.homepage = ''
14
14
  spec.license = 'MIT'
15
+ spec.homepage = "http://github.com/mgreensmith/berksfiler"
15
16
 
16
17
  spec.files = `git ls-files -z`.split("\x0")
17
18
  spec.executables = spec.name
@@ -1,4 +1,4 @@
1
1
  # Berksfiler programmatically generates Berksfiles with correct dependencies
2
2
  module Berksfiler
3
- VERSION = '0.0.1'
3
+ VERSION = '0.1.0'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: berksfiler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Greensmith
@@ -86,7 +86,7 @@ files:
86
86
  - lib/berksfiler/formatter.rb
87
87
  - lib/berksfiler/generator.rb
88
88
  - lib/berksfiler/version.rb
89
- homepage: ''
89
+ homepage: http://github.com/mgreensmith/berksfiler
90
90
  licenses:
91
91
  - MIT
92
92
  metadata: {}