forked from codelation/menu-motion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu-motion.gemspec
23 lines (20 loc) · 983 Bytes
/
menu-motion.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/menu-motion/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = "menu-motion"
spec.version = MenuMotion::VERSION
spec.authors = ["Brian Pattison"]
spec.email = ["[email protected]"]
spec.summary = "A RubyMotion wrapper for creating OS X status bar menus"
spec.description = "MenuMotion is a RubyMotion wrapper inspired by Formotion for creating OS X status bar menus with a syntax that should feel familiar if you've used Formotion."
spec.homepage = "https://github.com/codelation/menu-motion"
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