Sha256: 6740fb2c9f3d13d2adc7927e5999796fbc5ea51c1267e5e6b5e9dd8bc06746b5

Contents?: true

Size: 1.3 KB

Versions: 9

Compression:

Stored size: 1.3 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "exchange"
  gem.homepage = "http://github.com/beatrichartz/exchange"
  gem.license = "MIT"
  gem.summary = %Q{Simple Exchange Rate operations for your ruby app}
  gem.description = %Q{The Exchange Gem gives you easy access to currency functions directly on your Numbers. Imagine a conversion as easy as 
    1.eur.to_usd
  or even better 
    1.eur.to_usd(:at => Time.now - 84600)
  which gets you an exchange at the rates of yesterday.}
  gem.email = "exchange_gem@gmail.com"
  gem.authors = ["Beat Richartz"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

task :default => :test

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

require 'yard'
YARD::Rake::YardocTask.new

# RSpec::Core::RakeTask.new(:rcov) do |spec|
#   spec.pattern = 'spec/**/*_spec.rb'
#   spec.rcov = true
# end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
exchange-0.9.0 Rakefile
exchange-0.8.0 Rakefile
exchange-0.6.0 Rakefile
exchange-0.5.1 Rakefile
exchange-0.4.4 Rakefile
exchange-0.4.3 Rakefile
exchange-0.4.1 Rakefile
exchange-0.3.0 Rakefile
exchange-0.2.6 Rakefile