forked from veger/ruby-bbcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-bbcode.gemspec
More file actions
22 lines (18 loc) · 771 Bytes
/
ruby-bbcode.gemspec
File metadata and controls
22 lines (18 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "ruby-bbcode/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "ruby-bbcode"
s.version = RubyBbcode::VERSION
s.authors = ["Maarten Bezemer"]
s.email = ["maarten.bezemer@gmail.com"]
s.homepage = "http://github.com/veger/ruby-bbcode"
s.summary = "ruby-bbcode-#{s.version}"
s.description = "Convert BBCode to HTML and check whether the BBCode is valid."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.textile"]
s.test_files = Dir["test/**/*"]
s.add_dependency 'activesupport'
s.add_development_dependency 'rake'
s.add_development_dependency 'pry'
end