Sha256: c0680b975ee5d0a3c59fe283b8d20a6555980908b5f765dddc0bdf22bf8c3555

Contents?: true

Size: 739 Bytes

Versions: 6

Compression:

Stored size: 739 Bytes

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.

begin
  require 'bones'
  Bones.setup
rescue LoadError
  begin
    load 'tasks/setup.rb'
  rescue LoadError
    raise RuntimeError, '### please install the "bones" gem ###'
  end
end

ensure_in_path 'lib'
ensure_in_path 'java'
require 'buby'

task :default => 'spec:run'

PROJ.name = 'buby'
PROJ.authors = 'Eric Monti - Matasano Security'
PROJ.email = 'emonti@matasano.com'
PROJ.url = 'http://emonti.github.com/buby'
PROJ.version = Buby::VERSION
PROJ.rubyforge.name = 'buby'
PROJ.readme_file = 'README.rdoc'
PROJ.libs << "java"

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

# EOF

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
emonti-buby-1.1.1 Rakefile
emonti-buby-1.1.2 Rakefile
emonti-buby-1.1.3.1 Rakefile
emonti-buby-1.1.3 Rakefile
emonti-buby-1.1.4.1 Rakefile
emonti-buby-1.1.4 Rakefile