Compare commits
2 commits
5be3adb8bb
...
5d33969ff8
Author | SHA1 | Date | |
---|---|---|---|
5d33969ff8 | |||
457b130a02 |
3 changed files with 10 additions and 17 deletions
|
@ -1,8 +0,0 @@
|
|||
#!/usr/bin/env ruby
|
||||
# frozen_string_literal: true
|
||||
|
||||
require "bundler/setup"
|
||||
require "capsicum"
|
||||
|
||||
require "irb"
|
||||
IRB.start(__FILE__)
|
|
@ -1,8 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
IFS=$'\n\t'
|
||||
set -vx
|
||||
|
||||
bundle install
|
||||
|
||||
# Do any other automated setup that you need to do here
|
|
@ -12,8 +12,17 @@ Gem::Specification.new do |spec|
|
|||
spec.summary = "Ruby bindings for FreeBSD's capsicum(4)"
|
||||
spec.homepage = "https://github.com/0x1eef/bsdcapsicum.rb"
|
||||
spec.licenses = ["0BSD", "MIT"]
|
||||
spec.files = Dir["lib/*.rb", "lib/**/*.rb", "README.md", "LICENSE", "LICENSE.ruby-capsicum", "*.gemspec"]
|
||||
spec.executables = []
|
||||
spec.require_paths = ["lib"]
|
||||
spec.files = Dir[
|
||||
"*.gemspec",
|
||||
"README.md",
|
||||
"LICENSE",
|
||||
"LICENSE.ruby-capsicum",
|
||||
"lib/*.rb",
|
||||
"lib/**/*.rb",
|
||||
"share/**/*.rb",
|
||||
].select { File.file?(_1) }
|
||||
|
||||
spec.add_runtime_dependency "fiddle", "~> 1.1"
|
||||
spec.add_development_dependency "bundler", "~> 2.5"
|
||||
|
|
Loading…
Reference in a new issue