File: dumper.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 (15 lines) | stat: -rw-r--r-- 241 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module Nenv
  class Environment
    module Dumper
      require 'nenv/environment/dumper/default'

      def self.setup(&callback)
        if callback
          callback
        else
          Default
        end
      end
    end
  end
end