forked from vickyonit/noticed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
noticed.gemspec
27 lines (22 loc) · 965 Bytes
/
noticed.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "noticed/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "noticed"
spec.version = Noticed::VERSION
spec.authors = ["Chris Oliver"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/excid3/noticed"
spec.summary = "Notifications for Ruby on Rails applications"
spec.description = "Database, browser, realtime ActionCable, Email, SMS, Slack notifications, and more for Rails apps"
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", ">= 5.2.0"
spec.add_dependency "http", ">= 4.0.0"
spec.add_development_dependency "pg"
spec.add_development_dependency "standard"
spec.add_development_dependency "webmock"
spec.add_development_dependency "mysql2"
spec.add_development_dependency "sqlite3"
end