Sha256: f4031a30b5dc85ecce6762c2ca9d1d9120b48457c4760b9b861c18e4e662cfa6

Contents?: true

Size: 684 Bytes

Versions: 4

Compression:

Stored size: 684 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 'configit'

task :default => 'spec:run'

PROJ.name = 'configit'
PROJ.authors = 'Kris Rasmussen'
PROJ.email = 'kris@aptana.com'
PROJ.url = 'http://www.aptana.com'
PROJ.version = Configit::VERSION
PROJ.rubyforge.name = 'configit'
PROJ.ignore_file = '.gitignore'

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

# EOF

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
configit-0.1.3 Rakefile
configit-0.1.2 Rakefile
configit-0.1.1 Rakefile
configit-0.1.0 Rakefile