Sha256: a0ed1e188fb4ba568f519c7ed1de341e98f4a8407d70f6d04ed28248714571b5

Contents?: true

Size: 861 Bytes

Versions: 2

Compression:

Stored size: 861 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'
require 'dragongoserver'

task :default => 'spec:run'

PROJ.name = 'dragongoserver'
PROJ.authors = 'Thomas Preymesser'
PROJ.email = 'thopre@gmail.com'
PROJ.url = 'http://dragongoserver.rubyforge.org/'
PROJ.version = Dragongoserver::VERSION
PROJ.rubyforge.name = 'dragongoserver'
PROJ.gem.executables = ['dgs']
PROJ.gem.dependencies = [
  ['mechanize', '>= 0.9.2'],
  ['go-rank', '>= 0.0.1'],
  ['choice', '>= 0.1.2'],
  ['hpricot', '>= 0.6'],
]

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

# EOF

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dragongoserver-0.4.0 Rakefile
dragongoserver-0.4.1 Rakefile