mirror of
https://github.com/zhigang1992/RubyMotion-PixateFreestyle.git
synced 2026-01-12 17:52:19 +08:00
23 lines
811 B
Ruby
23 lines
811 B
Ruby
# -*- encoding: utf-8 -*-
|
|
Version = "2.0"
|
|
|
|
Gem::Specification.new do |gem|
|
|
gem.name = "motion-pixate"
|
|
gem.version = Version
|
|
gem.authors = ['Paul Colton', 'Shizuo Fujita']
|
|
gem.email = ['paul@pixate.com', 'watson1978@gmail.com']
|
|
gem.description = 'Pixate integration for RubyMotion projects'
|
|
gem.summary = 'motion-pixate allows RubyMotion projects to easily embed the Pixate Framework.'
|
|
gem.homepage = 'https://github.com/Pixate/RubyMotion-Pixate'
|
|
|
|
files = []
|
|
files << 'README.md'
|
|
files.concat(Dir.glob('lib/**/*.rb'))
|
|
gem.files = files
|
|
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"]
|
|
|
|
gem.add_dependency 'sass'
|
|
end
|