1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionmailbox.gemspec

27 lines
839 B
Ruby
Raw Normal View History

2018-09-17 19:30:33 -04:00
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "action_mailbox/version"
2018-09-17 19:30:33 -04:00
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "actionmailbox"
s.version = ActionMailbox::VERSION
2018-09-17 19:30:33 -04:00
s.authors = ["Jeremy Daer", "David Heinemeier Hansson"]
s.email = ["jeremy@basecamp.com", "david@loudthinking.com"]
s.summary = "Receive and process incoming emails in Rails"
s.homepage = "https://github.com/basecamp/actionmailbox"
2018-09-17 19:30:33 -04:00
s.license = "MIT"
s.required_ruby_version = ">= 2.5.0"
s.add_dependency "rails", ">= 5.2.0"
s.add_development_dependency "bundler", "~> 1.15"
2018-09-17 20:48:32 -04:00
s.add_development_dependency "sqlite3"
2018-09-18 01:15:27 -04:00
s.add_development_dependency "byebug"
2018-09-17 19:30:33 -04:00
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
end