Sha256: 1b98c25773a3ed0aeeec3764360f761ce4020bc4fc50a203b9a3a4b8a920cc82

Contents?: true

Size: 1.1 KB

Versions: 15

Compression:

Stored size: 1.1 KB

Contents

require "bundler"
Bundler.setup

require "rake"
require "rspec/core/rake_task"

$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "amq/protocol/version"

task :gem => :build
task :build do
  system "gem build amq-protocol.gemspec"
end

task :install => :build do
  system "gem install amq-protocol-#{AMQ::Protocol::VERSION}.gem"
end

def extension
  RUBY_PLATFORM =~ /darwin/ ? "bundle" : "so"
end

def compile!
  puts "Compiling native extensions..."
  Dir.chdir(Pathname(__FILE__).dirname + "ext/") do
    `bundle exec ruby extconf.rb`
    `make`
    `cp client.#{extension} ../lib/amq/protocol/native/`
  end
end

RSpec::Core::RakeTask.new("spec") do |spec|
  spec.pattern = "spec/**/*_spec.rb"
end

RSpec::Core::RakeTask.new("clean_spec") do |spec|
  spec.pattern = "spec/**/*_spec.rb"
end

task :compile do
  compile!
end

task :clean do
  puts "Cleaning out native extensions..."
  begin
    Dir.chdir(Pathname(__FILE__).dirname + "lib/amq-protocol/native") do
      `rm client.#{extension}`
    end
  rescue Exception => e
    puts e.message
  end
end

task :default => [:compile, :spec, :clean, :clean_spec]

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
amq-protocol-2.3.2 Rakefile
amq-protocol-2.3.1 Rakefile
amq-protocol-2.3.0 Rakefile
amq-protocol-2.3.0.rc2 Rakefile
amq-protocol-2.3.0.rc1 Rakefile
amq-protocol-2.2.0 Rakefile
amq-protocol-2.1.0 Rakefile
amq-protocol-2.0.1 Rakefile
amq-protocol-2.0.0 Rakefile
amq-protocol-1.9.2 Rakefile
amq-protocol-1.9.1 Rakefile
amq-protocol-1.9.0 Rakefile
amq-protocol-1.8.0 Rakefile
amq-protocol-1.7.0 Rakefile
amq-protocol-1.6.0 Rakefile