forked from iconara/puck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpuck.gemspec
More file actions
24 lines (19 loc) · 868 Bytes
/
puck.gemspec
File metadata and controls
24 lines (19 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# encoding: utf-8
$: << File.expand_path('../lib', __FILE__)
require 'puck/version'
Gem::Specification.new do |s|
s.name = s.rubyforge_project = 'puck'
s.version = Puck::VERSION.dup
s.platform = Gem::Platform::RUBY
s.authors = ['Theo Hultberg']
s.email = ['theo@iconara.net']
s.homepage = 'http://github.com/iconara/puck'
s.summary = %q{Packs your JRuby app as a standalone Jar file}
s.description = %q{Puck takes your app and packs it along with all your gems and a complete JRuby runtime in a standalone Jar file that can be run with just `java -jar …`}
s.license = 'Apache License 2.0'
s.files = Dir['lib/**/*.rb', 'lib/**/*.jar', 'bin/*']
s.require_paths = %w(lib)
s.bindir = 'bin'
s.default_executable = s.name
s.executables = [s.default_executable]
end