Sha256: 7af2a0952651a2032e5398ffd8692bacb7abe3ee107104df0cf97aac3437732f
Contents?: true
Size: 862 Bytes
Versions: 1
Compression:
Stored size: 862 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 'inifile' task :default => 'test:run' PROJ.name = 'inifile' PROJ.summary = 'INI file reader and writer' PROJ.authors = 'Tim Pease' PROJ.email = 'tim.pease@gmail.com' PROJ.url = 'http://codeforpeople.rubyforge.org/inifile' PROJ.version = IniFile::VERSION PROJ.rubyforge.name = 'codeforpeople' PROJ.ignore_file = '.gitignore' PROJ.rdoc.remote_dir = 'inifile' PROJ.ann.email[:server] = 'smtp.gmail.com' PROJ.ann.email[:port] = 587 PROJ.ann.email[:from] = 'Tim Pease' # EOF
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
inifile-0.2.0 | Rakefile |