Skip to content
This repository was archived by the owner on Jul 24, 2020. It is now read-only.

Only ship the necessary libraries in the gem #144

Merged
merged 5 commits into from
Nov 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .expeditor/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ github:
minor_bump_labels:
- "Expeditor: Bump Minor Version"

changelog:
rollup_header: Changes not yet released to rubygems.org

# These actions are taken, in order they are specified, anytime a Pull Request is merged.
merge_actions:
- built_in:bump_version:
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
### Issues Resolved

[List any existing issues this PR resolves, or any Discourse or
StackOverflow discussion that's relevant]
StackOverflow discussions that are relevant]

### Check List

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Please refer to https://github.com/chef/chef/blob/master/CONTRIBUTING.md
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ gem "rspec", "~> 3.0"
gem "vcr"
gem "ansi"
gem "chefstyle"
gem "rake", "~> 11.0"
gem "rake"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Author:: Seth Chisamore (<schisamo@chef.io>)
Author:: Matt Ray (<matt@chef.io>)
Author:: JJ Asghar (<jj@chef.io>)
Author:: Rackspace Developers
Copyright:: Copyright (c) 2019-2016 Chef Software, Inc.
Copyright:: Copyright (c) 2019-2018 Chef Software, Inc.
License:: Apache License, Version 2.0

Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
12 changes: 5 additions & 7 deletions knife-rackspace.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,16 @@ require "knife-rackspace/version"
Gem::Specification.new do |s|
s.name = "knife-rackspace"
s.version = Knife::Rackspace::VERSION
s.has_rdoc = true
s.authors = ["Adam Jacob", "Seth Chisamore", "Matt Ray", "Rackspace Developers", "JJ Asghar"]
s.email = ["adam@chef.io", "schisamo@chef.io", "matt@chef.io", "jj@chef.io"]
s.homepage = "https://github.com/chef/knife-rackspace"
s.summary = "Rackspace Support for Chef's Knife Command"
s.homepage = "https://github.com/chef/knife-rackspace"
s.summary = "Rackspace Support for Chef's Knife Command"
s.description = s.summary
s.extra_rdoc_files = ["README.md", "LICENSE" ]
s.license = "Apache-2.0"

s.required_ruby_version = ">= 2.2.2"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.files = %w(LICENSE) + Dir.glob("lib/**/*")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.add_dependency "knife-windows"
s.add_dependency "fog-rackspace", ">= 0.1"
s.add_dependency "chef", ">= 12.0"
Expand Down