Sha256: 5da5204195a58f92f73a84f08f9c5f3dfac02eb8c83556233148d7788c98ce5b

Contents?: true

Size: 951 Bytes

Versions: 4

Compression:

Stored size: 951 Bytes

Contents

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'
require 'rspec/core'
require 'rspec/core/rake_task'

# gemify
Jeweler::Tasks.new do |gemspec|
  gemspec.name = "jruby-poi"
  gemspec.summary = "Apache POI class library for jruby"
  gemspec.description = "A rubyesque library for manipulating spreadsheets and other document types for jruby, using Apache POI."
  gemspec.license = "Apache"
  gemspec.email = ["sdeming@makefile.com", "jacaetevha@gmail.com"]
  gemspec.homepage = "http://github.com/kameeoze/jruby-poi"
  gemspec.authors = ["Scott Deming", "Jason Rogers"]
end
Jeweler::RubygemsDotOrgTasks.new

# test
RSpec::Core::RakeTask.new(:spec)
RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.rcov = true
end

task :default => :spec

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
timcharper-jruby-poi-0.9.1 Rakefile
jruby-poi-0.9.0 Rakefile
nurettin-jruby-poi-0.8.2 Rakefile
jruby-poi-0.8.2 Rakefile