-
Notifications
You must be signed in to change notification settings - Fork 1
/
mrml-rails.gemspec
28 lines (22 loc) · 1.07 KB
/
mrml-rails.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
require_relative 'lib/mrml/rails/version'
Gem::Specification.new do |spec|
spec.name = 'mrml-rails'
spec.version = Mrml::Rails::VERSION
spec.authors = ['Joakim Nylén']
spec.email = ['[email protected]']
spec.summary = 'Rails Template Engine for MJML (Rust-variant called MRML)'
spec.description = spec.summary
spec.homepage = 'https://github.com/oddcamp/mrml-rails'
spec.license = 'MIT'
spec.files = Dir['README.md', 'lib/**/*']
spec.require_paths = ['lib']
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/oddcamp/mrml-rails'
spec.metadata['changelog_uri'] = 'https://github.com/oddcamp/mrml-rails/releases'
spec.add_runtime_dependency 'actionmailer', '>= 3.1'
spec.add_runtime_dependency 'mrml', '~> 1.0'
spec.add_runtime_dependency 'railties', '>= 3.1'
spec.add_development_dependency 'rspec', '~> 3.10'
spec.add_development_dependency 'rspec-rails', '>= 4.0.2', '~> 5.0'
end