Sha256: c7be4de1476c30f3e01af4952eeb8cd966ce9be0b933b58f9a06b664dbe22bfc

Contents?: true

Size: 797 Bytes

Versions: 12

Compression:

Stored size: 797 Bytes

Contents

require 'rspec/core/rake_task'
require 'gem_publisher'

task :default => [:rubocop, :spec]

RSpec::Core::RakeTask.new(:spec) do |task|
  # Set a bogus Fog credential, otherwise it's possible for the unit
  # tests to accidentially run (and succeed against!) an actual 
  # environment, if Fog connection is not stubbed correctly.
  ENV['FOG_CREDENTIAL'] = 'random_nonsense_owiejfoweijf'
  task.pattern = FileList['spec/vcloud/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:integration) do |t|
  t.pattern = FileList['spec/integration/**/*_spec.rb']
end

task :publish_gem do
  gem = GemPublisher.publish_if_updated("vcloud-net_launcher.gemspec", :rubygems)
  puts "Published #{gem}" if gem
end

require 'rubocop/rake_task'
RuboCop::RakeTask.new(:rubocop) do |task|
  task.options = ['--lint']
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
vcloud-net_launcher-2.1.1 Rakefile
vcloud-net_launcher-2.1.0 Rakefile
vcloud-net_launcher-2.0.0 Rakefile
vcloud-net_launcher-1.0.1 Rakefile
vcloud-net_launcher-1.0.0 Rakefile
vcloud-net_launcher-0.8.0 Rakefile
vcloud-net_launcher-0.7.0 Rakefile
vcloud-net_launcher-0.6.0 Rakefile
vcloud-net_launcher-0.5.1 Rakefile
vcloud-net_launcher-0.5.0 Rakefile
vcloud-net_launcher-0.4.0 Rakefile
vcloud-net_launcher-0.3.0 Rakefile