Sha256: 808f63087f176778785cf706a4582c34356b6f7e55e2f2266fea48aa67a9f532

Contents?: true

Size: 1.31 KB

Versions: 18

Compression:

Stored size: 1.31 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'

  Jeweler::Tasks.new do |gem|
    gem.name = "jitai"
    gem.summary = %Q{CSS custom font consolidator}
    gem.description = %Q{CSS custom font consolidator}
    gem.email = "defaultstring@gmail.com"
    gem.homepage = "http://github.com/kellydunn/jitai"
    gem.authors = ["kellydunn"]
    gem.add_development_dependency "rspec", ">= 1.2.9"
    # 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 '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

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

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "jitai #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
jitai-0.3.3 Rakefile
jitai-0.3.2 Rakefile
jitai-0.3.1 Rakefile
jitai-0.3.0 Rakefile
jitai-0.2.32 Rakefile
jitai-0.2.31 Rakefile
jitai-0.2.30 Rakefile
jitai-0.2.29 Rakefile
jitai-0.2.28 Rakefile
jitai-0.2.27 Rakefile
jitai-0.2.26 Rakefile
jitai-0.2.25 Rakefile
jitai-0.2.24 Rakefile
jitai-0.2.23 Rakefile
jitai-0.2.22 Rakefile
jitai-0.2.21 Rakefile
jitai-0.2.20 Rakefile
jitai-0.2.19 Rakefile