-
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathparity.gemspec
More file actions
21 lines (18 loc) · 759 Bytes
/
parity.gemspec
File metadata and controls
21 lines (18 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require File.expand_path("../lib/parity/version", __FILE__)
Gem::Specification.new do |spec|
spec.authors = ["Dan Croak", "Geoff Harcourt"]
spec.description = <<-eos
Development/staging/production parity makes it easier for
those who write the code to deploy the code.
eos
spec.email = ["ralph@thoughtbot.com"]
spec.executables = ["development", "staging", "production", "pr_app"]
spec.files = `git ls-files -- lib/* README.md`.split("\n")
spec.homepage = "https://github.com/thoughtbot/parity"
spec.license = "MIT"
spec.name = "parity"
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.2.0"
spec.summary = "Shell commands for development, staging, and production parity."
spec.version = Parity::VERSION
end