Sha256: a592d4d49bea7636c94b9a33732b6bc77be9ade4b871e4cc229a35657fda58e7

Contents?: true

Size: 1.75 KB

Versions: 24

Compression:

Stored size: 1.75 KB

Contents

#!/usr/bin/env rake
# encoding: utf-8

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end


require 'bundler/gem_helper'
Bundler::GemHelper.install_tasks(:name => 'no_notifier_needed')

#require 'metric_fu'
#MetricFu::Configuration.run do |config|
#  config.rcov[:rcov_opts] << "-Itest" # Needed to find test_helper
#end

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'NoNotifierNeeded'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Bundler::GemHelper.install_tasks

require 'rake/testtask'

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

task :default => :test

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "no_notifier_needed"
  gem.homepage = "http://github.com/Blue-Dog-Archolite/no_notifier_needed"
  gem.license = "MIT"
  gem.summary = %Q{A Gem used to remove ActionMailer::Base class and and provide Templates}
  gem.description = %Q{A work in progress: Replace ActionMailer::Base class redundency. Temlating using haml or erb.}
  gem.email = "Blue.Dog.Archolite@gmail.com"
  gem.authors = ["Robert R. Meyer"]
  # dependencies defined in Gemfile
end

Jeweler::RubygemsDotOrgTasks.new

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

task :default => :test
#!/usr/bin/env rake

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
no_notifier_needed-2.4.5 Rakefile
no_notifier_needed-2.4.4 Rakefile
no_notifier_needed-2.4.3 Rakefile
no_notifier_needed-2.4.2 Rakefile
no_notifier_needed-2.4.1 Rakefile
no_notifier_needed-2.4.0 Rakefile
no_notifier_needed-2.3.8 Rakefile
no_notifier_needed-2.3.7 Rakefile
no_notifier_needed-2.3.6 Rakefile
no_notifier_needed-2.3.5 Rakefile
no_notifier_needed-2.3.4 Rakefile
no_notifier_needed-2.3.3 Rakefile
no_notifier_needed-2.3.2 Rakefile
no_notifier_needed-2.3.1 Rakefile
no_notifier_needed-2.3.0 Rakefile
no_notifier_needed-2.2.4 Rakefile
no_notifier_needed-2.2.3 Rakefile
no_notifier_needed-2.2.2 Rakefile
no_notifier_needed-2.2.1 Rakefile
no_notifier_needed-2.2.0 Rakefile