File: builder.rb

package info (click to toggle)
ruby-nenv 0.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 517; sh: 4; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 145 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
require 'nenv/environment'

module Nenv
  module Builder
    def self.build(&block)
      Class.new(Nenv::Environment, &block)
    end
  end
end