Sha256: 3a1e25f9136e923d3aaa6954e487d0a3d397c2c41469644ea7de94707e56bc7e

Contents?: true

Size: 692 Bytes

Versions: 1

Compression:

Stored size: 692 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'
rescue LoadError
  abort '### Please install the "bones" gem ###'
end

ensure_in_path 'lib'
require 'em-redis'

task :default => ['redis:live_test', 'redis:offline_test']

Bones {
  name 'em-redis'
  authors 'Jonathan Broad'
  email 'jonathan@relativepath.org'
  url ''
  version EMRedis::VERSION

  readme_file  'README.rdoc'
  ignore_file  '.gitignore'

  depend_on 'eventmachine', '>=0.12.10'

  depend_on "bacon", :development => true
  depend_on "em-spec", :development => true 
}

# EOF

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
em-redis-0.2.1 Rakefile