-
Notifications
You must be signed in to change notification settings - Fork 8
/
emd.gemspec
23 lines (22 loc) · 942 Bytes
/
emd.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'emd/version'
require 'emd/post_message'
Gem::Specification.new do |spec|
spec.name = "emd"
spec.version = Emd::VERSION
spec.authors = ["Bryan Lim"]
spec.email = ["[email protected]"]
spec.summary = %q{Markdown partial and .html.md on Rails View}
spec.description = %q{Embedded markdown template for Ruby on Rails}
spec.homepage = "https://github.com/ytbryan/emd"
spec.license = "MIT"
spec.require_paths = ["lib"]
spec.post_install_message = Log::MESSAGE
spec.files = Dir["{app,config,lib}/**/*", "LICENSE.txt", "README.md"]
spec.add_runtime_dependency 'redcarpet', "3.5.1"
spec.add_development_dependency "bundler", "~> 1.11"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency 'coderay', "1.1.3"
end