forked from ruboto/ruboto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruboto.gemspec
28 lines (26 loc) · 997 Bytes
/
ruboto.gemspec
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
26
27
28
require 'rake'
require 'date'
lib_path = File.expand_path('lib', File.dirname(__FILE__))
$:.unshift(lib_path) unless $:.include?(lib_path)
require 'ruboto/version'
require 'ruboto/description'
Gem::Specification.new do |s|
s.name = %q{ruboto}
s.version = Ruboto::VERSION
s.date = Date.today.strftime '%Y-%m-%d'
s.authors = ['Daniel Jackoway', 'Charles Nutter', 'Scott Moyer', 'Uwe Kubosch']
s.email = %q{ruboto@googlegroups.com}
s.homepage = %q{http://ruboto.org/}
s.summary = %q{A platform for developing apps using JRuby on Android.}
s.description = Ruboto::DESCRIPTION
s.rubyforge_project = 'ruboto/ruboto'
s.license = 'MIT'
s.files = FileList['[A-Z]*', 'assets/**/{*,.*}', 'bin/*', 'lib/**/*', 'test/**/*'].to_a
s.executables = %w(ruboto)
s.default_executable = 'ruboto'
s.add_dependency('main', '>=4.7.2')
s.add_dependency('rake')
# jruby-jars is only necessary for standalone apps.
# It will be installed on demand.
# s.add_dependency('jruby-jars')
end