-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmint.gemspec
More file actions
33 lines (28 loc) · 1.54 KB
/
mint.gemspec
File metadata and controls
33 lines (28 loc) · 1.54 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
28
29
30
31
32
33
require File.expand_path("../lib/mint/version", __FILE__)
Gem::Specification.new do |s|
s.name = "mint"
s.version = Mint::VERSION
s.platform = Gem::Platform::RUBY
s.homepage = "https://github.com/davejacobs/mint"
s.author = "David Jacobs"
s.email = "david@wit.io"
s.license = "MIT"
s.summary = "Publish Markdown documents and notebooks without a word processor"
s.description = "Clean, simple library for maintaining and styling documents without a word processor. Mint aims to bring the best of the Web to desktop publishing, to be completely flexible, and to let the user decide what his workflow is like. A powerful plugin system means almost any conceivable publishing target is an option."
s.executables = [ "mint" ]
s.require_path = "lib"
s.files = Dir["{bin,config,lib,man}/**/*"] + [ "README.md", "Gemfile", "LICENSE" ]
s.test_files = Dir["{features,spec}/**/*"]
s.add_dependency "webrick", "~> 1.8"
s.add_dependency "redcarpet", "~> 3.6", ">= 3.6.1"
s.add_dependency "sass-embedded", "~> 1.89", ">= 1.89.2"
s.add_dependency "toml", "~> 0.3"
s.add_dependency "activesupport", "~> 8.0", ">= 8.0.2.1"
s.add_development_dependency "byebug", "~> 11.1", ">= 11.1.3"
s.add_development_dependency "rspec", "~> 3.13", ">= 3.13.1"
s.add_development_dependency "rspec-its", "~> 1.3"
s.add_development_dependency "colorize", "~> 1.1"
s.specification_version = 3 if s.respond_to? :specification_version
s.required_rubygems_version = ">= 1.3.6"
s.required_ruby_version = ">= 3.0"
end