forked from ejholmes/active_admin_editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive_admin_editor.gemspec
More file actions
26 lines (21 loc) · 885 Bytes
/
active_admin_editor.gemspec
File metadata and controls
26 lines (21 loc) · 885 Bytes
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "active_admin/editor/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "active_admin_editor"
s.version = ActiveAdmin::Editor::VERSION
s.authors = ["Eric Holmes"]
s.email = ["eric@ejholmes.net"]
s.homepage = "https://github.com/ejholmes/active_admin_editor"
s.summary = "Rich text editor for Active Admin using wysihtml5."
s.description = s.summary
s.files = Dir["{app,config,db,lib,vendor}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.add_dependency "rails", ">= 3.0.0"
s.add_dependency "carrierwave"
s.add_dependency "rmagick"
s.add_development_dependency "sqlite3"
s.add_development_dependency "rspec"
s.add_development_dependency "activeadmin"
end