lib/fulmar/domain/service/application_service.rb in fulmar-1.5.2 vs lib/fulmar/domain/service/application_service.rb in fulmar-1.6.0
- old
+ new
@@ -48,15 +48,17 @@
end
def standard_rake_options
options = super
options.reject { |option| option[0] == '--version' }
- options << ['--version', '-V',
- 'Display the program version.',
- lambda { |_value|
+ options << [
+ '--version',
+ '-V',
+ 'Display the program version.',
+ lambda do |_value|
puts "fulmar #{Fulmar::VERSION} (using rake, version #{RAKEVERSION})"
exit
- }
+ end
]
end
end
end
end