Sha256: 83f8bafe09ff89127d7127fbdc4da2a47549e1159e01a5d871678983f8ce311c
Contents?: true
Size: 950 Bytes
Versions: 2
Compression:
Stored size: 950 Bytes
Contents
require 'rubygems' # 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' require 'germinate/publisher' require 'germinate-gist' task :default => 'spec:run' PROJ.name = 'germinate-gist' PROJ.authors = 'Avdi Grimm' PROJ.email = 'avdi@avdi.org' PROJ.url = 'http://github.com/devver/germinate-gist/' PROJ.version = GerminateGist::VERSION PROJ.rubyforge.name = 'germinate-gist' PROJ.ignore_file = '.gitignore' PROJ.spec.opts << '--color' PROJ.ruby_opts = [] depend_on 'nokogiri', '~> 1.2.3' depend_on 'schacon-git', '~> 1.1.1' depend_on 'rest_client', '~> 1.0.3' PROJ.spec.opts << '--color' # EOF
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
devver-germinate-gist-1.0.0 | Rakefile |
germinate-gist-1.0.0 | Rakefile |