Sha256: 19fce73efcda774edbbbabc995b968924111fe8c02975a312308149fc8c2b5b7

Contents?: true

Size: 709 Bytes

Versions: 96

Compression:

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

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

Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end

task default: :test

Version data entries

96 entries across 96 versions & 1 rubygems

Version Path
payment_icons-1.7.49 Rakefile
payment_icons-1.7.48 Rakefile
payment_icons-1.7.47 Rakefile
payment_icons-1.7.45 Rakefile
payment_icons-1.7.44 Rakefile
payment_icons-1.7.43 Rakefile
payment_icons-1.7.42 Rakefile
payment_icons-1.7.39 Rakefile
payment_icons-1.7.38 Rakefile
payment_icons-1.7.37 Rakefile
payment_icons-1.7.36 Rakefile
payment_icons-1.7.35 Rakefile
payment_icons-1.7.34 Rakefile
payment_icons-1.7.33 Rakefile
payment_icons-1.7.32 Rakefile
payment_icons-1.7.31 Rakefile
payment_icons-1.7.30 Rakefile
payment_icons-1.7.29 Rakefile
payment_icons-1.7.28 Rakefile
payment_icons-1.7.27 Rakefile