-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgodmin-uploads.gemspec
27 lines (22 loc) · 1.02 KB
/
godmin-uploads.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "godmin/uploads/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |gem|
gem.name = "godmin-uploads"
gem.version = Godmin::Uploads::VERSION
gem.authors = ["Jens Ljungblad", "Varvet"]
gem.email = ["[email protected]"]
gem.homepage = "https://github.com/varvet/godmin-uploads"
gem.summary = "File uploads for the Godmin admin engine for Rails 4+"
gem.description = "File uploads for the Godmin admin engine for Rails 4+"
gem.license = "MIT"
gem.files = `git ls-files -z`.split("\x0")
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "godmin", "< 3.0", ">= 0.9.7"
gem.add_dependency "refile", "> 0.5.3"
gem.add_development_dependency "bundler", "> 1.7"
gem.add_development_dependency "rake", "> 10.0"
end