forked from urvin-compliance/caracal-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
caracal-rails.gemspec
27 lines (23 loc) · 1.32 KB
/
caracal-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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'caracal/rails/version'
Gem::Specification.new do |spec|
spec.name = 'caracal-rails'
spec.version = Caracal::Rails::VERSION
spec.authors = ['Trade Informatics', 'John Dugan']
spec.email = ['[email protected]']
spec.summary = %q{ Caracal::Rails makes using Caracal in Rails a no-brainer. }
spec.description = %q{ Caracal::Rails takes care of registering Microsoft Word output with Rails. Essentially, this involves registering the mime type, establishing a template handler for .docx formats, and establishing sane defaults for generating professional quality Word documents. }
spec.homepage = 'https://github.com/ibpinc/caracal-rails'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'caracal', '~> 1.0'
spec.add_dependency 'rails', '>= 3.2'
spec.add_development_dependency 'appraisal', '~> 1.0'
spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'rspec-rails', '~> 3.0'
end