skype 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/History.txt +4 -0
- data/lib/skype/version.rb +1 -1
- data/samples/chat_list.rb +13 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f8611a44ee82314eed292caf5093b9a10aa2667
|
4
|
+
data.tar.gz: e6c997dbd9dbc497d4c112e48b410c9072dd148e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21b8eb038088dd26031e1aafb2a0d08183f5f06a23799271246a521dab61f459a9ce0b8d36990862e92e8281004f23c0acba3dba2f71804764d15aba5119cf59
|
7
|
+
data.tar.gz: 9aad06c79910950188f41ad160f2aa38bf0893cb8125a43bbf27ad90b3979d242284f538c33a835b12f1bc8ce9c6af6e09f6e1fdfd9b7ffe7483411dfbf5fff1
|
data/Gemfile.lock
CHANGED
data/History.txt
CHANGED
data/lib/skype/version.rb
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'rubygems'
|
3
|
+
$:.unshift File.expand_path '../lib', File.dirname(__FILE__)
|
4
|
+
require 'skype'
|
5
|
+
|
6
|
+
Skype.chats.each do |chat|
|
7
|
+
puts "-"*5
|
8
|
+
puts "#{chat.id}"
|
9
|
+
puts "\"#{chat.topic}\"" unless chat.topic.empty?
|
10
|
+
chat.messages.reverse[0...3].each do |m|
|
11
|
+
puts m
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: skype
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sho Hashimoto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tmp_cache
|
@@ -92,6 +92,7 @@ files:
|
|
92
92
|
- lib/skype/wrappers/chat.rb
|
93
93
|
- lib/skype/wrappers/error.rb
|
94
94
|
- samples/call.rb
|
95
|
+
- samples/chat_list.rb
|
95
96
|
- samples/send_message.rb
|
96
97
|
- skype.gemspec
|
97
98
|
- test/test_call.rb
|