forked from ryanlntn/medic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
medic.gemspec
22 lines (19 loc) · 843 Bytes
/
medic.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/medic/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = "medic"
spec.version = Medic::VERSION
spec.authors = ["Ryan Linton"]
spec.email = ["[email protected]"]
spec.description = %q{RubyMotion Wrapper for HealthKit}
spec.summary = %q{A RubyMotion Wrapper for HealthKit}
spec.homepage = "https://github.com/ryanlntn/medic"
spec.license = "MIT"
spec.files = Dir.glob("lib/**/*.rb")
spec.files << "README.md"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = Dir.glob("spec/**/*.rb")
spec.require_paths = ["lib"]
spec.add_development_dependency "rake", "~> 10"
spec.add_development_dependency "motion-stump", "~> 0.3"
end