-
Notifications
You must be signed in to change notification settings - Fork 6
/
wifi-wand.gemspec
32 lines (24 loc) · 1.11 KB
/
wifi-wand.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
32
# coding: utf-8
require_relative 'lib/wifi-wand/version'
Gem::Specification.new do |spec|
spec.name = "wifi-wand"
spec.version = WifiWand::VERSION
spec.authors = ["Keith Bennett"]
spec.email = ["[email protected]"]
spec.description = %q{A command line interface for managing WiFi on a Mac.}
spec.summary = %q{Mac WiFi utility}
spec.homepage = "https://github.com/keithrbennett/wifiwand"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.add_dependency('awesome_print', '>= 1.9.2', '< 2')
# still on version 0, no need to exclude future versions, but need bug fix for pry not pry'ing
# on last line of method:
spec.add_dependency('pry', '>= 0.14.2')
spec.add_development_dependency "bundler", ">= 2.5.9"
spec.add_development_dependency "rake", ">= 13.2.1"
spec.add_development_dependency "rspec", ">= 3.13.0", "< 4"
end