forked from jejacks0n/mercury
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mercury-rails.gemspec
31 lines (26 loc) · 1.13 KB
/
mercury-rails.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
29
30
31
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'mercury/version'
Gem::Specification.new do |s|
# General Gem Information
s.name = 'mercury-rails'
s.date = '2012-10-19'
s.version = Mercury::VERSION
s.authors = ['Jeremy Jackson']
s.email = ['[email protected]']
s.homepage = 'http://github.com/jejacks0n/mercury'
s.summary = %Q{Mercury Editor: The Rails HTML5 WYSIWYG editor}
s.description = %Q{A fully featured and advanced HTML5 WYSIWYG editor written in CoffeeScript on top of the Rails asset pipeline}
s.licenses = ['MIT']
# Runtime Dependencies
s.add_dependency 'railties', '>= 3.2'
s.add_dependency 'coffee-rails', '>= 3.2.2'
# Gem Files
s.extra_rdoc_files = %w(LICENSE POST_INSTALL)
# = MANIFEST =
s.files = Dir['lib/**/*', 'vendor/assets/**/*', 'app/**/*', 'db/migrate/*', 'config/engine.rb', 'config/routes.rb']
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
# = MANIFEST =
s.require_paths = %w(lib)
end