Sha256: da2be2acd9989fdd32a018a639a885dad43dcdd8b27f6ad008f82a6225c54ee9

Contents?: true

Size: 577 Bytes

Versions: 6

Compression:

Stored size: 577 Bytes

Contents

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

APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)

load 'rails/tasks/engine.rake'
Bundler::GemHelper.install_tasks

Dir[File.join(File.dirname(__FILE__), 'lib/tasks/**/*.rake')].each do |f|
  load f
end

require 'rspec/core'
require 'rspec/core/rake_task'

desc 'Run all specs.'
RSpec::Core::RakeTask.new(:spec)

require 'rubocop/rake_task'
RuboCop::RakeTask.new(:rubocop)

task default: [:rubocop, :spec]

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
grape-swagger-rails-0.4.0 Rakefile
grape-swagger-rails-0.3.1 Rakefile
grape-swagger-rails-0.3.0 Rakefile
grape-swagger-rails-0.2.2 Rakefile
grape-swagger-rails-0.2.1 Rakefile
grape-swagger-rails-0.2.0 Rakefile