forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquilt_rails.gemspec
27 lines (21 loc) · 1.11 KB
/
quilt_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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "quilt_rails/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "quilt_rails"
spec.version = Quilt::VERSION
spec.authors = ["Mathew Allen"]
spec.email = ["mathew.allen@shopify.com"]
spec.homepage = "https://github.com/Shopify/quilt/tree/master/gems/quilt_rails"
spec.summary = "A turn-key solution for integrating server-rendered react into your Rails app using Quilt libraries."
spec.description = "A turn-key solution for integrating server-rendered react into your Rails app using Quilt libraries."
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.add_dependency 'railties', '>= 3.2.0'
spec.add_dependency 'rails-reverse-proxy', '~> 0.9.0'
spec.add_dependency 'statsd-instrument', '>= 2.8.0'
spec.add_development_dependency 'rubocop', '~> 0.74'
spec.add_development_dependency 'rubocop-git', '~> 0.1.3'
end