aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/skype/t/filetransfer-skyped.mock
blob: b24fcc9456b70dd471df2bc4d776bbbc696682a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
>> SEARCH GROUPS CUSTOM
<< GROUPS 48, 49
>> SEARCH FRIENDS
<< USERS echo123, bob
>> SET USERSTATUS ONLINE
<< USERSTATUS ONLINE
>> SET USERSTATUS ONLINE
<< USERSTATUS ONLINE
>> GET USER echo123 ONLINESTATUS
<< USER echo123 ONLINESTATUS ONLINE
>> GET USER echo123 FULLNAME
<< USER echo123 FULLNAME Echo / Sound Test Service
>> GET USER bob ONLINESTATUS
<< USER bob ONLINESTATUS ONLINE
>> GET USER bob FULLNAME
<< USER bob FULLNAME Bob
<< FILETRANSFER 208 TYPE INCOMING
<< FILETRANSFER 208 PARTNER_HANDLE bob
<< FILETRANSFER 208 PARTNER_DISPNAME bob
<< FILETRANSFER 208 FILENAME text.odt
<< FILETRANSFER 208 STATUS NEW
<< FILETRANSFER 208 FILESIZE 83534193
<< FILETRANSFER 208 STARTTIME 1358458276
<< FILETRANSFER 208 FINISHTIME 0
<< FILETRANSFER 208 BYTESPERSECOND 0
<< FILETRANSFER 208 BYTESTRANSFERRED 0
<< FILETRANSFER 208 FILESIZE 83534193
>> GET FILETRANSFER 208 PARTNER_HANDLE
<< FILETRANSFER 208 PARTNER_HANDLE bob
<< FILETRANSFER 208 FILEPATH /home/alice/text.odt
<< FILETRANSFER 208 STATUS CONNECTING
<< FILETRANSFER 208 STATUS TRANSFERRING
>> GET FILETRANSFER 208 PARTNER_HANDLE
<< FILETRANSFER 208 PARTNER_HANDLE bob
<< FILETRANSFER 208 STATUS COMPLETED
>> GET FILETRANSFER 208 PARTNER_HANDLE
<< FILETRANSFER 208 PARTNER_HANDLE bob
ion> Unnamed repository; edit this file 'description' to name the repository.MimesBrønn
aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gems/rdoc-2.4.3/RI.txt
blob: 27f9e2be78f278106c834291c55941bf018c9d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
= RI
== Background
+ri+ is a tool that allows Ruby documentation to be viewed on the command-line.
It is part of RDoc and is expected to work on any platform supported by Ruby.

+ri+ will be a bit slow the first time that it runs (or any time that the
underlying documentation changes) because it builds a cache in the +.ri+
directory within the user's home directory in order to make future accesses
faster.

== Usage
To see information for a class, do:
  ri class_name

For example, for the +Array+ class, do
  ri Array

To see information for an instance method, do:
  ri class_name#method_name

For example, for Array's +join+ method, do:
  ri Array#join

To see information for a class method, do:
  ri class_name.method_name

For example, for Module's +private+ method, do:
  ri Module.private

To search for all methods containing +read+, do:
  ri read

To search for all methods starting with +read+, do:
  ri '^read'

To search for all +read+ methods, do:
  ri '^read$'

== Options
+ri+ supports a variety of options, all of which can be viewed via +--help+.
Of particular interest, are:
[-d directory]
  List of directories from which to source documentation in addition to
  the standard directories.  May be repeated.  This can be used to specify
  the location of site-specific documentation (which can be generated with
  RDoc).
[-i]
  This makes +ri+ go into interactive mode.  When +ri+ is in interactive mode,
  it will allow the user to disambiguate lists of methods in case multiple
  methods match against a method search string.  It also will allow the user
  to enter in a method name (with auto-completion, if readline is supported)
  when viewing a class.
[-T]
  Send output to stdout, rather than to a pager.

All options also can be specified through the +RI+ environment variable.
Command-line options always override those specified in the +RI+ environment
variable.