forked from siuying/motion-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmotion-layout.gemspec
More file actions
18 lines (16 loc) · 804 Bytes
/
motion-layout.gemspec
File metadata and controls
18 lines (16 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'motion-layout/version'
Gem::Specification.new do |gem|
gem.name = "motion-layout"
gem.version = Motion::Layout::VERSION
gem.authors = ["Nick Quaranto"]
gem.email = ["nick@quaran.to"]
gem.summary = gem.description = %q{A nice way to use iOS6+ autolayout in your RubyMotion app. Use ASCII-art inspired format strings to build your app's layout!}
gem.homepage = "https://github.com/qrush/motion-layout"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
end