-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathProMotion-menu.gemspec
24 lines (18 loc) · 1.01 KB
/
ProMotion-menu.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
require File.expand_path('../lib/ProMotion/menu/version.rb', __FILE__)
Gem::Specification.new do |s|
s.name = 'ProMotion-menu'
s.version = ProMotion::Menu::VERSION
s.authors = ["Matt Brewer", "Ryan Linton", "Jamon Holmgren"]
s.summary = "Provides a facebook/Path style slide menu for ProMotion RubyMotion apps."
s.description = "ProMotion DSL integration with MMDrawerController cocoapod providing a left and/or right 'slide' out menu complete with gestures for reveal/hide."
s.homepage = "https://github.com/clearsightstudio/ProMotion-menu"
s.files = Dir["lib/**/*"] + ["README.md"]
s.test_files = Dir["spec/**/*"]
s.require_paths = ['lib']
s.license = "MIT"
s.add_dependency "motion-cocoapods", "~> 1"
s.add_dependency "ProMotion", "~> 2"
s.add_development_dependency "rake", "~> 12"
s.add_development_dependency "motion-stump", "~> 0.3"
end