Sha256: 006023e885dc9ef544e6b5ec1e43fb5c38a0ab6d9902ca3f00ca773c567e7c97

Contents?: true

Size: 481 Bytes

Versions: 13

Compression:

Stored size: 481 Bytes

Contents

# uncomment these lines when this library is gemified
# require 'bundler/gem_tasks'
# Bundler::GemHelper.install_tasks

desc "Run all specs"
task :default do
  exec 'rspec spec'
end

namespace :spec do
  namespace :api do

    task :dev do
      exec 'API_ENV=development bundle exec rspec examples'
    end

    task :qa do
      exec 'API_ENV=qa bundle exec rspec examples'
    end

    task :prod do
      exec 'API_ENV=production bundle exec rspec examples'
    end

  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
vzaar_api-2.0.2 Rakefile
vzaar_api-2.0.1 Rakefile
vzaar_api-2.0.0 Rakefile
vzaar-1.6.2 Rakefile
vzaar-1.6.1 Rakefile
vzaar-1.6.0 Rakefile
vzaar-1.5.3 Rakefile
vzaar-1.5.2 Rakefile
vzaar-1.5.1 Rakefile
vzaar-1.5.0 Rakefile
vzaar-1.4.4 Rakefile
vzaar-1.4.1 Rakefile
vzaar-1.3.1 Rakefile