Sha256: a7a7b9df9275cadf06aad797ea9fb574138ac2f7386229600f6997c03fb3e94d

Contents?: true

Size: 768 Bytes

Versions: 19

Compression:

Stored size: 768 Bytes

Contents

# encoding: utf-8
#
# Copyright October 2014, Jesse Doyle. All rights reserved.
#
# This is free software. Please see the LICENSE and COPYING files for details.

require 'bundler'
Bundler.setup

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

task :default => [:spec, :rubocop]

desc 'Run all rspec files'
RSpec::Core::RakeTask.new('spec') do |c|
  c.rspec_opts = '-t ~unresolved'
end

desc 'Generate the legend documents for all icon fonts.'
task :legend do
  example = File.join(File.dirname(__FILE__), 'examples', '*.rb')
  files = Dir[example]
  files.reject! { |f| File.basename(f) == 'example_helper.rb' }
  files.each do |file|
    puts "Generating from: #{file}"
    require file
  end
  puts 'All Done!'
end

RuboCop::RakeTask.new

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
prawn-icon-2.5.0 Rakefile
prawn-icon-2.4.0 Rakefile
prawn-icon-2.3.0 Rakefile
prawn-icon-2.2.0 Rakefile
prawn-icon-2.1.0 Rakefile
prawn-icon-2.0.0 Rakefile
prawn-icon-1.4.0 Rakefile
prawn-icon-1.3.0 Rakefile
prawn-icon-1.2.0 Rakefile
prawn-icon-1.1.1 Rakefile
prawn-icon-1.1.0 Rakefile
prawn-icon-1.0.0 Rakefile
prawn-icon-0.7.1 Rakefile
prawn-icon-0.7.0 Rakefile
prawn-icon-0.6.4 Rakefile
prawn-icon-0.6.3 Rakefile
prawn-icon-0.6.2 Rakefile
prawn-icon-0.6.1 Rakefile
prawn-icon-0.6.0 Rakefile