-
Notifications
You must be signed in to change notification settings - Fork 85
/
teacup.gemspec
27 lines (21 loc) · 888 Bytes
/
teacup.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/teacup/version.rb', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'teacup'
gem.version = Teacup::VERSION
gem.licenses = ['BSD']
gem.authors = ['the rubymotion community']
gem.email = '[email protected]'
gem.description = <<-DESC
Teacup is a community-driven DSL for RubyMotion. It has CSS-like styling, and
helps create complex and simple layouts in iOS and OS X apps.
Teacup aims at making UI develpoment in RubyMotion less tedious. It's like
Interface Builder for RubyMotion!
DESC
gem.summary = 'A community-driven DSL for creating user interfaces on iOS and OS X.'
gem.homepage = 'https://github.com/rubymotion/teacup'
gem.files = Dir.glob('lib/**/*.rb')
gem.files << 'README.md'
gem.require_paths = ['lib']
gem.test_files = Dir.glob('spec/**/*.rb')
end