-
Notifications
You must be signed in to change notification settings - Fork 0
/
malina.gemspec
36 lines (29 loc) · 1.25 KB
/
malina.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
34
35
36
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'malina/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'malina'
s.version = Malina::VERSION
s.authors = ['Renat "MpaK" Ibragimov']
s.email = ['[email protected]']
s.homepage = 'https://github.com/mpakus/malina'
s.summary = 'Malina E-mails UI as Rails Engine'
s.description = 'Interface for browsing sent emails.'
s.license = 'MIT'
s.metadata = {
'changelog_uri' => 'https://github.com/mpakus/malina/blob/master/CHANGELOG.md',
'documentation_uri' => 'https://github.com/mpakus/malina',
'homepage_uri' => 'https://github.com/mpakus/malina',
'source_code_uri' => 'https://github.com/mpakus/malina'
}
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.add_dependency 'rails', '>=5.0', '<=6.0'
s.add_development_dependency 'combustion', '~> 1.1'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'rubocop', '~> 0.49'
s.add_development_dependency 'sqlite3', '~> 1.3.6'
end