Skip to content

Commit

Permalink
Solve dependency warnings. Improve doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
phlegx committed Jun 17, 2016
1 parent f09807b commit 7abfbd7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions lib/money/bank/currencylayer_bank.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,24 @@ class CurrencylayerBank < Money::Bank::VariableExchange
# Use https to fetch rates from CurrencylayerBank
# CurrencylayerBank only allows http as connection
# for the free plan users.
#
# @param value [Boolean] true for secure connection
#
# @return [Boolean] chosen secure connection
attr_accessor :secure_connection

# API must have a valid access_key
#
# @param value [String] API access key
#
# @return [String] chosen API access key
attr_accessor :access_key

# Cache accessor, can be a String or a Proc
#
# @param value [String,Pathname,Proc] cache system
#
# @return [String,Pathname,Proc] chosen cache system
attr_accessor :cache

# Parsed CurrencylayerBank result as Hash
Expand Down
6 changes: 3 additions & 3 deletions money-currencylayer-bank.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Gem::Specification.new do |s|
s.add_development_dependency 'minitest', '~> 5.8'
s.add_development_dependency 'minitest-line', '~> 0.6'
s.add_development_dependency 'rr', '~> 1.1'
s.add_development_dependency 'rake'
s.add_development_dependency 'timecop'
s.add_development_dependency 'rake', '~>10.4'
s.add_development_dependency 'timecop', '~>0.8.1'
s.add_development_dependency 'rubocop', '~>0.37.2'
s.add_development_dependency 'inch'
s.add_development_dependency 'inch', '~>0.7.1'
end

0 comments on commit 7abfbd7

Please sign in to comment.