forked from Mange/roadie-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
roadie-rails.gemspec
29 lines (25 loc) · 1.2 KB
/
roadie-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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'roadie/rails/version'
Gem::Specification.new do |spec|
spec.name = "roadie-rails"
spec.version = Roadie::Rails::VERSION
spec.authors = ["Magnus Bergmark"]
spec.email = ["magnus.bergmark@gmail.com"]
spec.homepage = 'http://github.com/Mange/roadie-rails'
spec.summary = %q{Making HTML emails comfortable for the Rails rockstars}
spec.description = %q{Hooks Roadie into your Rails application to help with email generation.}
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.extra_rdoc_files = %w[README.md Changelog.md LICENSE.txt]
spec.require_paths = ["lib"]
spec.add_dependency "roadie", "~> 3.0"
spec.add_dependency "rails", ">= 3.0", "< 4.3"
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "rspec-collection_matchers"
end