-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from inspec/slim
Don't ship the readme.md in the gem artifact
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,15 +17,15 @@ Gem::Specification.new do |spec| | |
spec.authors = ["Chef InSpec Team"] | ||
spec.email = ["[email protected]"] | ||
spec.summary = "AWS API Transport for Train" | ||
spec.description = "Allows applictaions using Train to speak to AWS; handles authentication, cacheing, and SDK dependency management." | ||
spec.description = "Allows applications using Train to speak to AWS; handles authentication, cacheing, and SDK dependency management." | ||
spec.homepage = "https://github.com/inspec/train-aws" | ||
spec.license = "Apache-2.0" | ||
|
||
# Though complicated-looking, this is pretty standard for a gemspec. | ||
# It just filters what will actually be packaged in the gem (leaving | ||
# out tests, etc) | ||
spec.files = %w{ | ||
README.md train-aws.gemspec Gemfile | ||
train-aws.gemspec Gemfile | ||
} + Dir.glob( | ||
"lib/**/*", File::FNM_DOTMATCH | ||
).reject { |f| File.directory?(f) } | ||
|