-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdimples.gemspec
More file actions
30 lines (22 loc) · 761 Bytes
/
dimples.gemspec
File metadata and controls
30 lines (22 loc) · 761 Bytes
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
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path('./lib')
require 'dimples/version'
Gem::Specification.new do |s|
s.name = 'dimples'
s.version = Dimples::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Daniel Bogan']
s.email = ['d+dimples@waferbaby.com']
s.homepage = 'http://github.com/waferbaby/dimples'
s.summary = 'A basic static site generator'
s.description = 'A simple tool for building static websites.'
s.license = 'MIT'
s.required_ruby_version = '> 3.0'
s.executables << 'dimples'
s.files = Dir['lib/**/*']
s.require_path = 'lib'
s.add_dependency 'erb', '~> 4.0'
s.add_dependency 'redcarpet', '~> 3.6'
s.add_dependency 'tilt', '~> 2.3'
s.metadata['rubygems_mfa_required'] = 'true'
end