-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmagicbell.gemspec
33 lines (27 loc) · 1.22 KB
/
magicbell.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
33
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "magicbell/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "magicbell"
s.version = MagicBell::VERSION
s.authors = ["Hana Mohan", "Nisanth Chunduru", "Rahmane Ousmane", "Josue Montano"]
s.homepage = "https://magicbell.com"
s.summary = "Ruby Library for MagicBell"
s.description = "The notification inbox for your product"
s.license = "MIT"
s.files = Dir["{lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency 'httparty'
s.add_dependency 'activesupport'
s.add_dependency 'colorize'
s.add_development_dependency "actionmailer"
s.add_development_dependency "rspec", '~> 3.9'
s.add_development_dependency "webmock"
s.add_development_dependency "pry"
s.add_development_dependency "rake"
s.post_install_message = %q{
*** Breaking Change:: The 2.0.0 release removes the BCC functionality. ***
Please update your MagicBell integration to use the API for creating notifications or downgrade to 1.0.4
}
end