-
Notifications
You must be signed in to change notification settings - Fork 6
/
thumbor_rails.gemspec
27 lines (22 loc) · 1.05 KB
/
thumbor_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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'thumbor_rails/version'
Gem::Specification.new do |s|
s.name = "thumbor_rails"
s.version = ThumborRails::VERSION
s.authors = ["Rafael Caricio"]
s.description = "thumbor_rails is a client for the thumbor imaging service (http://github.com/globocom/thumbor) for Ruby and Rails projects."
s.email = ["[email protected]"]
s.files = Dir.glob('lib/**/*.rb') << 'README.md'
s.test_files = Dir.glob('spec/**/*.rb')
s.homepage = "https://github.com/rafaelcaricio/thumbor_rails"
s.rdoc_options = ["--main", "README.md"]
s.summary = "thumbor_rails is a client to manage and generate urls for the thumbor imaging service (http://github.com/globocom/thumbor) for Ruby and Rails projects."
s.license = "MIT"
s.add_dependency 'ruby-thumbor', '>= 1.2.1'
s.add_runtime_dependency 'rails', '>= 4.0'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rake'
s.add_development_dependency 'appraisal'
end