Sha256: d7e023d4b178b0c51894671b39931d79aacdc19dd0780c240bdfa00ddf4a3b27
Contents?: true
Size: 599 Bytes
Versions: 6
Compression:
Stored size: 599 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core/rake_task' 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 task :default => [:spec] require "gem_publisher" task :publish_gem do |t| gem = GemPublisher.publish_if_updated("vcloud-core.gemspec", :rubygems) puts "Published #{gem}" if gem end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
vcloud-core-0.0.6 | Rakefile |
vcloud-core-0.0.5 | Rakefile |
vcloud-core-0.0.4 | Rakefile |
vcloud-core-0.0.3 | Rakefile |
vcloud-core-0.0.2 | Rakefile |
vcloud-core-0.0.1 | Rakefile |