-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsome_html.gemspec
More file actions
22 lines (17 loc) · 824 Bytes
/
some_html.gemspec
File metadata and controls
22 lines (17 loc) · 824 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 "some_html/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "some_html"
s.version = SomeHtml::VERSION
s.authors = ["toxix"]
s.email = ["no-spam"]
s.homepage = "https://github.com/toxix/some_html"
s.summary = "allows xss safe html markups"
s.description = "some_html allows some safe html markups, while prevent xss and site markup (not closed html-Tags, will be escaped). Ideal for display content edited in WYSIWYG editors like ckeditor"
s.rubyforge_project = "didactic_clock"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", ">= 4.0.0"
end