-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathorly.gemspec
28 lines (24 loc) · 1.08 KB
/
orly.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
27
28
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "orly/version"
Gem::Specification.new do |s|
s.name = "orly"
s.version = Orly::VERSION
s.authors = ["yon"]
s.email = ["[email protected]"]
s.licenses = ['MIT']
s.homepage = "http://github.com/yonbergman/orly"
s.summary = %q{Tells you when you need to run `bundle install`, `rake db:migrate`, `pod install`, `npm`, `bower install` }
s.description = %q{Install a post-merge hook for git that tells you when the Gemfile changed or a migration was added}
s.rubyforge_project = "orly"
s.files = `git ls-files`.split("\n") - ["Gemfile.lock"]
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
#s.add_development_dependency "rake"
#s.add_development_dependency "rspec"
s.add_runtime_dependency "git"
s.add_runtime_dependency "choice"
s.add_runtime_dependency "colored"
end