-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7687802
commit 4f17cc1
Showing
2 changed files
with
8 additions
and
6 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
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 |
---|---|---|
|
@@ -6,15 +6,15 @@ Gem::Specification.new do |spec| | |
spec.summary = 'Faraday middleware for parsing CSV' | ||
spec.description = 'Faraday middleware for parsing CSV using tempfile to include encoding' | ||
spec.homepage = 'http://benslaughter.github.io/faraday_middleware-parse_csv/' | ||
spec.version = '0.1.0' | ||
spec.version = '1.0.0' | ||
spec.version = "#{spec.version}-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS'] | ||
spec.date = '2014-11-05' | ||
spec.date = '2018-02-19' | ||
spec.license = 'MIT' | ||
|
||
spec.author = 'Ben Slaughter' | ||
spec.email = '[email protected]' | ||
|
||
spec.files = ['README.md', 'LICENSE'] | ||
spec.files = %w(README.md LICENSE) | ||
spec.files += Dir.glob('lib/**/*.rb') | ||
spec.files += Dir.glob('spec/**/*') | ||
spec.test_files = Dir.glob('spec/**/*') | ||
|