forked from river-of-code/quill-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quill-rails.gemspec
21 lines (18 loc) · 905 Bytes
/
quill-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/quill/rails/version', __FILE__)
Gem::Specification.new do |s|
s.name = "quill-rails"
s.authors = ["Robert Wiegmann"]
s.email = ["robert.wiegmann@gmail.com"]
s.homepage = "https://github.com/the-robear/quill-rails"
s.licenses = ["BSD 3 Clause", "Copyright (c) 2013, salesforce.com"]
s.summary = "Quill.js for Rails 3.1/4.0"
s.description = "This gem provides the Quill.js Rich Text Editor assets and view helper for your Rails 3.1/4.0 application."
s.files = Dir["{app,lib}/**/*"] + ["LICENSE", "Gemfile", "README.md"]
s.version = Quill::Rails::VERSION
s.add_dependency "railties", ">= 3.1.0", "< 5.0"
s.add_development_dependency "rails", ">= 3.1"
s.add_development_dependency "jquery-rails"
s.add_development_dependency 'coffee-rails'
s.add_development_dependency "sqlite3"
end