-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtgios.gemspec
27 lines (22 loc) · 889 Bytes
/
tgios.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/tgios/version.rb', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'tgios'
gem.version = Tgios::VERSION
gem.licenses = ['BSD']
gem.authors = ['April Tsang', 'William Yeung']
gem.email = ['april@tofugear.com', 'william@tofugear.com']
gem.description = <<-DESC
A package of ruby-motion libraries written by our team.
DESC
gem.summary = 'A package of ruby-motion libraries written by our team.'
gem.homepage = 'https://github.com/apriltg/tgios'
gem.files = `git ls-files`.split($\)
gem.require_paths = ['lib']
gem.test_files = gem.files.grep(%r{^spec/})
gem.add_dependency 'sugarcube', '>=1.1.0'
#gem.add_dependency 'sugarcube-classic'
gem.add_dependency 'awesome_print_motion'
gem.add_dependency 'motion-layout'
gem.add_dependency 'plastic_cup', '>=0.1.1'
end