forked from HazAT/badge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbadge.gemspec
27 lines (21 loc) · 1.06 KB
/
badge.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
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'badge/base'
Gem::Specification.new do |spec|
spec.name = "badge"
spec.version = Badge::VERSION
spec.authors = ["Daniel Griesser"]
spec.email = ["[email protected]"]
spec.summary = Badge::DESCRIPTION
spec.description = Badge::VERSION
spec.homepage = "https://github.com/HazAT/badge"
spec.license = "MIT"
spec.required_ruby_version = '>= 2.0.0'
spec.files = Dir["lib/**/*"] + %w{ bin/badge README.md LICENSE assets/beta_badge_dark.png assets/beta_badge_light.png assets/alpha_badge_dark.png assets/alpha_badge_light.png }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency 'fastlane_core', '>= 0.44.0', '< 1.0.0' # all shared code and dependencies
spec.add_dependency 'fastimage', '~> 1.6.3' # fetch the image sizes
spec.add_dependency 'mini_magick', '~> 4.5.1' # to add badge image on app icon
end