Sha256: 0fae808fb2cf8c767427c097e5d2ffc4fe4211bd47d47cb7e515fa6d1bc10e34
Contents?: true
Size: 1.31 KB
Versions: 3
Compression:
Stored size: 1.31 KB
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 'tasks/bones' Bones.setup rescue LoadError begin load File.join(File.dirname(__FILE__), %w[tasks setup.rb] ) rescue LoadError raise RuntimeError, '### please install the "bones" gem ###' end end ensure_in_path 'lib' require 'wackamole' PROJ.name = 'wackamole' PROJ.authors = 'Fernand Galiana' PROJ.summary = 'A companion web app to Rackamole' PROJ.email = 'fernand.galiana@gmail.com' PROJ.url = 'http://www.rackamole.com' PROJ.version = Wackamole::VERSION PROJ.ruby_opts = %w[-W0] PROJ.readme = 'README.rdoc' PROJ.rcov.opts = ["--sort", "coverage", "-T"] PROJ.ignore_file = "*.log" PROJ.spec.opts << '--color' PROJ.rdoc.include = %w[.rb] # Dependencies depend_on "mongo" , ">= 0.18.1" depend_on "mongo_ext" , ">= 0.18.1" depend_on "agnostic-will_paginate", ">= 3.0.0" depend_on "memcache-client" , ">= 1.5.0" depend_on "mongo_rack" , ">= 0.0.1" depend_on "main" , ">= 4.2.0" depend_on "sinatra" , ">= 0.9.4" depend_on "mongo_rack" , ">= 0.0.3" # Rake task :default => ['fixtures:load','spec:run']
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
wackamole-0.0.3 | Rakefile |
wackamole-0.0.2 | Rakefile |
wackamole-0.0.1 | Rakefile |