-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgems-cli.gemspec
39 lines (37 loc) · 1.66 KB
/
gems-cli.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
29
30
31
32
33
34
35
36
37
38
39
# Ensure we require the local version and not one we might have installed already
require File.join([File.dirname(__FILE__),'lib','gems-cli','version.rb'])
spec = Gem::Specification.new do |s|
s.name = 'gems-cli'
s.version = GemsCli::VERSION
s.authors = ['Chase Southard']
s.email = '[email protected]'
s.homepage = 'https://github.com/chaserx/gems-cli'
s.platform = Gem::Platform::RUBY
s.summary = <<-END.gsub(/^ {14}/, '')
Search rubygems.org from the command line.
Copy formatted gem details for your Gemfile.
END
s.description = <<-END.gsub(/^ {18}/, '')
Search rubygems.org from the command line.
Then you can copy formatted gem details for your Gemfile.
END
s.license = 'MIT'
s.files = `git ls-files`.split(' ')
s.require_paths << 'lib'
s.bindir = 'bin'
s.executables << 'gems'
s.required_ruby_version = '>= 2.4.0'
s.post_install_message = "Thanks for installing! \ngems-cli usage: `gems s chase`"
s.add_development_dependency 'bundler', '~> 2.0'
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rspec', '~> 3.8'
s.add_development_dependency 'yard', '~> 0.9'
s.add_development_dependency 'simplecov', '~> 0.16'
s.add_development_dependency 'rubocop', '>= 0.49.0'
s.add_runtime_dependency 'gli', '~> 2.14', '>= 2.14.0'
s.add_runtime_dependency 'gems', '>= 0.8.3', '< 2.0'
s.add_runtime_dependency 'highline', '>= 1.7.8', '< 3.0'
s.add_runtime_dependency 'clipboard', '~> 1.1', '>= 1.1.0'
s.add_runtime_dependency 'rainbow', '>= 2.1.0', '< 4.0'
s.add_runtime_dependency 'will_paginate', '~> 3.1', '>= 3.1.0'
end