-
Notifications
You must be signed in to change notification settings - Fork 5
/
Vendor.gemspec
26 lines (23 loc) · 993 Bytes
/
Vendor.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
26
# -*- encoding: utf-8 -*-
VENDOR_VERSION = "0.3.2"
Gem::Specification.new do |spec|
spec.name = "rm_vendor"
spec.version = VENDOR_VERSION
spec.authors = ["Holger Sindbaek"]
spec.email = ["[email protected]"]
spec.description = %q{A RubyMotion StoreKit Wrapper that allows you to buy, restore and get product info on your in app purchases and subscriptions}
spec.summary = %q{RubyMotion StoreKit Wrapper}
spec.homepage = "https://github.com/holgersindbaek/Vendor"
spec.license = "MIT"
files = []
files << 'README.md'
files.concat(Dir.glob('lib/**/*.rb'))
spec.files = files
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "rake"
spec.add_dependency "motion-cocoapods"
spec.add_dependency "sugarcube"
spec.add_dependency "bubble-wrap"
end