require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "ticketmaster-github" gem.summary = %Q{The github provider for ticketmaster} gem.description = %Q{This provides an interface with github through the ticketmaster gem.} gem.email = "hong.quach@abigfisch.com" gem.homepage = "http://github.com/kiafaldorius/ticketmaster-github" gem.authors = ["HybridGroup"] # 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 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.pattern = 'spec/**/*_spec.rb' spec.rcov = true end task :default => :spec