Sha256: d3dd095d7ba9753126474efe389fe7c7a543b01e4fa1750c7e465823f6c43bbb

Contents?: true

Size: 1.22 KB

Versions: 1

Compression:

Stored size: 1.22 KB

Contents

# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.

load 'tasks/setup.rb'

ensure_in_path 'lib'
require 'libxml-jruby'

task :default => 'spec:run'

PROJ.name = 'libxml-jruby'
PROJ.authors = 'Michael Guterl'
PROJ.email = 'mguterl@gmail.com'
PROJ.url = 'FIXME (project homepage)'
PROJ.rubyforge.name = 'libxml-jruby'

PROJ.spec.opts << '--color'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "libxml-fixed-jruby"
    gemspec.version = "1.0.0"
    gemspec.date = "2008-09-20"
    gemspec.summary = "LibXMLRuby compatibility layer for jruby"
    gemspec.homepage = "http://rubyforge.org/projects/libxml-jruby"
    gemspec.authors = "Michael Guterl"
    gemspec.email = "mguterl @nospam@ gmail.com"
    gemspec.rubyforge_project = "libxml-fixed-jruby"
    gemspec.has_rdoc = false
    gemspec.platform = "jruby"
    gemspec.files = FileList['lib/**/*.rb', 'script/**/*', 'tasks/**/*', '[A-Z]*', 'test/**/*'].to_a 
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalsteaks-jeweler -s http://gems.github.com"
end

# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
libxml-fixed-jruby-1.0.0-jruby Rakefile