This repository has been archived by the owner on Jan 4, 2019. It is now read-only.
-
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.
Merge pull request #3 from levups/fix_binary_acls
Fix chronopost_fuel_multiplier binary ACLs
- Loading branch information
Showing
2 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -1,12 +1,19 @@ | ||
Gem::Specification.new do |s| | ||
s.name = "chronopost_fuel_multiplier" | ||
s.version = "0.1.0" | ||
s.date = "2017-02-24" | ||
s.summary = "Retrieve current month's Chronopost's fuel surcharges" | ||
s.description = "A simple gem to ease/automate getting this data every month" | ||
s.authors = ["Bob Maerten", "Clément Joubert"] | ||
s.files = ["lib/chronopost_fuel_multiplier.rb", "lib/plain_http_client.rb"] | ||
s.email = "[email protected]" | ||
s.homepage = "https://rubygems.org/gems/chronopost_fuel_multiplier" | ||
s.license = "MIT" | ||
end | ||
s.name = 'chronopost_fuel_multiplier' | ||
s.version = '0.1.1' | ||
s.date = '2017-03-08' | ||
s.summary = 'Retrieve current month\'s Chronopost\'s fuel surcharges' | ||
s.description = 'A simple gem to ease/automate getting this data every month.' | ||
s.authors = ['Bob Maerten', 'Clément Joubert'] | ||
s.files = Dir['lib/*.rb'] + Dir['bin/*'] | ||
s.email = ['[email protected]', '[email protected]'] | ||
s.homepage = 'https://rubygems.org/gems/chronopost_fuel_multiplier' | ||
s.license = 'MIT' | ||
|
||
s.bindir = 'bin' | ||
s.executables = 'chronopost_fuel_multiplier' | ||
|
||
s.add_runtime_dependency 'addressable', '~> 2.5.0' | ||
s.add_runtime_dependency 'httparty', '~> 0.14.0' | ||
s.add_runtime_dependency 'nokogiri', '~> 1.7.0.1' | ||
end |