-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmagicbell.gemspec
More file actions
32 lines (25 loc) · 1.08 KB
/
magicbell.gemspec
File metadata and controls
32 lines (25 loc) · 1.08 KB
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
# frozen_string_literal: true
$LOAD_PATH.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.email = ['hana@magicbell.io', 'nisanth@supportbee.com', 'rahmane@magicbell.io', 'josue@magicbell.io']
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 'activesupport'
s.add_dependency 'httparty'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.9'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'webmock'
s.post_install_message = '
*** Breaking Change:: The 3.0.0 release removes the actionmailer functionality. ***
'
end