-
-
Notifications
You must be signed in to change notification settings - Fork 631
/
react_on_rails.gemspec
44 lines (37 loc) · 1.68 KB
/
react_on_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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "react_on_rails/version"
# rubocop:disable Metrics/BlockLength
Gem::Specification.new do |s|
s.name = "react_on_rails"
s.version = ReactOnRails::VERSION
s.authors = ["Justin Gordon"]
s.email = ["[email protected]"]
s.summary = "Rails with react server rendering with webpack. "
s.description = "See README.md"
s.homepage = "https://github.com/shakacode/react_on_rails"
s.license = "MIT"
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(docs|test|spec|features|gen-examples|tmp|node_modules|node_package|coverage|rakelib|script)/}) ||
f.match(%r{^(jest\.config\.js|book\.json|package\.json|package-scripts\.yml|yarn\.lock|\..*)})
end
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
s.required_ruby_version = ">= 3.0.0"
s.add_dependency "addressable"
s.add_dependency "connection_pool"
s.add_dependency "execjs", "~> 2.5"
s.add_dependency "rails", ">= 5.2"
s.add_dependency "rainbow", "~> 3.0"
s.add_development_dependency "gem-release"
s.post_install_message = '
--------------------------------------------------------------------------------
Checkout https://www.shakacode.com/react-on-rails-pro for information about
"React on Rails Pro" which includes one hour a month of support and a gem for
better performance, via caching helpers, and our node rendering server.
--------------------------------------------------------------------------------
'
end
# rubocop:enable Metrics/BlockLength