-
Notifications
You must be signed in to change notification settings - Fork 44
/
approvals.gemspec
32 lines (25 loc) · 1.12 KB
/
approvals.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'approvals/version'
Gem::Specification.new do |s|
s.name = "approvals"
s.version = Approvals::VERSION
s.licenses = ['MIT']
s.authors = ["Llewellyn Falco", "Sam Livingston-Gray"]
s.email = ["llewellyn.falco@gmail.com", "geeksam@gmail.com"]
s.homepage = "https://github.com/approvals/ApprovalTests.Ruby"
s.summary = %q{Approval Tests for Ruby}
s.description = %q{A library to make it easier to do golden-master style testing in Ruby}
s.rubyforge_project = "approvals"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'thor', '~> 1.0'
s.add_dependency 'json', '~> 2.0'
s.add_dependency 'nokogiri', '~> 1.8'
# We also depend on the json gem, but the version we need is
# Ruby-version-specific. See `ext/mkrf_conf.rb`.
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.1'
end