-
Notifications
You must be signed in to change notification settings - Fork 10
/
ruco.gemspec
24 lines (21 loc) · 931 Bytes
/
ruco.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
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
name = "ruco"
require "#{name}/version"
Gem::Specification.new name, Ruco::VERSION do |s|
s.summary = "Desktop-style, Intuitive, Commandline Editor in Ruby. 'Better than nano, simpler than vim.'"
s.authors = ["Michael Grosser"]
s.email = "[email protected]"
s.homepage = "https://github.com/grosser/#{name}"
s.files = `git ls-files lib bin MIT-LICENSE.txt spec/fixtures/railscasts.tmTheme`.split("\n")
s.executables = ["ruco"]
s.license = "MIT"
s.required_ruby_version = '>= 2.7.0'
s.add_runtime_dependency "clipboard", ">= 0.9.8"
s.add_runtime_dependency "textpow", ">= 1.3.0"
s.add_runtime_dependency "language_sniffer"
s.add_runtime_dependency "dispel", ">= 0.0.7"
s.post_install_message = <<-TEXT
Mac: shift/ctrl + arrow-keys only work in iterm (not Terminal.app)
Ubuntu: sudo apt-get install xclip # to use the clipboard
TEXT
end