Sha256: 6af41b696eb6374c3c9116094716d0751f4cd0fe72a02940c314e2394e4de532
Contents?: true
Size: 1011 Bytes
Versions: 1
Compression:
Stored size: 1011 Bytes
Contents
begin require File.expand_path('../.bundle/environment', __FILE__) rescue LoadError require "rubygems" require "bundler" Bundler.setup end require 'spec/rake/spectask' # # The rspec tasks # task :default => :spec desc "Run all specs" Spec::Rake::SpecTask.new('spec') do |t| t.spec_files = FileList['spec/**/*.rb'] t.spec_opts = ['-cfs'] end begin require 'jeweler' Jeweler::Tasks.new do |gemspec| gemspec.name = "jackb" gemspec.summary = "Is your content in HTML or Markdown ?" gemspec.description = "Takes some content and parses it depending of the format your specify (HTML or Markdown)" gemspec.email = "42@dmathieu.com" gemspec.homepage = "http://github.com/dmathieu/jackb" gemspec.authors = ["Damien MATHIEU"] gemspec.add_dependency('rdiscount', '>= 1.6.3.2') gemspec.add_dependency('open4', '>= 1.0.1') gemspec.add_dependency('albino', '>= 1.0') end rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jackb-0.0.5 | Rakefile |