-
Notifications
You must be signed in to change notification settings - Fork 5
/
coderay_bash.gemspec
30 lines (27 loc) · 947 Bytes
/
coderay_bash.gemspec
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
# -*- coding: utf-8 -*-
# vi: fenc=utf-8:expandtab:ts=2:sw=2:sts=2
#
# @author: Petr Kovar <[email protected]>
require 'rubygems'
require 'find'
spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.summary = "Simple bash scanner for highlighting with coderay."
s.homepage = "http://github.com/pejuko/coderay_bash"
s.email = "[email protected]"
s.authors = ["Petr Kovar"]
s.licenses = ["MIT"]
s.name = 'coderay_bash'
s.version = '1.0.7'
s.date = Time.now.strftime("%Y-%m-%d")
s.add_dependency('coderay', '>= 1.0')
s.require_path = 'lib'
s.files = ["MIT_License.txt", "README.md", "CHANGELOG", "coderay_bash.gemspec", "Rakefile"]
s.files += Dir["lib/**/*.rb"]
s.post_install_message = <<EOF
This gem was tested with coderay 1.0 and won't work with coderay 0.9.
EOF
s.description = <<EOF
Bash highlighting for coderay. This gem was tested with coderay 1.0 and won't work with coderay < 1.0.
EOF
end