Sha256: c0886ad15d8de964d64a739b1d4998b300202f08d874180017bbfc7b3ce208c4

Contents?: true

Size: 1.8 KB

Versions: 7

Compression:

Stored size: 1.8 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "commonthread-rails"
    gem.summary = %Q{commonthread-rails is a collection of things that make rails development better for us}
    gem.description = %Q{commonthread-rails is a collection of things that make rails development better for us. It includes date formats, monkey patches to String, Array and NilClass to make things nicer. An Encrypter using blowfish. Also, some rails filters}
    gem.email = "hello@commonthread.com"
    gem.homepage = "http://github.com/commonthread/commonthread-rails"
    gem.authors = ["CommonThread"]
    gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
    gem.add_dependency "crypt", ">= 0"
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/test_*.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test => :check_dependencies

task :default => :test

require 'rake/rdoctask'
gem 'darkfish-rdoc'

Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "commonthread-rails #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
	rdoc.options += [
		'-f', 'darkfish'
	]
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
commonthread-rails-0.4.1 Rakefile
commonthread-rails-0.4.0 Rakefile
commonthread-rails-0.3.4 Rakefile
commonthread-rails-0.3.3 Rakefile
commonthread-rails-0.3.2 Rakefile
commonthread-rails-0.3.1 Rakefile
commonthread-rails-0.3.0 Rakefile