# File lib/fastcst/command/env.rb, line 9 9: def initialize(argv) 10: @regex = ".*" 11: 12: super(argv, [ 13: # set options 14: ["-s", "--set KEY", "Key to set (no parameter means delete)", :@key], 15: ["-v", "--value VALUE", "Value used with the -s (set) command", :@value], 16: 17: # get options 18: ["-g", "--get REGEX", "Get any values that match the regex", :@regex], 19: ["-t", "--type", "Get the type of the variable", :@type] 20: ]) 21: 22: @repo_dir = Repository.search 23: 24: end