warbler
warbler copied to clipboard
Create jar from script in rails project
I have a rails application which I do not use the server portion of it, I use a script that runs my service. It seems since the app is rails based warbler wants to create a war, is there a way to force it to create a jar from my script instead?
I use a little hack in my warble.rb to achieve this:
class Warbler::Traits::Rails # Maybe you'll need to patch Warbler::Traits::Rack too
def self.detect?
false
end
end
But it would be very nice if this could be done without hacking :) (see #10 for example)