Sha256: 2560d0fd4dfc6e0e72854d846bd69d320d51908eace120197b86623591e78850
Contents?: true
Size: 1.67 KB
Versions: 1
Compression:
Stored size: 1.67 KB
Contents
require 'rake' module Fulmar module Domain module Service # The main application which extends rake class ApplicationService < Rake::Application def initialize super @rakefiles = %w(fulmarfile Fulmarfile fulmarfile.rb Fulmarfile.rb) end def name 'fulmar' end def run Rake.application = self super end def init super options.rakelib << fulmar_task_dir options.rakelib << 'Fulmar' end def define_task(task_class, *args, &block) super(task_class, *args, &wrap_environment(&block)) end def wrap_environment proc do |t, args| configuration = Fulmar::Domain::Service::ConfigurationService.instance environment = configuration.environment target = configuration.target yield(t, args) if block_given? configuration.environment = environment unless environment.nil? configuration.target = target unless target.nil? end end # Add fulmar application tasks def fulmar_task_dir File.expand_path(File.join(File.dirname(__FILE__), '..', 'task')) end def standard_rake_options options = super options.reject { |option| option[0] == '--version' } options << [ '--version', '-V', 'Display the program version.', lambda do |_value| puts "fulmar #{Fulmar::VERSION} (using rake, version #{RAKEVERSION})" exit end ] end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fulmar-1.6.0 | lib/fulmar/domain/service/application_service.rb |