-
Notifications
You must be signed in to change notification settings - Fork 34
/
heya.gemspec
25 lines (19 loc) · 942 Bytes
/
heya.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "heya/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "heya"
spec.version = Heya::VERSION
spec.authors = ["Joshua Wood"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/honeybadger-io/heya"
spec.summary = "Heya 👋"
spec.description = "Heya is a campaign mailer for Rails. Think of it like ActionMailer, but for timed email sequences. It can also perform other actions like sending a text message."
spec.license = "LGPL-3.0"
spec.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md", "CHANGELOG.md", "license_key.pub"]
spec.add_dependency "rails", ">= 5.2.3"
spec.add_development_dependency "pg"
spec.add_development_dependency "appraisal"
spec.post_install_message = "Upgrading from Heya < 0.4? See https://git.io/JtgmW"
end