Sha256: 676f4158136a907245aa7def5af1ecd35005531d77663fb10832ed80d04c664c

Contents?: true

Size: 572 Bytes

Versions: 11

Compression:

Stored size: 572 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'StripeLocal'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'



Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'


task test: :spec

task default: :test

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
stripe_local-0.2.5 Rakefile
stripe_local-0.2.4 Rakefile
stripe_local-0.2.3 Rakefile
stripe_local-0.2.2 Rakefile
stripe_local-0.2.1 Rakefile
stripe_local-0.2.0 Rakefile
stripe_local-0.1.3 Rakefile
stripe_local-0.1.2 Rakefile
stripe_local-0.1.1 Rakefile
stripe_local-0.1.0 Rakefile
stripe_local-0.0.2 Rakefile