Sha256: 88d95ead93254eecc0e60b2da965b189e81161086ed9c5a916ac1d57d11abb56

Contents?: true

Size: 951 Bytes

Versions: 12

Compression:

Stored size: 951 Bytes

Contents

require "bundler/gem_tasks"

#############################################################################
#
# Helper functions
#
#############################################################################

def name
  @name ||= Dir['*.gemspec'].first.split('.').first
end

#############################################################################
#
# Standard tasks
#
#############################################################################

task :default => :test

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

desc "Open an irb session preloaded with this library"
task :console do
  sh "irb -rubygems -r ./lib/#{name}.rb"
end

#############################################################################
#
# Custom tasks (add your own tasks here)
#
#############################################################################

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
msgpack_rails-0.4.3 Rakefile
msgpack_rails-0.4.2 Rakefile
msgpack_rails-0.4.1 Rakefile
msgpack_rails-0.4.0 Rakefile
message_queue-0.1.1 Rakefile
message_queue-0.1.0 Rakefile
msgpack_rails-0.3.0 Rakefile
msgpack_rails-0.1.0 Rakefile
msgpack_rails-0.0.1 Rakefile
message_queue-0.0.4 Rakefile
message_queue-0.0.3 Rakefile
message_queue-0.0.2 Rakefile