-
Notifications
You must be signed in to change notification settings - Fork 11
/
motion-bundler.gemspec
22 lines (19 loc) · 978 Bytes
/
motion-bundler.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/motion-bundler/version", __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Paul Engel"]
gem.email = ["[email protected]"]
gem.summary = %q{Use Ruby gems and mock require statements within RubyMotion applications}
gem.description = %q{Use Ruby gems and mock require statements within RubyMotion applications}
gem.homepage = "https://github.com/archan937/motion-bundler"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "motion-bundler"
gem.require_paths = ["lib"]
gem.version = MotionBundler::VERSION
gem.add_development_dependency "minitest", "4.6.2"
gem.add_development_dependency "mocha", "0.13.2"
gem.add_development_dependency "rake"
gem.add_dependency "thor"
end