Sha256: 95792f93209c1dcf861f5ba438dc84f3eaeaf5116d0b2f50ef132dc8cad50efa

Contents?: true

Size: 1.09 KB

Versions: 4

Compression:

Stored size: 1.09 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 = "bitbank"
  gem.homepage = "http://github.com/zapnap/bitbank"
  gem.license = "MIT"
  gem.summary = %Q{Easy to use Ruby interface to the Bitcoind JSON-RPC API}
  gem.description = %Q{Easy to use Ruby interface to the Bitcoind JSON-RPC API}
  gem.email = "nap@zerosum.org"
  gem.authors = ["Nick Plante"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

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

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

task :default => :spec

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bitbank-0.1.2 Rakefile
bitbank-0.1.1 Rakefile
bitbank-0.1.0 Rakefile
bitbank-0.0.1 Rakefile