forked from jm591/shotgun_ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshotgun_ruby.gemspec
27 lines (22 loc) · 1.11 KB
/
shotgun_ruby.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "shotgun_ruby"
spec.version = "0.1.1"
spec.authors = ["Jonas Moesicke"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/jm591/shotgun_ruby"
spec.summary = "Rust Screenshot Tool"
spec.description = "A ruby gem adaptation of the shotgun screenshot tool for linux. Creates a .pam screenshots at a given path and returns the location."
spec.required_ruby_version = ">= 2.3.0"
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir["lib/**/*.rb", "ext/**/*.{rs,toml,lock,rb}"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extensions = ["ext/shotgun_ruby/extconf.rb"]
# Uncomment to register a new dependency of your gem
spec.add_dependency "rb_sys", "~> 0.9"
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end