public
Description: Represent ActiveRecord Markdown, Textile, Wiki text, or RDoc columns as Markdown, Textile, Wikitext or RDoc objects using various external libraries to convert to HTML.
Homepage: http://vigetlabs.github.com/acts_as_markup/
Clone URL: git://github.com/vigetlabs/acts_as_markup.git
acts_as_markup / Rakefile
100644 34 lines (28 sloc) 1.311 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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.rcov.opts = ['--no-html', '-T', '--sort coverage',
                  '-x "\/Library\/Ruby\/"',
                  '-x "\/opt\/local\/lib/ruby"',
                  '-x "\/System\/Library\/"']
PROJ.rcov.pattern = 'test/**/*_test.rb'
 
PROJ.gem.development_dependencies << ['thoughtbot-shoulda', '~> 2.0']
PROJ.gem.development_dependencies << ['bones', '~> 2.5']
depend_on 'activesupport', '~> 2.3.2'
depend_on 'activerecord', '~> 2.3.2'
depend_on 'rdiscount', '~> 1.3'
depend_on 'wikitext', '~> 1.5'
depend_on 'RedCloth', '~> 4.2'