Sha256: 5269137064c77d17f4ecdc4f4cf88f8b3df9a63ba90b2edf4f9fc7d691fc8d15
Contents?: true
Size: 1.91 KB
Versions: 3
Compression:
Stored size: 1.91 KB
Contents
require 'rubygems' require 'spec' require 'spec/rake/spectask' require 'pathname' ROOT = Pathname(__FILE__).dirname.expand_path require ROOT + 'lib/dm-timestamps/version' AUTHOR = "Foy Savas" EMAIL = "foysavas@gmail.com" GEM_NAME = "dm-timestamps" GEM_VERSION = DataMapper::Timestamps::VERSION GEM_DEPENDENCIES = [["dm-core", GEM_VERSION]] GEM_CLEAN = ["log", "pkg", "coverage"] GEM_EXTRAS = { :has_rdoc => true, :extra_rdoc_files => %w[ README.txt LICENSE TODO ] } PROJECT_NAME = "datamapper" PROJECT_URL = "http://github.com/sam/dm-more/tree/master/dm-timestamps" PROJECT_DESCRIPTION = PROJECT_SUMMARY = "DataMapper plugin for magical timestamps" require ROOT.parent + 'tasks/hoe' task :default => [ :spec ] WIN32 = (RUBY_PLATFORM =~ /win32|mingw|cygwin/) rescue nil SUDO = WIN32 ? '' : ('sudo' unless ENV['SUDOLESS']) desc "Install #{GEM_NAME} #{GEM_VERSION} (default ruby)" task :install => [ :package ] do sh "#{SUDO} gem install --local pkg/#{GEM_NAME}-#{GEM_VERSION} --no-update-sources", :verbose => false end desc "Uninstall #{GEM_NAME} #{GEM_VERSION} (default ruby)" task :uninstall => [ :clobber ] do sh "#{SUDO} gem uninstall #{GEM_NAME} -v#{GEM_VERSION} -I -x", :verbose => false end namespace :jruby do desc "Install #{GEM_NAME} #{GEM_VERSION} with JRuby" task :install => [ :package ] do sh %{#{SUDO} jruby -S gem install --local pkg/#{GEM_NAME}-#{GEM_VERSION} --no-update-sources}, :verbose => false end end desc 'Run specifications' Spec::Rake::SpecTask.new(:spec) do |t| t.spec_opts << '--options' << 'spec/spec.opts' if File.exists?('spec/spec.opts') t.spec_files = Pathname.glob(Pathname.new(__FILE__).dirname + 'spec/**/*_spec.rb') begin t.rcov = ENV.has_key?('NO_RCOV') ? ENV['NO_RCOV'] != 'true' : true t.rcov_opts << '--exclude' << 'spec' t.rcov_opts << '--text-summary' t.rcov_opts << '--sort' << 'coverage' << '--sort-reverse' rescue Exception # rcov not installed end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dm-timestamps-0.9.3 | Rakefile |
dm-timestamps-0.9.4 | Rakefile |
dm-timestamps-0.9.5 | Rakefile |