Sha256: f86b55cca5d4852d55336b4a1a5cde913d4a22513c2d7aa32d4bbcf8db6f29b5

Contents?: true

Size: 1.13 KB

Versions: 2

Compression:

Stored size: 1.13 KB

Contents

# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.

load 'tasks/setup.rb'

ensure_in_path 'lib'
require 'acts_as_markup'

task :default => 'test:run'

PROJ.name = 'acts_as_markup'
PROJ.authors = 'Brian Landau'
PROJ.email = 'brian.landau@viget.com'
PROJ.url = 'http://viget.rubyforge.com/acts_as_markup'
PROJ.description = "Represent ActiveRecord Markdown, Textile, Wiki text, RDoc columns as Markdown, Textile Wikitext, RDoc objects using various external libraries to convert to HTML."
PROJ.rubyforge.name = 'viget'
PROJ.version = ActsAsMarkup::VERSION
PROJ.rdoc.include = %w(^lib/ LICENSE CHANGELOG README\.rdoc)
PROJ.rdoc.remote_dir = 'acts_as_markup'
PROJ.test.files = FileList['test/**/*_test.rb']
PROJ.rcov.opts = ['--no-html', '-T', '--sort coverage',
                  '-x "\/Library\/Ruby\/"', 
                  '-x "\/opt\/local\/lib/ruby"',
                  '-x "\/System\/Library\/"']
PROJ.rcov.pattern = 'test/**/*_test.rb'

%W(activesupport activerecord rdiscount RedCloth wikitext).each  do |gem|
  depend_on gem
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
vigetlabs-acts_as_markup-1.2.1 Rakefile
acts_as_markup-1.2.1 Rakefile