-
Notifications
You must be signed in to change notification settings - Fork 0
/
mastiff.gemspec
48 lines (34 loc) · 1.64 KB
/
mastiff.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#$:.push File.expand_path("../lib", __FILE__)
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
# Maintain your gem's version:
require "mastiff/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "mastiff"
s.license = "MIT"
s.version = Mastiff::VERSION
s.authors = ["Ashley Raiteri"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/ashrocket/mastiff.git"
s.summary = "Mastiff gem is a rails engine for processing and emailed artifacts that are regularly updated."
#s.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with?('spec/') }
#s.files = `git ls-files`.split("\n")
s.files = Dir.glob("{bin,lib}/**/*") + %w(README.md)
#s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "rails", "~> 4.0"
s.add_dependency "activesupport", "~> 4.0"
s.add_runtime_dependency 'highline', '~> 1.7'
s.add_runtime_dependency 'mail', '~> 2.6'
s.add_runtime_dependency 'carrierwave', '~> 0.10'
s.add_runtime_dependency 'redis-objects', '~> 0.9'
s.add_runtime_dependency 'sidekiq', '~> 3.5.0'
s.add_runtime_dependency 'sidekiq-cron', '~> 0.3.1'
s.add_dependency 'sidekiq-lock', '~> 0.2'
#s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.description = <<eos
Mastiff gem provides interface to an redis based model with Emails and attachments.
eos
end