-
Notifications
You must be signed in to change notification settings - Fork 87
/
badge.gemspec
26 lines (20 loc) · 975 Bytes
/
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
# 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', '>= 2.0'
spec.add_dependency('mini_magick', '>= 4.9.4', '< 5.0.0') # to add badge image on app icon
end