Sha256: 333646591c9ea9617c5537097a5e0937199a31c88753dd736c4dbfb79479038b

Contents?: true

Size: 767 Bytes

Versions: 27

Compression:

Stored size: 767 Bytes

Contents

# encoding: utf-8

require 'rubygems'

begin
  require 'bundler'
rescue LoadError => e
  warn e.message
  warn "Run `gem install bundler` to install Bundler."
  exit(-1)
end

begin
  Bundler.setup(:development)
rescue Bundler::BundlerError => e
  warn e.message
  warn "Run `bundle install` to install missing gems."
  exit e.status_code
end

require 'rake'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new

task test: :spec
task default: :spec

# run bundle in parent dir to update Gemfile.lock
task :release do
  Bundler.with_clean_env do
    `bundle --gemfile=../Gemfile`
  end
  `git add ../Gemfile.lock && git commit -m 'update roqua-core-api in Gemfile.lock'`
end

require "bundler/gem_tasks"

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

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
roqua-core-api-0.4.0 Rakefile
roqua-core-api-0.3.1 Rakefile
roqua-core-api-0.3.0 Rakefile
roqua-core-api-0.2.4 Rakefile
roqua-core-api-0.2.3 Rakefile
roqua-core-api-0.2.2 Rakefile
roqua-core-api-0.2.1 Rakefile
roqua-core-api-0.2.0 Rakefile
roqua-core-api-0.1.1 Rakefile
roqua-core-api-0.1.0 Rakefile
roqua-core-api-0.0.39 Rakefile
roqua-core-api-0.0.38 Rakefile
roqua-core-api-0.0.37 Rakefile
roqua-core-api-0.0.36 Rakefile
roqua-core-api-0.0.35 Rakefile
roqua-core-api-0.0.32 Rakefile
roqua-core-api-0.0.31 Rakefile
roqua-core-api-0.0.30 Rakefile
roqua-core-api-0.0.29 Rakefile
roqua-core-api-0.0.28 Rakefile