mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
ee7c9e6a6e
- :underline - :highlight - :disable_indented_code_blocks Fix support for - :link_attributes - :filter_html separate Redcarpet extensions from renderer options, add specs for missing renderer options add specs for the missing/new redcarpet extensions, [ :lax_spacing, :underline, :highlight, :quote, :disable_indented_code_blocks, :footnotes ] fix link_attributes option for Redcarpet patch Tilt's reverse option aliases (they were there for RC1) adjust test data for Redcarpet toc_data to match the current way it renders in 3.0 revert tests that aren't in redcarpet 3.0.0 add a cucumber exempt tag for mri-1.8.x move redcarpet 3 specific extensions to a separate scenario filtered by the no18 tag
49 lines
1.4 KiB
Ruby
49 lines
1.4 KiB
Ruby
require 'rubygems' unless defined?(Gem)
|
|
require 'rake'
|
|
require 'yard'
|
|
|
|
require 'bundler/gem_tasks'
|
|
|
|
# Skip the releasing tag
|
|
class Bundler::GemHelper
|
|
def release_gem(*args)
|
|
p args
|
|
guard_clean
|
|
built_gem_path = build_gem
|
|
rubygem_push(built_gem_path)
|
|
end
|
|
end
|
|
|
|
require 'cucumber/rake/task'
|
|
|
|
Cucumber::Rake::Task.new do |t|
|
|
exempt_tags = ["--tags ~@wip"]
|
|
exempt_tags << "--tags ~@nojava" if RUBY_PLATFORM == "java"
|
|
exempt_tags << "--tags ~@no18" if RUBY_VERSION < "1.9"
|
|
exempt_tags << "--tags ~@encoding" unless Object.const_defined?(:Encoding)
|
|
exempt_tags << "--tags ~@travishatesme" if ENV["TRAVIS"] == "true"
|
|
|
|
t.cucumber_opts = "--color #{exempt_tags.join(" ")} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
|
end
|
|
|
|
Cucumber::Rake::Task.new(:cucumber_wip) do |t|
|
|
exempt_tags = ["--tags @wip"]
|
|
exempt_tags << "--tags ~@nojava" if RUBY_PLATFORM == "java"
|
|
exempt_tags << "--tags ~@encoding" unless Object.const_defined?(:Encoding)
|
|
|
|
t.cucumber_opts = "--color #{exempt_tags.join(" ")} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
|
|
end
|
|
|
|
require 'rspec/core/rake_task'
|
|
desc "Run RSpec"
|
|
RSpec::Core::RakeTask.new do |spec|
|
|
spec.pattern = 'spec/**/*_spec.rb'
|
|
spec.rspec_opts = ['--color', '--format nested']
|
|
end
|
|
|
|
desc "Run tests, both RSpec and Cucumber"
|
|
task :test => [:spec, :cucumber]
|
|
|
|
YARD::Rake::YardocTask.new
|
|
|
|
task :default => :test
|