-
Notifications
You must be signed in to change notification settings - Fork 0
/
freezing_email.gemspec
32 lines (28 loc) · 1.25 KB
/
freezing_email.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
32
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'freezing_email/version'
Gem::Specification.new do |spec|
spec.name = "freezing_email"
spec.version = FreezingEmail::VERSION
spec.authors = ["Andrew8xx8"]
spec.email = ["[email protected]"]
spec.description = %q{Saving email messages from your Rails app and view it later}
spec.summary = %q{Saving email messages from your Rails app and view it later}
spec.homepage = "https://github.com/kaize/freezing_email"
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.require_paths = ["lib"]
spec.add_runtime_dependency "rails", "~> 3.2.0"
spec.add_runtime_dependency 'mail'
spec.add_runtime_dependency "sinatra"
spec.add_runtime_dependency "haml"
spec.add_development_dependency "rack"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 2.6"
spec.add_development_dependency "cucumber", "~> 1.0.0"
spec.add_development_dependency "aruba"
spec.add_development_dependency "coveralls"
end