Sha256: 42cda1d0dc9e482279775799bd8901efc431e213febaa516788f8a92dbd1ca07

Contents?: true

Size: 1.44 KB

Versions: 8

Compression:

Stored size: 1.44 KB

Contents

require 'rake/clean'

INCLUDE = "include"
ERLC_FLAGS = "-I#{INCLUDE} +warn_unused_vars +warn_unused_import"

SRC = FileList['src/*.erl']
OBJ = SRC.pathmap("%{src,ebin}X.beam")
CLEAN.include("ebin/*.beam")

directory 'ebin'

rule ".beam" =>  ["%{ebin,src}X.erl"] do |t|
  sh "erlc -pa ebin -W #{ERLC_FLAGS} -o ebin #{t.source}"
end

task :compile => ['ebin'] + OBJ
task :default => :compile

task :run_tests => [:compile] do
  puts "Modules under test:"
  OBJ.each do |obj|
    obj[%r{.*/(.*).beam}]
    mod = $1
    test_output = `erl -pa ebin -run #{mod} test -run init stop`

    if /\*failed\*/ =~ test_output
      test_output[/(Failed.*Aborted.*Skipped.*Succeeded.*$)/]
    else
      test_output[/1>\s*(.*)\n/]
    end

    puts "#{mod}: #{$1}"
  end
end

desc "Recompile the sources"
task :recompile => [:clean, :compile]

desc "Compile all the sources"
task :compile => ['ebin'] + OBJ

desc "Rebuild the boot scripts"
task :build_boot_scripts => [:recompile] do
  puts "Rebuilding boot scripts"
  @version = "0.1"
  cmd = "erl -pa ./ebin/ -run pm_packager recompile_scripts #{@version} -run init stop -noshell"
  Kernel.system cmd
end

desc "Rebuild and repackage"
task :repackage => [:build_boot_scripts] do  
  cmd = "erl -pa ./ebin -s pm_packager start -s init stop"
  Kernel.system cmd
end

desc "Install messenger"
task :install_messenger do
  cmd = "erl -pa ./ebin/ -run pm_packager install_messenger #{@version} -run init stop -noshell"
  Kernel.system cmd
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
auser-poolparty-0.2.20 lib/erlang/messenger/Rakefile
auser-poolparty-0.2.21 lib/erlang/messenger/Rakefile
auser-poolparty-0.2.22 lib/erlang/messenger/Rakefile
auser-poolparty-0.2.23 lib/erlang/messenger/Rakefile
auser-poolparty-0.2.24 lib/erlang/messenger/Rakefile
auser-poolparty-0.2.25 lib/erlang/messenger/Rakefile
auser-poolparty-0.2.26 lib/erlang/messenger/Rakefile
poolparty-0.2.18 lib/erlang/messenger/Rakefile