-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gemspec
23 lines (20 loc) · 911 Bytes
/
.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require File.absolute_path('lib/uploadcare-rails/version.rb')
Gem::Specification.new do |s|
s.name = 'uploadcare-rails'
s.version = Uploadcare::Rails::VERSION
s.summary = "Rubygem to use UploadCare.com service with ease."
s.description = "Rubygem to use UploadCare.com service and serve file uploads in your Rails projects."
s.authors = ["Alexander Zinchenko"]
s.email = '[email protected]'
s.files = (Dir['lib/**/*.rb'] + Dir['vendor/**/*']) << 'init.rb'
s.require_paths = ['lib']
s.homepage = 'http://github.com/uploadcare/uploadcare-rails'
s.add_runtime_dependency 'uploadcare'
s.post_install_message = <<-EOS
==================================================
Thank you for installing Uploadcare.com Rails gem.
Make sure you completed steps described in the
gem README.
==================================================
EOS
end