Sha256: c3d2dcacea20c789cc92dcb675173e309ec799447be2d5cd596f15bf63916ec7

Contents?: true

Size: 1.11 KB

Versions: 17

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'
require 'jeweler'

Jeweler::Tasks.new do |gemspec|
  gemspec.name = "bixby-common"
  gemspec.summary = "Bixby Common"
  gemspec.description = "Bixby Common files/libs"
  gemspec.email = "chetan@pixelcop.net"
  gemspec.homepage = "http://github.com/chetan/bixby-common"
  gemspec.authors = ["Chetan Sarva"]
  gemspec.license = "MIT"
end
Jeweler::RubygemsDotOrgTasks.new

Dir['tasks/**/*.rake'].each { |rake| load rake }

require "micron/rake"
Micron::Rake.new do |task|
end
task :default => :test

# for displaying coverage
require "easycov/rake"

# for reporting to coveralls
require "coveralls"
desc "Report coverage to coveralls"
task :coveralls do
  SimpleCov.formatter = Coveralls::SimpleCov::Formatter
  if File.exists? File.join(EasyCov.path, ".resultset.json") then
    SimpleCov::ResultMerger.merged_result.format!
  end
end

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
bixby-common-0.7.1 Rakefile
bixby-common-0.7.0 Rakefile
bixby-common-0.6.6 Rakefile
bixby-common-0.6.5 Rakefile
bixby-common-0.6.4 Rakefile
bixby-common-0.6.3 Rakefile
bixby-common-0.6.2 Rakefile
bixby-common-0.6.1 Rakefile
bixby-common-0.6.0 Rakefile
bixby-common-0.5.0 Rakefile
bixby-common-0.4.13 Rakefile
bixby-common-0.4.12 Rakefile
bixby-common-0.4.11 Rakefile
bixby-common-0.4.10 Rakefile
bixby-common-0.4.9 Rakefile
bixby-common-0.4.8 Rakefile
bixby-common-0.4.7 Rakefile