Sha256: 1a03b9efcea882edc5e2d3e03ccfe7448b7bf33e6d024853165c72d407bce955

Contents?: true

Size: 1.41 KB

Versions: 21

Compression:

Stored size: 1.41 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://guides.rubygems.org/specification-reference/ for more options
  gem.name = "riak-record"
  gem.homepage = "http://github.com/rgraff/riak-record"
  gem.license = "MIT"
  gem.summary = "A wrapper around ruby-client."
  gem.description = "RiakRecord is a thin and immature wrapper around riak-ruby-client. It creates a bucket for
  each class, provides a simple finder, and creates attribute reader."
  gem.email = "robert_graff@yahoo.com"
  gem.authors = ["Robert Graff"]
  # 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

desc "Code coverage detail"
task :simplecov do
  ENV['COVERAGE'] = "true"
  Rake::Task['spec'].execute
end

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "riak-record #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
riak-record-0.8.2 Rakefile
riak-record-0.8.1 Rakefile
riak-record-0.8.0 Rakefile
riak-record-0.7.2 Rakefile
riak-record-0.7.1 Rakefile
riak-record-0.7.0 Rakefile
riak-record-0.6.2 Rakefile
riak-record-0.6.1 Rakefile
riak-record-0.6.0 Rakefile
riak-record-0.5.1 Rakefile
riak-record-0.5.0 Rakefile
riak-record-0.4.1 Rakefile
riak-record-0.4.0 Rakefile
riak-record-0.3.1 Rakefile
riak-record-0.3.0 Rakefile
riak-record-0.2.0 Rakefile
riak-record-0.1.0 Rakefile
riak-record-0.0.4 Rakefile
riak-record-0.0.3 Rakefile
riak-record-0.0.2 Rakefile