Sha256: e7938c586aa637e2092885e8eafa1a7bdaee59e6bc2e5c2a3119a38627893b8b
Contents?: true
Size: 1.37 KB
Versions: 13
Compression:
Stored size: 1.37 KB
Contents
require 'metric_fu' if Object.const_defined? 'MetricFu' require 'rake' require 'rspec/core/rake_task' require 'rubygems' require File.expand_path('../config/application', __FILE__) CampfireLogic::Application.load_tasks Rspec::Core::RakeTask.new begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = 'campfire_logic' gem.summary = %Q{Rails engine that adds a location directory to your web app} gem.description = %Q{Users can browse locations by country, city, and state and search locations by string or zip code. Administrators can manage locations and the services they offer.} gem.email = 'rod@seologic.com' gem.homepage = 'http://github.com/ivanoblomov/campfire_logic' gem.authors = ['Roderick Monje'] gem.add_development_dependency 'rspec', '>= 1.2.9' end Jeweler::GemcutterTasks.new rescue LoadError puts 'Jeweler (or a dependency) not available. Install it with: gem install jeweler' end require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : '' rdoc.rdoc_dir = 'rdoc' rdoc.title = "CampfireLogic #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end namespace :spec do desc 'Run specs with RCov' RSpec::Core::RakeTask.new('rcov') do |t| t.rcov = true t.rcov_opts = IO.readlines('spec/rcov.opts').map{ |l| l.chomp.split } * ' ' end end
Version data entries
13 entries across 13 versions & 1 rubygems