forked from motion-kit/motion-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmotion-kit.gemspec
More file actions
25 lines (19 loc) · 813 Bytes
/
motion-kit.gemspec
File metadata and controls
25 lines (19 loc) · 813 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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/motion-kit/version.rb', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'motion-kit'
gem.version = MotionKit::VERSION
gem.licenses = ['MIT']
gem.authors = ['Colin T.A. Gray', 'Jamon Holmgren']
gem.email = ['colinta@gmail.com', 'jamon@clearsightstudio.com']
gem.summary = %{The RubyMotion layout and styling gem.}
gem.description = <<-DESC
MotionKit, for RubyMotion, is a DSL for creating and styling views in iOS and OS X.
DESC
gem.homepage = 'https://github.com/rubymotion/motion-kit'
gem.files = Dir.glob('lib/**/*.rb')
gem.files << 'README.md'
gem.test_files = Dir.glob('spec/**/*.rb')
gem.require_paths = ['lib']
gem.add_runtime_dependency 'dbt', '~> 1.1', '>= 1.1.5'
end