forked from thumbor/ruby-thumbor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-thumbor.gemspec
More file actions
22 lines (18 loc) · 814 Bytes
/
ruby-thumbor.gemspec
File metadata and controls
22 lines (18 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'thumbor/version'
Gem::Specification.new do |s|
s.name = "ruby-thumbor"
s.version = Thumbor::VERSION
s.authors = ["Bernardo Heynemann"]
s.description = "ruby-thumbor is the client to the thumbor imaging service (http://github.com/globocom/thumbor)."
s.email = ["heynemann@gmail.com"]
s.files = Dir.glob('lib/**/*.rb') << 'README.rdoc'
s.test_files = Dir.glob('spec/**/*.rb')
s.homepage = "http://github.com/heynemann/ruby-thumbor"
s.rdoc_options = ["--main", "README.rdoc"]
s.summary = "ruby-thumbor is the client to the thumbor imaging service (http://github.com/globocom/thumbor)."
s.add_development_dependency('rspec')
s.add_development_dependency('simplecov')
end