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.26 Rakefile
payment_icons-1.7.25 Rakefile
payment_icons-1.7.24 Rakefile
payment_icons-1.7.23 Rakefile
payment_icons-1.7.22 Rakefile
payment_icons-1.7.21 Rakefile
payment_icons-1.7.20 Rakefile
payment_icons-1.7.19 Rakefile
payment_icons-1.7.18 Rakefile
payment_icons-1.7.17 Rakefile
payment_icons-1.7.16 Rakefile
payment_icons-1.7.15 Rakefile
payment_icons-1.7.14 Rakefile
payment_icons-1.7.13 Rakefile
payment_icons-1.7.12 Rakefile
payment_icons-1.7.11 Rakefile
payment_icons-1.7.10 Rakefile
payment_icons-1.7.9 Rakefile
payment_icons-1.7.8 Rakefile
payment_icons-1.7.7 Rakefile