Sha256: 45c55e31a21ca4a8597431bc602c40a71b43218e219730fe3c0ecc2422c90661

Contents?: true

Size: 564 Bytes

Versions: 66

Compression:

Stored size: 564 Bytes

Contents

require 'rubygems'

begin
  require 'bundler'
rescue LoadError => e
  warn e.message
  warn 'Run `gem install bundler` to install Bundler.'
  exit -1
end

begin
  Bundler.setup(:development)
rescue Bundler::BundlerError => e
  warn e.message
  warn 'Run `bundle install` to install missing gems.'
  exit e.status_code
end

require 'rake'

require 'rubygems/tasks'
Gem::Tasks.new

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new

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

task rspec_rubocop: %w(spec rubocop)

task test: :spec
task default: :spec

Version data entries

66 entries across 66 versions & 4 rubygems

Version Path
contentful-2.5.0 Rakefile
contentful-2.4.0 Rakefile
contentful-2.3.0 Rakefile
contentful-2.2.2 Rakefile
contentful-2.2.1 Rakefile
contentful-2.2.0 Rakefile
contentful-2.1.3 Rakefile
contentful-2.1.2 Rakefile
contentful-2.1.1 Rakefile
contentful-2.1.0 Rakefile
contentful-2.0.3 Rakefile
contentful-2.0.2 Rakefile
contentful-2.0.1 Rakefile
contentful-2.0.0 Rakefile
contentful-1.2.2 Rakefile
contentful-1.2.1 Rakefile
contentful-1.2.0 Rakefile
contentful-1.1.1 Rakefile
contentful-1.1.0 Rakefile
contentful-1.0.2 Rakefile