-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtinymce-rails-documentupload.gemspec
28 lines (25 loc) · 1.18 KB
/
tinymce-rails-documentupload.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
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require "tinymce-rails-documentupload/version"
Gem::Specification.new do |s|
s.name = "tinymce-rails-documentupload"
s.version = Tinymce::Rails::Documentupload::VERSION
s.authors = ["Florent Morin"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/florentmorin/tinymce-rails-documentupload"
s.summary = %q{TinyMCE plugin for taking documents uploads in Rails >= 3.2}
s.description = %q{TinyMCE plugin for taking documents uploads in Rails >= 3.2}
s.files = [Dir["app/assets/javascripts/tinymce/plugins/uploaddocument/**/*.js"],
Dir["lib/**/*.rb"],
"lib/tasks/tinymce-uploaddocument-assets.rake",
"CHANGELOG.md",
"LICENSE",
"README.md",
].flatten
s.test_files = []
s.require_paths = ["lib"]
s.add_runtime_dependency "railties", ">= 3.2", "< 5"
s.add_runtime_dependency "tinymce-rails", "~> 4.0"
s.add_development_dependency "bundler", "~> 1.0"
s.add_development_dependency "rails", ">= 3.1"
end