Sha256: 65a89197fb32472051a08ee82021621c8f5539e2ddbdd980e01431d72a23cd1d

Contents?: true

Size: 1.21 KB

Versions: 27

Compression:

Stored size: 1.21 KB

Contents

# encoding: UTF-8
begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "yajl-ruby"
    gem.summary = "Ruby C bindings to the excellent Yajl JSON stream-based parser library."
    gem.email = "seniorlopez@gmail.com"
    gem.homepage = "http://github.com/brianmario/yajl-ruby"
    gem.authors = ["Brian Lopez", "Lloyd Hilaiel"]
    gem.require_paths = ["lib", "ext"]
    gem.extra_rdoc_files = `git ls-files *.rdoc`.split("\n")
    gem.files = `git ls-files`.split("\n")
    gem.extensions = ["ext/extconf.rb"]
    gem.files.include %w(lib/jeweler/templates/.document lib/jeweler/templates/.gitignore)
    gem.rubyforge_project = "yajl-ruby"
  end
rescue LoadError
  puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

require 'rake'
require 'spec/rake/spectask'

desc "Run all examples with RCov"
Spec::Rake::SpecTask.new('spec:rcov') do |t|
  t.spec_files = FileList['spec/']
  t.rcov = true
  t.rcov_opts = lambda do
    IO.readlines("spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
  end
end
Spec::Rake::SpecTask.new('spec') do |t|
  t.spec_files = FileList['spec/']
  t.spec_opts << '--options' << 'spec/spec.opts'
end

Version data entries

27 entries across 27 versions & 5 rubygems

Version Path
brianmario-yajl-ruby-0.5.10 Rakefile
brianmario-yajl-ruby-0.5.11 Rakefile
brianmario-yajl-ruby-0.5.12 Rakefile
brianmario-yajl-ruby-0.5.7 Rakefile
brianmario-yajl-ruby-0.5.8 Rakefile
brianmario-yajl-ruby-0.5.9 Rakefile
brianmario-yajl-ruby-0.6.0 Rakefile
brianmario-yajl-ruby-0.6.1 Rakefile
brianmario-yajl-ruby-0.6.3 Rakefile
jdg-yajl-ruby-0.5.12 Rakefile
oortle-yajl-ruby-0.5.8 Rakefile
yajl-ruby-0.6.8 Rakefile
yajl-ruby-0.6.7 Rakefile
yajl-ruby-0.6.6 Rakefile
yajl-ruby-0.6.5 Rakefile
yajl-ruby-0.6.4 Rakefile
filipegiusti-yajl-ruby-0.6.4 Rakefile
yajl-ruby-0.6.3 Rakefile
yajl-ruby-0.6.2 Rakefile
yajl-ruby-0.6.0 Rakefile