Sha256: 4cb01de9bbea87178a803dad3101db114a4943f53f0d0de448794f35a03b7c51

Contents?: true

Size: 556 Bytes

Versions: 13

Compression:

Stored size: 556 Bytes

Contents

class CustomFakeParameter < Sprout::Executable::StringParam; end

class FakeOtherExecutableTask < Sprout::Executable::Base

  add_param :boolean_param, Boolean
  add_param :custom_param,  CustomFakeParameter
  add_param :file_param,    File
  add_param :files_param,   Files
  add_param :number_param,  Number
  add_param :path_param,    Path
  add_param :paths_param,   Paths
  add_param :string_param,  String
  add_param :strings_param, Strings
  add_param :urls_param,    Urls

  set :default_prefix, '---'

  add_param_alias :sp, :strings_param
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
sprout-1.1.18.pre test/unit/fake_other_executable.rb
sprout-1.1.17.pre test/unit/fake_other_executable.rb
sprout-1.1.16.pre test/unit/fake_other_executable.rb
sprout-1.1.15.pre test/unit/fake_other_executable.rb
sprout-1.1.14.pre test/unit/fake_other_executable.rb
sprout-1.1.13.pre test/unit/fake_other_executable.rb
sprout-1.1.11.pre test/unit/fake_other_executable.rb
sprout-1.1.10.pre test/unit/fake_other_executable.rb
sprout-1.1.7.pre test/unit/fake_other_executable.rb
sprout-1.1.5.pre test/unit/fake_other_executable.rb
sprout-1.1.4.pre test/unit/fake_other_executable.rb
sprout-1.1.3.pre test/unit/fake_other_executable.rb
sprout-1.1.2.pre test/unit/fake_other_executable.rb