-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathperron.gemspec
More file actions
27 lines (20 loc) · 1.13 KB
/
perron.gemspec
File metadata and controls
27 lines (20 loc) · 1.13 KB
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
require_relative "lib/perron/version"
Gem::Specification.new do |spec|
spec.name = "perron"
spec.version = Perron::VERSION
spec.authors = ["Rails Designer Developers"]
spec.email = "devs@railsdeigner.com"
spec.summary = "Rails-based static site generator"
spec.description = "Perron is a Rails-based static site generator that follows Rails conventions. It allows you to create content collections with markdown or ERB, configure SEO metadata, and build production-ready static sites while leveraging your existing Rails knowledge with familiar patterns and minimal configuration."
spec.homepage = "https://perron.railsdesigner.com/"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/Rails-Designer/perron/"
spec.files = Dir["{bin,app,lib}/**/*", "Rakefile", "README.md", "perron.gemspec", "Gemfile", "Gemfile.lock"]
spec.required_ruby_version = ">= 3.4.0"
spec.add_dependency "rails", ">= 7.2.0"
spec.add_dependency "mata", "~> 0.8.0"
spec.add_runtime_dependency "csv"
spec.add_runtime_dependency "json"
spec.add_runtime_dependency "psych"
end