-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrkmotion.gemspec
25 lines (21 loc) · 1.04 KB
/
rkmotion.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
25
# encoding: utf-8
# $:.unshift File.expand_path('../lib', __FILE__)
require File.expand_path('../lib/rkmotion/restkit/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'rkmotion'
s.version = RKMotion::RestKit::VERSION
s.authors = ['Dennis Major']
s.email = ['dennismajor1@gmail.com']
s.homepage = "https://github.com/RubyCommotion/rkmotion"
s.summary = 'Provides a DSL for Obj-C RestKit'
s.description = 'A skeleton non-functioning placeholder W.I.P. RubyMotion wrapper for RestKit the Objective-C framework for iOS for interacting with Restful web services.'
s.license = 'MIT'
s.files = `git ls-files`.split($\).delete_if {|x| x.include? "example"}
s.test_files = s.files.grep(%r{^(test|spec|features)/})
# s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.add_dependency 'motion-cocoapods', '~> 1.4', '>= 1.4.0'
s.add_dependency 'motion-require', '~> 0.2', '>= 0.2.0'
s.rubyforge_project = '[none]'
s.add_development_dependency 'rake', '~> 0'
end