-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathwin32screenshot.gemspec
25 lines (22 loc) · 979 Bytes
/
win32screenshot.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "win32/screenshot/version"
Gem::Specification.new do |s|
s.name = "win32screenshot"
s.version = Win32::Screenshot::VERSION
s.authors = ["Jarmo Pertman", "Aslak Hellesøy"]
s.email = ["jarmo.p@gmail.com", "aslak.hellesoy@gmail.com"]
s.description = "Capture Screenshots on Windows with Ruby to bmp, gif, jpg or png formats."
s.homepage = "http://github.com/jarmo/win32screenshot"
s.summary = "Capture Screenshots on Windows with Ruby to bmp, gif, jpg or png formats."
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ["lib"]
s.license = "MIT"
s.add_dependency("ffi", "~> 1.15.0")
s.add_dependency("mini_magick", "~> 4.9")
s.add_dependency("rautomation", "~> 2.0")
s.add_development_dependency("rspec", "~> 3.10")
s.add_development_dependency("yard")
s.add_development_dependency("rake")
end