Sha256: c288ff1052729383eb8c6c746ef00891d90b9784adeecf85fc1cf59e4aab9350

Contents?: true

Size: 1.08 KB

Versions: 6

Compression:

Stored size: 1.08 KB

Contents

# -*- 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       = ["yonbergman@gmail.com"]
  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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
orly-0.0.15 orly.gemspec
orly-0.0.14 orly.gemspec
orly-0.0.13 orly.gemspec
orly-0.0.12 orly.gemspec
orly-0.0.11 orly.gemspec
orly-0.0.10 orly.gemspec