-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathfuturism.gemspec
37 lines (31 loc) · 1.14 KB
/
futurism.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "futurism/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "futurism"
spec.version = Futurism::VERSION
spec.authors = ["Julian Rubisch"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/stimulusreflex/futurism"
spec.summary = "Lazy-load Rails partials via CableReady"
spec.description = "Uses custom html elements with attached IntersectionObserver to automatically lazy load partials via websockets"
spec.license = "MIT"
spec.files = Dir[
"lib/**/*.rb",
"lib/**/*.rake",
"app/**/*.rb",
"app/assets/javascripts/*",
"bin/*",
"[A-Z]*"
]
spec.add_development_dependency "appraisal"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "nokogiri"
spec.add_development_dependency "standardrb"
spec.add_development_dependency "sqlite3"
spec.add_dependency "rack", ">= 2", "< 4"
spec.add_dependency "rails", ">= 5.2"
spec.add_dependency "cable_ready", ">= 5.0"
end