Sha256: 555c46f503c4ff10801bc2a3b05b82979aee59d1c946c10043f4c51bc9b01ac9

Contents?: true

Size: 575 Bytes

Versions: 3

Compression:

Stored size: 575 Bytes

Contents

require "bundler/gem_tasks"

require 'rspec/core/rake_task'
require File.expand_path('../lib/marklogic/version', __FILE__)

RSpec::Core::RakeTask.new

task :default => :spec

desc 'Builds the gem'
task :build do
  sh "gem build marklogic.gemspec"
end

desc 'Builds and installs the gem'
task :install => :build do
  sh "gem install marklogic-#{MarkLogic::Version}"
end

desc 'Tags version, pushes to remote, and pushes gem'
task :release => :build do
  sh "git tag v#{MarkLogic::Version}"
  sh "git push origin master"
  sh "gem push marklogic-#{MarkLogic::Version}.gem"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
marklogic-0.0.10 Rakefile
marklogic-0.0.9 Rakefile
marklogic-0.0.8 Rakefile