Sha256: b4fbd96cd36baaa44a38d17fd1789d24dc0456eae36d92c29cbbfb3bef41a540
Contents?: true
Size: 999 Bytes
Versions: 5
Compression:
Stored size: 999 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 'germinate' task :default => 'spec:run' PROJ.name = 'germinate' PROJ.authors = 'Avdi Grimm' PROJ.email = 'avdi@avdi.org' PROJ.url = 'http://github.com/devver/germinate/' PROJ.version = Germinate::VERSION PROJ.rubyforge.name = 'germinate' PROJ.spec.opts << '--color' PROJ.ruby_opts = [] PROJ.readme_file = "README.rdoc" PROJ.rdoc.main = "README.rdoc" PROJ.rdoc.exclude << "features" depend_on "ick", "~> 0.3.0" depend_on "fattr", "~> 1.0.3" depend_on "arrayfields", "~> 4.7.3" depend_on "orderedhash", "~> 0.0.6" depend_on "alter-ego", "~> 1.0.0" depend_on "main", "~> 2.8.3" # EOF
Version data entries
5 entries across 5 versions & 2 rubygems
Version | Path |
---|---|
devver-germinate-1.0.0 | Rakefile |
devver-germinate-1.0.1 | Rakefile |
devver-germinate-1.1.0 | Rakefile |
devver-germinate-1.2.0 | Rakefile |
germinate-1.2.0 | Rakefile |