Sha256: 3828d310f48316025ac81cf60c33e1e121a20b13d52e6bf38307e58e30944ca1
Contents?: true
Size: 1.39 KB
Versions: 2
Compression:
Stored size: 1.39 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 "rack" , ">= 1.1.0" depend_on "mongo" , ">= 1.0.1" depend_on "bson" , ">= 1.0.1" depend_on "bson_ext" , ">= 1.0.1" depend_on "agnostic-will_paginate", ">= 3.0.0" depend_on "memcache-client" , ">= 1.5.0" depend_on "main" , ">= 4.2.0" depend_on "sinatra" , ">= 1.0" depend_on "mongo_rack" , ">= 0.0.3" depend_on "rackamole" , ">= 0.0.3" # Rake task :default => ['fixtures:load','spec:run']
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wackamole-0.1.4 | Rakefile |
wackamole-0.1.3 | Rakefile |