Sha256: 478c7479d47680ac42561c49ea10cb07598d7d82e2940961771bd2e94d91393c

Contents?: true

Size: 446 Bytes

Versions: 4

Compression:

Stored size: 446 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"

require 'rake'
# We have different tasks for rspec-rails between rails 2 and 3
begin
  require 'rspec/core/rake_task'
rescue LoadError
  require 'spec/rake/spectask'
end

require 'appraisal'

desc "Run all examples"
if Module.const_defined? "RSpec"
  RSpec::Core::RakeTask.new(:spec) do |t|
    t.rspec_opts = %w[--color]
  end
else
  Spec::Rake::SpecTask.new(:spec)
end

task :default => [:spec]

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bigcartel-currency-locales-2.0.0 Rakefile
bigcartel-currency-locales-1.6.0 Rakefile
bigcartel-currency-locales-1.5.0 Rakefile
bigcartel-currency-locales-1.4.0 Rakefile