forked from joonty/pessimize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpessimize.gemspec
More file actions
29 lines (25 loc) · 1.57 KB
/
pessimize.gemspec
File metadata and controls
29 lines (25 loc) · 1.57 KB
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
29
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pessimize/version'
Gem::Specification.new do |gem|
gem.name = "pessimize"
gem.version = Pessimize::VERSION
gem.authors = ["Jon Cairns"]
gem.email = ["jon@joncairns.com"]
gem.description = %q{Add the pessimistic constraint operator to all gems in your Gemfile, restricting the maximum update version.
This is for people who work with projects that use bundler, such as rails projects. The pessimistic constraint operator (~>) allows you to specify the maximum version that a gem can be updated, and reduces potential breakages when running `bundle update`. Pessimize automatically retrieves the current versions of your gems, then adds them to your Gemfile (so you don't have to do it by hand).}
gem.summary = %q{Add the pessimistic constraint operator to all gems in your Gemfile, restricting the maximum update version.}
gem.homepage = "https://github.com/joonty/pessimize"
gem.add_dependency 'bundler'
gem.add_dependency 'optimist'
gem.add_development_dependency 'rspec', '~> 3.12.0'
gem.add_development_dependency 'rspec-its', '~> 1.3.0'
gem.add_development_dependency 'rake', '~> 13.0.6'
gem.add_development_dependency 'codeclimate-test-reporter', '~> 0.6.0'
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^spec/})
gem.require_paths = ["lib"]
gem.license = 'MIT'
end