forked from mainmatter/highlight
-
Notifications
You must be signed in to change notification settings - Fork 3
/
highlight.gemspec
35 lines (29 loc) · 1.25 KB
/
highlight.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
30
31
32
33
34
35
# -*- encoding: utf-8 -*-
pkg_files = [
'README.md',
'HISTORY.md',
'LICENSE'
]
pkg_files += Dir['generators/**/*']
pkg_files += Dir['lib/**/*.rb']
pkg_files += Dir['rails/**/*.rb']
pkg_files += Dir['spec/**/*.{rb,yml,opts}']
Gem::Specification.new do |s|
s.name = %q{highlight}
s.version = '2.0.0'
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to?(:required_rubygems_version=)
s.authors = ['Marco Otte-Witte']
s.date = %q{2013-03-23}
s.email = %q{[email protected]}
s.files = pkg_files
s.homepage = %q{http://github.com/simplabs/highlight}
s.license = 'MIT'
s.require_path = 'lib'
s.rubygems_version = %q{1.3.0}
s.summary = %q{Syntax Higlighting plugin for Ruby on Rails }
s.description = %q{Highlight highlights code in more than 20 languages. It uses the Pygments syntax highlighter and adds a simple Ruby API over it. It also provides helpers for use in your Ruby on Rails views.}
if s.respond_to?(:specification_version) then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
end
end