Sha256: 1fa17f85ddfb190d0469aba2ccd329a1f20f9be75968ca3e5db6d90b2f769126

Contents?: true

Size: 1.46 KB

Versions: 21

Compression:

Stored size: 1.46 KB

Contents

#
# <copyright
# notice="lm-source-program"
# pids="5725-P60"
# years="2013,2014"
# crc="3568777996" >
# Licensed Materials - Property of IBM
#
# 5725-P60
#
# (C) Copyright IBM Corp. 2014
#
# US Government Users Restricted Rights - Use, duplication or
# disclosure restricted by GSA ADP Schedule Contract with
# IBM Corp.
# </copyright>

require 'bundler'
require 'bundler/gem_tasks'
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 'rspec/core'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
RSpec::Core::RakeTask.new(:spec)

desc 'Run RuboCop on the lib/mqlight directory'
RuboCop::RakeTask.new(:rubocop) do |task|
  task.patterns = ['mqlight.gemspec', 'lib/mqlight.rb', 'lib/mqlight/*.rb',
                   'Rakefile', 'spec/spec_helper.rb', 'spec/mqlight/*.rb']
  # don't abort rake on failure
  task.fail_on_error = false
end

require 'rake/extensiontask'
Rake::ExtensionTask.new('cproton')

require 'rubygems'
require 'rubygems/package_task'
gemspec = Gem::Specification.load('mqlight.gemspec')
Gem::PackageTask.new(gemspec) do |pkg|
  pkg.package_dir = ENV['BPWD'] || 'build'
  begin
    Dir.mkdir(pkg.package_dir)
  rescue
    nil
  end
end

task default: [:spec]
task test: [:spec]

# TODO: enable RuboCop by default once violations are fixed
# task default: [:spec, :rubocop]
# task test: [:spec, :rubocop]

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
mqlight-1.0.2018091900-x86_64-linux Rakefile
mqlight-1.0.2018091900-x86_64-darwin-17 Rakefile
mqlight-1.0.2018091900-x86_64-darwin-16 Rakefile
mqlight-1.0.2017051700-x86_64-linux Rakefile
mqlight-1.0.2017051700-x86_64-darwin-16 Rakefile
mqlight-1.0.2017051700-x86_64-darwin-15 Rakefile
mqlight-1.0.2017040500-x86_64-darwin-16 Rakefile
mqlight-1.0.2017040500-x86_64-darwin-15 Rakefile
mqlight-1.0.2017040500-x86_64-linux Rakefile
mqlight-1.0.2016020812-x86_64-darwin-16 Rakefile
mqlight-1.0.2016020812-x86_64-darwin-15 Rakefile
mqlight-1.0.2015020300.beta-x86_64-darwin-15 Rakefile
mqlight-1.0.2016020812-x86_64-linux Rakefile
mqlight-1.0.2016020809-x86_64-linux Rakefile
mqlight-1.0.2016020812-x86_64-darwin-13 Rakefile
mqlight-1.0.2015120815-x86_64-linux Rakefile
mqlight-1.0.2015120816-x86_64-darwin-13 Rakefile
mqlight-1.0.2015020300.beta-x86_64-linux Rakefile
mqlight-1.0.2015020300.beta-x86_64-darwin-13 Rakefile
mqlight-1.0.2014120914.beta-x86_64-darwin-13 Rakefile