-
Notifications
You must be signed in to change notification settings - Fork 0
/
motion-acknowledgements.gemspec
23 lines (20 loc) · 1.29 KB
/
motion-acknowledgements.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/acknowledgements/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = "motion-acknowledgements"
spec.version = MotionAcknowledgements::VERSION
spec.authors = ["Mark Rickert"]
spec.email = ["[email protected]"]
spec.description = "This RubyMotion specific gem makes it easy to include the CocoaPods acknowledgements file in your application. Simply add to your bundle file, run `rake acknowledgements:generate` and each time you build your application, the CocoaPods acknowledgements file will be copied over to your Settings.bundle. This then adds an entry for your app into the system's Settings.app with an 'Acknowledgements' submenu."
spec.summary = "This RubyMotion specific gem makes it easy to include the CocoaPods acknowledgements file in your application."
spec.homepage = "https://github.com/OTGApps/motion-acknowledgements"
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"
end