forked from visualitypl/textris
-
Notifications
You must be signed in to change notification settings - Fork 13
/
textris.gemspec
40 lines (34 loc) · 2 KB
/
textris.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'textris/version'
Gem::Specification.new do |spec|
spec.name = 'textris'
spec.version = Textris::VERSION
spec.authors = ['Visuality', 'Karol Słuszniak']
spec.email = 'contact@visuality.pl'
spec.homepage = 'http://github.com/visualitypl/textris'
spec.license = 'MIT'
spec.platform = Gem::Platform::RUBY
spec.summary = 'Simple SMS messaging gem for Rails based on concepts and conventions similar to ActionMailer, with some extra features.'
spec.description = "Implement texter classes for sending SMS messages in similar way to how e-mails are sent with ActionMailer-based mailers. Take advantage of e-mail proxying and enhanced phone number parsing, among others."
spec.files = Dir["lib/**/*.rb"]
spec.has_rdoc = false
spec.extra_rdoc_files = ["README.md"]
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency 'bundler', '~> 1.6'
spec.add_development_dependency 'codeclimate-test-reporter', '~> 0.4'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.1'
spec.add_development_dependency 'rspec-sidekiq', '~> 2.0'
spec.add_development_dependency 'scrutinizer-ocular', '~> 1.0'
spec.add_development_dependency 'simplecov', '~> 0.9'
spec.add_development_dependency 'twilio-ruby', '~> 3.12'
spec.add_development_dependency 'nexmo', '~> 2.0'
spec.add_development_dependency 'appraisal', '~> 2.1'
spec.add_runtime_dependency 'actionmailer', '>= 4.0'
spec.add_runtime_dependency 'activejob', '>= 4.2'
spec.add_runtime_dependency 'activesupport', '>= 4.2'
spec.add_runtime_dependency 'phony', '~> 2.8'
spec.add_runtime_dependency 'render_anywhere', '~> 0.0'
end