Sha256: 211f0134a9d7b8970d7fc73d85a206ccf35cc7064454c0dee029eb223da9d92e

Contents?: true

Size: 697 Bytes

Versions: 8

Compression:

Stored size: 697 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    = 'StaticRecord'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

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

load 'rails/tasks/statistics.rake'

Bundler::GemHelper.install_tasks

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

RSpec::Core::RakeTask.new(:spec) do |t|
  t.pattern = Dir.glob('../spec/**/*_spec.rb')
end
task default: :spec

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
static-record-1.2.1 Rakefile
static-record-1.2.0 Rakefile
static-record-1.1.0 Rakefile
adhonorem-1.0.1 Rakefile
adhonorem-1.0.0 Rakefile
static-record-1.0.1 Rakefile
static-record-1.0.0 Rakefile
static-record-1.0.0.pre.4 Rakefile