Sha256: a26e241eaba18067ad7b3f50ed5f47cd5ca4a469c54265781d8fbbe7ca64e211

Contents?: true

Size: 487 Bytes

Versions: 15

Compression:

Stored size: 487 Bytes

Contents

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

require 'rake/testtask'

Rake::TestTask.new do |t|
  t.libs << 'lib/cineworld_uk'
  t.test_files = FileList[
    'test/lib/cineworld_uk/*_test.rb',
    'test/lib/cineworld_uk/internal/*_test.rb'
  ]
  t.verbose = true
end

# http://erniemiller.org/2014/02/05/7-lines-every-gems-rakefile-should-have/
task :console do
  require 'irb'
  require 'irb/completion'
  require 'cineworld_uk'
  ARGV.clear
  IRB.start
end

task :default => :test

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
cineworld_uk-2.1.6 Rakefile
cineworld_uk-2.1.5 Rakefile
cineworld_uk-2.1.4 Rakefile
cineworld_uk-2.1.3 Rakefile
cineworld_uk-2.1.2 Rakefile
cineworld_uk-2.1.1 Rakefile
cineworld_uk-2.1.0 Rakefile
cineworld_uk-2.0.5 Rakefile
cineworld_uk-2.0.4 Rakefile
cineworld_uk-2.0.3 Rakefile
cineworld_uk-2.0.2 Rakefile
cineworld_uk-2.0.1 Rakefile
cineworld_uk-2.0.0 Rakefile
cineworld_uk-1.0.5 Rakefile
cineworld_uk-1.0.4 Rakefile