Sha256: fb93408f6efbaece6274e2d19499dc10513126667343a1b54a2a5f43bea83c81

Contents?: true

Size: 1.33 KB

Versions: 7

Compression:

Stored size: 1.33 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "time_ext"
    gem.summary = %Q{Extends the abilities of Ruby's built-in Time class by building on top of ActiveSupport.}
    gem.description = %Q{Extends the abilities of Ruby's built-in Time class by building on top of ActiveSupport.}
    gem.email = "contact@jimeh.me"
    gem.homepage = "http://github.com/jimeh/time_ext"
    gem.authors = ["Jim Myhrberg"]
    gem.add_dependency "activesupport", ">= 2.3.0"
    gem.add_development_dependency "rspec", ">= 1.2.9"
    gem.add_development_dependency "yard", ">= 0"
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
end

Spec::Rake::SpecTask.new(:rcov) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :spec => :check_dependencies

task :default => :spec

task :console do
  exec "irb -r spec/spec_helper"
end

begin
  require 'yard'
  YARD::Rake::YardocTask.new
rescue LoadError
  task :yardoc do
    abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
time_ext-0.2.6 Rakefile
time_ext-0.2.5 Rakefile
time_ext-0.2.4 Rakefile
time_ext-0.2.3 Rakefile
time_ext-0.2.1 Rakefile
time_ext-0.2.0 Rakefile
time_ext-0.1.0 Rakefile