-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhas_placeholder_image.gemspec
29 lines (23 loc) · 1.19 KB
/
has_placeholder_image.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'has_placeholder_image/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = 'has_placeholder_image'
spec.version = HasPlaceholderImage::VERSION
spec.authors = ['Muhammet Dilmaç', 'Utku Kaynar']
spec.email = %w[iletisim@muhammetdilmac.com.tr utku@buck.ai]
spec.homepage = 'https://www.github.com/buck-ai/has-placeholder-image'
spec.summary = 'A Ruby gem for generating string based placeholder images in Rails.'
spec.description = 'Has Placeholder Image is a Ruby on Rails gem that allows developers to generate placeholder ' \
'images for models depending on the title or name attributes of model.'
spec.license = 'MIT'
spec.files = Dir['lib/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
spec.add_dependency 'rails', '>= 5.0.0'
spec.add_dependency 'rmagick'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'simplecov', '0.17'
spec.add_development_dependency 'simplecov_json_formatter'
spec.add_development_dependency 'sqlite3'
end