-
Notifications
You must be signed in to change notification settings - Fork 0
/
motion-accessibility.gemspec
24 lines (21 loc) · 1.02 KB
/
motion-accessibility.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 -*-
VERSION = "3.2.4"
Gem::Specification.new do |spec|
spec.name = "motion-accessibility"
spec.version = VERSION
spec.authors = ["Austin Seraphin"]
spec.email = ["[email protected]"]
spec.description = %q{AA RubyMotion wrapper around the UIAccessibility procotols}
spec.summary = %q{This gem provides easy ruby-like wrappers around the protocols which interact with VoiceOver and other assistive technologies. It also features automated testing for iOS, and a console. Making accessibility accessible! }
spec.homepage = "https://github.com/austinseraphin/motion-accessibility"
spec.license = "MIT"
files = []
files << 'README.md'
files<<'LICENSE'
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", "~> 10.0"
end