forked from bridgetownrb/serbea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserbea.gemspec
24 lines (18 loc) · 829 Bytes
/
serbea.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
# frozen_string_literal: true
require_relative "lib/version"
Gem::Specification.new do |spec|
spec.name = "serbea"
spec.version = Serbea::VERSION
spec.author = "Bridgetown Team"
spec.email = "[email protected]"
spec.summary = "Similar to ERB, Except Awesomer"
spec.homepage = "https://github.com/bridgetownrb/serbea"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|script|spec|features|docs|serbea-rails)/!) }
spec.require_paths = ["lib"]
spec.add_runtime_dependency("activesupport", ">= 6.0")
spec.add_runtime_dependency("erubi", ">= 1.10")
spec.add_runtime_dependency("tilt", "~> 2.0")
spec.add_development_dependency("rake", "~> 13.0")
end