ruby2.2-rubygem-slop-testsuite-4.2.0-6.3>t  DH`pY.츋/=„MW(c2 PC}u]:fƏʃ!0*$B*ml"`:GS9|p$ԫ0 I.o*y3B%Y\ ?W/F*0 ^-,~\Wh( ̮]Ԭw\E40_t ^&R1 r q C|ME"&CGl_9MELebbjfH+Rэ=y 5ލQ9ץPd1c4a0f3979d1677f5922e70a100f458dd9338795HY.츋/=„/A;=zk3`_Xe1X+7A޵LOfV9NiZ`dh[%R 0H꿆!Vk;7?HH$nEiV2cJ=j㗣/GnO?E~ .L Jl"s*򰂃XCZQYHHG!#M4+)f9%?%d!' + ?tx  , < L l T \| Td(89@:F"G"H"I#X#Y#\#$]#D^#b$c$d$e$f%l%u%v%8w%x%z%Cruby2.2-rubygem-slop-testsuite4.2.06.3Test suite for slopTest::Unit or RSpec files, useful for developers.Y.cloud109.openSUSE Leap 42.3openSUSEMIThttp://bugs.opensuse.orgDevelopment/Languages/Rubyhttp://github.com/leejarvis/sloplinuxx86_646 O A큤Y.Y.Y.Y.Y.Y.Y.Y.181c9e537ea60b5099f9e569a5733ac45e51970cbd588c47d36e91320d1668260dda15e538cac762230d0830cb4406e12c5b96a9b93f8ac5af48cb88a9295b5e74bce0f9dc91608510a2f9d58269a6e2729e3f178003380ee0d1236581f68db8cbc1fb182011fcfc8ce9b240ef7843e6rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrubygem-slop-4.2.0-6.3.src.rpmruby2.2-rubygem-slop-testsuiteruby2.2-rubygem-slop-testsuite(x86-64)   rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)ruby2.2-rubygem-sloprpmlib(PayloadIsLzma)3.0.4-14.0-14.2.04.4.6-14.11.2U@U8TT:m@S(5@RG@QQxQGP@P?UOO@NqNM@M@MMMI@coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comsaschpe@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.demrueckert@suse.de- updated to version 4.2.0 see installed CHANGELOG.md v4.2.0 (2015-04-18) - ------------------ Features: * Support for Regexp option type #167 (Laurent Arnoud) * Support prefixed `--no-` for explicitly setting boolean options to `false` #168 * Better handling of flags with multiple words #169 (Tim Rogers)- updated to version 4.1.0 Features: * Support for FloatOption #156 (Rick Hull) * Support for `limit` config to ArrayOption. * Support for `tail` config to add options to the bottom of the help text. * Add explicit setter (#[]=) to Result class. #162 * Implement flag gettings for UnknownOption and MissingArgument error classes. #165 (sigurdsvela) Minor enhancements: * Reset parser every time `parse` is called. Bug fixes: * Remove "--" from unprocessed arguments #157 (David Rodríguez).- updated to version 4.0.0- updated to version 3.6.0 * Add example of rest arguments usage in the readme file #139 * Default values on options are printed in the help message #134 - new rubygem packaging- updated to version 3.5.0 * Add support for `as: Regexp` #132- updated to version 3.4.7 * Ensure trash is cleared on every parse so you can parse multiple times with the same instance (#130)- updated to version 3.4.6 * Ensure short-options still consume trailing arguments, ie `-abc foo` should assign `foo` to the option `c` if it expects an argument (#114).- updated to version 3.4.5 * Allow specifying long options starting with numbers (#110, Peter Zotov)- updated to version 3.4.4 * Disable the run callback when the help option is used and `-h` or `--help` is passed. #106 * Ensure default `--help` option exits by default (#107, Autumn Perrault).- updated to version 3.4.3 * Ensure `parse!` removes commands and their options. * Expose the Hash commands as public API. * Deprecated `Slop.optspec`. * Ensure help output prints to stdout, not stderr. * Ensure options replace any existing duplicates * Command config options now inherit config options from top level Slop. * Command help output now adds command in usage string. * Implement new command system (#95) * Deprecate Slop::Commands * Ensure 'no-foo' options are not inverted when parsing '--no-foo' (#86) * Code refactoring and simplification (Kenichi Kamiya, #84, #85)- update to 3.3.3 and merge rubygem-slop-3_3 * Ensure autocreate arguments are not created as options (#77) * Ensure options are not swallowed when using short options with argument included (#74)- Update to version 2.4.4: * No upstream changelog for this version (yet)- update to version 2.4.3 * Allow the `:as` option to accept an object responding to :call for custom type conversions (#45) * Ensure negative integers are not parsed as possible options (#46) - additional changes from 2.4.2 * Fix checking of required options (Dominik Honnef) - additional changes from 2.4.1 * Ensure optional arguments are returned correctly - additional changes from 2.4.0 * Avoid `define_method` for checking an options presence (and caching it) #37 * Ensure the short option allows an appended `=` for accepting arguments * Implement `respond_to?` - additional changes from 2.3.1 * Return `nil` for any options using casting which don't expect arguments (#33) * Fix parenthesis warning on 1.8.7 (@shevegen) * Ensure long argument is a string before attempting to use `#[]` method on it - additional changes from 2.3.0 * Allow flags to have suffixed `=` char for options which accept an argument - additional changes from 2.2.0 * Support `bup.options` style optspec parsing * http://apenwarr.ca/log/?m=201111 * Allow `:as` to accept a `count` value (Conrad Irwin): `on :v, :verbose, :as => :count # -vv; opts[:verbose] #=> 2`- update to version 2.1.0 * Added `Slop#missing` for returning a list of missing options parsed * Allow `Slop#present?` to accept multiple arguments * Added `:all_accept_arguments` to Slop configuration options, this saves having to specify that every option takes an argument * Added `Slop#to_struct` for building new classes from options - additional changes from 2.0.0 * Deprecations: * Removed `Slop::Options#to_hash` continue using `Slop#to_hash` directly. This method also now returns symbols by default instead of strings. If you want strings use `opts.to_hash(false)` * `:multiple_switches` is now enabled by default, to parse `fbar` as the option `f` with value `bar` you must disable `:multiple_switches` * Removed `Slop::Options#to_help` and merged its contents into `Slop#help` * Removed `lib/slop/options.rb` and merged `Slop::Options` into slop.rb * Removed `lib/slop/option.rb` and merged `Slop::Option` into slop.rb * These changes make Slop much easier to vendor in libraries * `Slop::Option` now inherits from `Struct.new` * Added Slop::Error subclassing from StandardError which all exception classes should inherit from * Added Slop::MissingOptionError and `:required` option to Slop::Option. This exception is raised when a mandatory option is not used- update to slop 1.9.1 * Ensure optional items with no arguments still return true when searching for presence - additional changes from 1.9.1 * Add command completion and support for an error message when ambiguous commands are used * Add command aliases * Fix: Ensure parsed elements are removed from original arguments when using `:multiple_switches` * Ensure anything after `--` is parsed as an argument and not option even if prefixed with `/--?/` * Performance improvements when making many calls to `Slop#option?` for checking an options presence (Rob Gleeson) * Ensure `execute` passes command arguments to the block * Support for summary and description (Denis Defreyne) - additional changes from 1.8.0 * Added `execute` method to Slop for commands. This block will be invoked when a specific command is used. The Slop object will be yielded to the block * Allow passing a class name to `on` to be used as an `:as` option. ie: `on :people, 'Some people', Array` * Get smart with parsing options optparse style: `on '--name NAME'` and `on 'password [OPTIONAL]'` * Feature: `:arguments` setting to enable argument passing for all options - additional changes from 1.7.0 * Feature: Autocreate (auto create options at parse time, making assumptions) * Feature: When parsing options as arrays, push multiple arguments into a single array - additional changes from 1.6.1 * Fix tests and using a temporary Array for ARGV, fixes RubyGems Test issues * General cleanup of code- slop 1.6.0 * Add `:ignore_case` to Slop options for case insensitive option matching * Add `:on_noopts` for triggering an event when the arguments contain no options * Add `:unless` to Slop::Option for omitting execution of the * Options block when this object exists in the Array of items * passed to Slop.new * Bugfix: Do not parse negative integers as options. A valid option must start with an alphabet character * Bugfix: Allow a Range to accept a negative Integer at either end- update to 1.5.5 - only grab options that are actually options- update to 1.5.4 - parse! shouldn't remove unparsed items with same value as a parsed item.- update to 1.5.3- initial package (v1.1.0)cloud109 14962470014.2.0-6.34.2.0-6.3testerror_test.rboption_test.rboptions_test.rbparser_test.rbresult_test.rbtest_helper.rbtypes_test.rb/usr/lib64/ruby/gems/2.2.0/gems/slop-4.2.0//usr/lib64/ruby/gems/2.2.0/gems/slop-4.2.0/test/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Leap:42.3/standard/e95450d28656963beb3c84d7a7a0a79d-rubygem-slopcpiolzma5x86_64-suse-linuxdirectoryRuby script, ASCII textRuby module source, ASCII textASCII textG"PI?p] crt:bLL' i3D>(% LiEP- __/ 9JlEH|k<++$^-EVzsL (> eK`-Sf B 8H`~dU$;Ovx%FxiP1`Y" D>M1i*pjS7d*XؔhMtr>;lKҒC6MPs>ڌDe(( Cɨ9Ew#.B}^V%4(MJ풫mlغs>o.XqyjV b@L=ϕ=h A_rlt9Bfߘ%p<aSmW0op)5-~dNgQݏ]dku*x9J˾B' HLZ4A|j+eewZ[NuMc?gف#$ռo7.API4>P)LMrfpPu%H>mS!X/dw2N 4rI9jWYhbU l2(Ke2 = 1Q}G!ǣyQ(-t H"OIJ]sj-EH] 1$#xux ߬Nuq_/h?!<;bwKc!@j?9!婚Ea|&uwJJȆ *uq~lEU{NC#~"-cb:Q eVRȘ/ MlBUG#,z8FF q PCj^NV׏lf /$!/݆ D.Abe%h_A؁&pT=t2F7-)NJo>5mx2BQ,1Ikao q+v?< ƀM%Q!)@AՒ,UOBU(d/V~<95SԭR9>6]2MI|Z\.+\IW.T"5~xwN`u}-OYK CG{V׹e[oMbgS} Y$jL~v.ΜbR02_J D2 *8w(;qڻFNZ4rװsBHrt!~\?Fx,M9\Q`mYnB0w{V >F6*we1ɝM YFuk8;^[W!צ?:~[ut&o_7Jے֌WH3"_\$N:(h(gL n?yb$E?u[E=Aފ'l%I{ v|*8!7bɺBn+:g*PVpF 3•D?_Xhi>Jno*i[ỸMU "1a="i,qR_M:[u޸D0n7%oCi^{OTf$ڀ3|Um%2Mش: kNZ`L\ȯ ÿK0 Š I2Dv šœ }MYM!tɥ#x͟VzN|; vgF9T^sMx9<}[Fͣ(cBM=n,~e׶1iAr4lZq1f*N~hQE ((VKe XE`@U3(k uƗwD/$TnaߑffՎ͜+9n%3*шlu"{Qvbg53 [ξ6M{y۾80W-B ~' ) _ ZI"uݖwAQ|tad;;ݢ7nP6s0ig{ zxD WSx"IÂG鲋}xY z#Tno%{]d/"(dC L!#8U7E†/@fa? < &i9I-ϛx ~"N^s$U3`W<$+l҆dfFrļ"Bzٵ.i(0ojjcçgԆ2X v=E)|h$PX޽wxg=K&;B*NmD }lEn1$Ǯ dZV*3[:b#whhb|p!?b[[g|(vwJL yD] ˑqD7mS90Q.وO($_:Ȳ Ob~ސ\ɉb)B@~@wSH\hE ȵa+2[Z$,tl,BQGu{V/p#/U6w8/@W zO,[@j칡C96r)A&(邩NXY]XfvFp{os"Rl[., dԛ  gdl2hHgd>GbxɉN [09ljk u(cޭ]>C%ӑ߬F'2E '#rXRuŠ ndΓ WBr2.dwDIoǎ,6,ӳ~ܗlwKOm*ѧ;%ɗ`&`}FۭvR6WAp@eW x|^pC5_͑( (x ·TqY+f\Z