-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmotion-authentication.gemspec
26 lines (23 loc) · 1.06 KB
/
motion-authentication.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 -*-
Gem::Specification.new do |spec|
spec.name = "motion-authentication"
spec.version = "2.0.1"
spec.authors = ["Andrew Havens"]
spec.email = ["email@andrewhavens.com"]
spec.description = %q{A simple, standardized authentication helper for common authentication strategies for RubyMotion apps.}
spec.summary = %q{A simple, standardized authentication helper for common authentication strategies for RubyMotion apps.}
spec.homepage = "https://github.com/rubymotion-community/motion-authentication"
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_dependency "motion-cocoapods"
spec.add_dependency "motion-keychain"
spec.add_dependency "motion-http"
spec.add_dependency "motion-html"
spec.add_development_dependency "rake"
end