forked from galetahub/ckeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathckeditor.gemspec
24 lines (21 loc) · 845 Bytes
/
ckeditor.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ckeditor/version"
Gem::Specification.new do |s|
s.name = "ckeditor"
s.version = Ckeditor::Version::GEM.dup
s.platform = Gem::Platform::RUBY
s.summary = "Rails gem for easy integration ckeditor in your application"
s.description = "CKEditor is a WYSIWYG editor to be used inside web pages"
s.authors = ["Igor Galeta"]
s.email = "[email protected]"
s.licenses = ["MIT"]
s.rubyforge_project = "ckeditor"
s.homepage = "https://github.com/galetahub/ckeditor"
s.files = Dir["{app,config,lib,vendor}/**/*"] + ["MIT-LICENSE", "Rakefile", "Gemfile", "README.md"]
s.test_files = Dir["{test}/**/*"]
s.extra_rdoc_files = ["README.md"]
s.require_paths = ["lib"]
s.add_dependency("terrapin")
s.add_dependency("orm_adapter", "~> 0.5.0")
end