-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkorgi.gemspec
More file actions
23 lines (19 loc) · 795 Bytes
/
korgi.gemspec
File metadata and controls
23 lines (19 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "korgi/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "korgi"
s.version = Korgi::VERSION
s.authors = ["Tsehau Chao"]
s.email = ["jodeci@5xruby.tw"]
s.homepage = "https://github.com/jodeci/korgi"
s.summary = "Markdown filter for Rails resources"
s.description = "Extends the Markdown syntax to allow quick generation of links to Rails resources."
s.license = "MIT"
s.files = Dir["{lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency "rails", "~> 5.0"
s.add_dependency "activesupport", "~> 5.0"
s.add_dependency "html-pipeline", "~> 2.4"
s.add_dependency "carrierwave", "~> 1.0"
end