This repository has been archived by the owner on Sep 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathamp-html.gemspec
28 lines (23 loc) · 1.59 KB
/
amp-html.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
# -*- encoding: utf-8 -*-
require File.expand_path File.join('..', 'lib', 'amp-html', 'version'), __FILE__
Gem::Specification.new do |gem|
gem.name = 'amp-html'
gem.version = AmpHtml::VERSION
gem.platform = Gem::Platform::RUBY
gem.summary = 'Reliable high-performance apps with AMP & Rails. Formerly `amphtml`.'
gem.description = "amp-html is a universal solution to integrate the AMP Project (Accelerated Mobile Pages Project) into your Rails app with ease. It enables you to quickly spin-up, build and test your app with AMP, while fulfilling the app's unique requirements. It comes with a bunch of superpowers like user authentication, notifications, blogs, animations and support for assets in AMP. Make your app consistently fast, beautiful and high-performing across devices and distribution platforms."
gem.authors = ['Jonas Hübotter']
gem.email = 'me@jonhue.me'
gem.homepage = 'https://github.com/jonhue/amp-html'
gem.license = 'MIT'
gem.files = Dir['README.md', 'CHANGELOG.md', 'LICENSE', 'lib/**/*', 'app/**/*']
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.3'
gem.add_dependency 'railties', '>= 5.0'
gem.add_dependency 'actionpack', '>= 5.0'
gem.add_dependency 'sprockets-rails', '~> 3.2'
gem.add_dependency 'sass-rails', '~> 5.0'
gem.add_dependency 'mozaic', '~> 1.2'
gem.add_development_dependency 'rspec', '~> 3.7'
gem.add_development_dependency 'rubocop', '~> 0.52'
end