Sha256: 29098aefedf886f4d394913a89037e3d8b323857ea92adf31a562a127ce8a0db
Contents?: true
Size: 833 Bytes
Versions: 6
Compression:
Stored size: 833 Bytes
Contents
# encoding: utf-8 require 'bundler/setup' require 'appraisal' require 'yard' require 'rspec/core/rake_task' Bundler::GemHelper.install_tasks desc 'Default: run unit specs.' if !ENV["APPRAISAL_INITIALIZED"] && !ENV["TRAVIS"] task :default => :appraisal else task :default => :spec end desc 'Generate documentation for the formtastic plugin.' YARD::Rake::YardocTask.new(:yard) do |t| end task doc: :yard desc 'Test the formtastic plugin.' RSpec::Core::RakeTask.new('spec') do |t| t.pattern = FileList['spec/**/*_spec.rb'] end desc 'Test the formtastic inputs.' RSpec::Core::RakeTask.new('spec:inputs') do |t| t.pattern = FileList['spec/inputs/*_spec.rb'] end desc 'Test the formtastic plugin with specdoc formatting and colors' RSpec::Core::RakeTask.new('specdoc') do |t| t.pattern = FileList['spec/**/*_spec.rb'] end
Version data entries
6 entries across 6 versions & 2 rubygems