-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathavruby.gemspec
More file actions
25 lines (22 loc) · 896 Bytes
/
avruby.gemspec
File metadata and controls
25 lines (22 loc) · 896 Bytes
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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "avr/version"
Gem::Specification.new do |s|
s.name = "avruby"
s.version = AVR::VERSION
s.summary = "An AVR emulator, in Ruby"
s.license = "BSD-3-Clause"
s.description = "An AVR emulator, in Ruby. This was written just for fun, to understand AVR."
s.authors = ["Jeremy Cole"]
s.email = "jeremy@jcole.us"
s.homepage = "https://github.com/jeremycole/avruby"
s.files = Dir.glob("{bin,lib}/**/*") + ["LICENSE.md", "README.md"]
s.executables = ["avruby_shell"]
s.require_path = "lib"
s.add_dependency("benchmark", "~> 0.4.0")
s.add_dependency("intel_hex", "~> 0.6.0")
s.add_dependency("rdoc", "~> 6.13.1")
s.add_dependency("sorbet-runtime", "~> 0.5.3")
s.metadata["rubygems_mfa_required"] = "true"
end