Sha256: f405fee2c7875a1d66048fa45daa5653b56421163e1e4076a3e231da9b518562

Contents?: true

Size: 1004 Bytes

Versions: 11

Compression:

Stored size: 1004 Bytes

Contents

# Setup bundler to avoid having to run bundle exec all the time.
require "rubygems"
require "bundler/setup"

require "rails/version"
APP_RAKEFILE = File.expand_path("../rjmc/Rakefile", __FILE__)
load "rails/tasks/engine.rake"

require "rake/testtask"
require_relative "lib/rocket_job_mission_control/version"

task :gem do
  system "gem build rocketjob_mission_control.gemspec"
end

task publish: :gem do
  system "git tag -a v#{RocketJobMissionControl::VERSION} -m 'Tagging #{RocketJobMissionControl::VERSION}'"
  system "git push --tags"
  system "gem push rocketjob_mission_control-#{RocketJobMissionControl::VERSION}.gem"
  system "rm rocketjob_mission_control-#{RocketJobMissionControl::VERSION}.gem"
end

Rake::TestTask.new(:test) do |t|
  t.pattern = "test/**/*_test.rb"
  t.verbose = true
  t.warning = false
end

# By default run tests against all appraisals
if !ENV["APPRAISAL_INITIALIZED"] && !ENV["TRAVIS"]
  require "appraisal"
  task default: "app:appraisal"
else
  task default: :test
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rocketjob_mission_control-6.1.0 Rakefile
rocketjob_mission_control-6.0.7 Rakefile
rocketjob_mission_control-6.0.6 Rakefile
rocketjob_mission_control-6.0.5 Rakefile
rocketjob_mission_control-6.0.4 Rakefile
rocketjob_mission_control-6.0.3 Rakefile
rocketjob_mission_control-6.0.2 Rakefile
rocketjob_mission_control-6.0.1 Rakefile
rocketjob_mission_control-6.0.0 Rakefile
rocketjob_mission_control-6.0.0.beta Rakefile
rocketjob_mission_control-5.0.1 Rakefile