forked from rubymotion-community/BubbleWrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bubble-wrap.gemspec
24 lines (20 loc) · 1.36 KB
/
bubble-wrap.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/bubble-wrap/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Matt Aimonetti', 'Francis Chong', 'James Harton', 'Clay Allsopp', 'Dylan Markow', 'Jan Weinkauff', 'Marin Usalj']
gem.email = ['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]']
gem.description = 'RubyMotion wrappers and helpers (Ruby for iOS and OS X) - Making Cocoa APIs more Ruby like, one API at a time. Fork away and send your pull request.'
gem.summary = 'RubyMotion wrappers and helpers (Ruby for iOS and OS X) - Making Cocoa APIs more Ruby like, one API at a time. Fork away and send your pull request.'
gem.homepage = 'http://rubymotion.github.io/BubbleWrap/'
gem.files = `git ls-files`.split($\)
gem.test_files = gem.files.grep(%r{^(test|spec|lib_spec|features)/})
gem.name = 'bubble-wrap'
gem.require_paths = ['lib']
gem.version = BubbleWrap::VERSION
gem.extra_rdoc_files = gem.files.grep(%r{motion})
gem.add_dependency 'bubble-wrap-http', BubbleWrap::VERSION
gem.add_development_dependency 'mocha', '0.11.4'
gem.add_development_dependency 'mocha-on-bacon'
gem.add_development_dependency 'bacon'
gem.add_development_dependency 'rake'
end