Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjava.gemspec
More file actions
Latest commit
25 lines (21 loc) · 914 Bytes
/
Copy pathjava.gemspec
File metadata and controls
25 lines (21 loc) · 914 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
25
# coding: utf-8
lib=File.expand_path('../lib',__FILE__)
$LOAD_PATH.unshift(lib)unless $LOAD_PATH.include?(lib)
require'java/version'
Gem::Specification.newdo |spec|
spec.name="java"
spec.version=Java::VERSION
spec.authors=["Godfrey Chan"]
spec.email=["godfreykfc@gmail.com"]
spec.summary=%q{The caffeine boost you need for your late-night coding sprints.}
spec.homepage="https://github.com/vanruby/java"
spec.license="BSD"
spec.files=`git ls-files`.split($/)
spec.executables=spec.files.grep(%r{^bin/}){ |f| File.basename(f)}
spec.test_files=spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths=["lib"]
spec.required_ruby_version=">= 2.1.0"
spec.add_development_dependency"bundler","~> 1.3"
spec.add_development_dependency"rake"
spec.add_development_dependency"minitest"
end