# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'motion/gem/version' Gem::Specification.new do |spec| spec.name = 'motion-gem' spec.version = Motion::Gem::VERSION spec.description = %q{A RubyMotion gem for scaffolding other RubyMotion gems} spec.summary = %q{`bundle gem` for RubyMotion} spec.authors = ['Erran Carey'] spec.email = ['me@errancarey.com'] spec.homepage = 'https://github.com/ipwnstuff' spec.license = 'MIT' spec.files = `git ls-files`.split($/) spec.extensions = ['ext/extconf.rb'] spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.3' spec.add_development_dependency 'rake' end