-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_picture.gemspec
31 lines (24 loc) · 1.08 KB
/
fake_picture.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
30
31
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require_relative "lib/fake_picture/version"
Gem::Specification.new do |spec|
spec.name = "fake_picture"
spec.version = FakePicture::VERSION
spec.authors = ["loqimean"]
spec.email = ["[email protected]"]
spec.summary = "fake pictures"
spec.description = "simple way for fake pictures some categories"
spec.homepage = "https://github.com/loqimean/fake_picture"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
spec.metadata["allowed_push_host"] = 'https://rubygems.org/'
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/loqimean/fake_picture"
spec.files = Dir['lib/**/*'] + %w[License.txt README.md]
spec.bindir = 'bin'
spec.executables = ['fake_picture']
spec.require_paths = ['lib']
spec.add_development_dependency('debug', '1.4')
spec.add_development_dependency('rspec', '3.0')
spec.add_development_dependency('simplecov')
end