Compare commits

...

2 commits

Author SHA1 Message Date
5d33969ff8 Package share/ (gemspec) 2024-07-19 01:00:59 -03:00
457b130a02 Remove unused executables 2024-07-19 00:57:36 -03:00
3 changed files with 10 additions and 17 deletions

View file

@ -1,8 +0,0 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
require "bundler/setup"
require "capsicum"
require "irb"
IRB.start(__FILE__)

View 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

View file

@ -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"