Sha256: bf6b6b5468fac71e263deed18a40e730a274670a54433464547278589abd05e0
Contents?: true
Size: 1.17 KB
Versions: 4
Compression:
Stored size: 1.17 KB
Contents
#!/usr/bin/env bundle exec nake # encoding: utf-8 load "contributors.nake" # ./tasks.rb generate # ./tasks.rb generate --targets=all, # ./tasks.rb generate --targets=client,server # ./tasks.rb generate --development Task.new(:generate) do |task| task.description = "Generate lib/amq/protocol/client.rb" def self.valid_choices ["client", "server", "all"] end def self.check_validity_of_target(target) unless self.valid_choices.include?(target) abort "Target can be one #{valid_choices.inspect}, not #{target.inspect}" end end task.define do |opts, spec = nil| opts[:targets] ||= ["client"] if spec.nil? spec = "vendor/rabbitmq-codegen/amqp-rabbitmq-0.9.1.json" unless File.exist?(spec) sh "git submodule update --init" end end opts[:targets].each do |type| self.check_validity_of_target(type) path = "lib/amq/protocol/#{type}.rb" sh "DEVELOPMENT=#{opts[:development]} ./codegen.py #{type} #{spec} #{path}" if File.file?(path) sh "./post-processing.rb #{path}" sh "ruby -c #{path}" end end end end Task.tasks.default = Task[:generate] # FIXME: it doesn't work now
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
amq-protocol-0.7.0 | tasks.rb |
amq-protocol-0.7.0.beta2 | tasks.rb |
amq-protocol-0.7.0.beta1 | tasks.rb |
amq-protocol-0.7.0.alpha7 | tasks.rb |