File: Rakefile

package info (click to toggle)
ruby-fog-rackspace 0.1.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,652 kB
  • sloc: ruby: 27,055; sh: 4; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 174 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
require "bundler/gem_tasks"

task :default => :test

mock = ENV['FOG_MOCK'] || 'true'
task :test do
  sh("export FOG_MOCK=#{mock} && bundle exec shindont")
  sh("rspec")
end