skype 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 57cf53dd39ff5c0815b8f2640d2b4953a952c351
4
- data.tar.gz: 04a4765ce71299b844e5b3dd9b3c75e50a96e969
3
+ metadata.gz: 9ba9442e5fe2d0224467f4aa78d4ae46b9ee3805
4
+ data.tar.gz: d39a519cbeb24ee92a9e6a6d65bedf07cd43f6cb
5
5
  SHA512:
6
- metadata.gz: 2ec61d7ba4485bda049e578bae098e0dd3eab1dce95efd693aed835f73d367200bc388258a3b6f0acf99f7a01bd8bac63e0f8923bff5724d36967d2dd629dc1e
7
- data.tar.gz: 9329c540c794efd9ee9c22e6894f374bea0bf88137c62cc808732daeefdc6ef5324d11cc248987dcc7b4f4d6c2c6090c9356d871155415bcd39d769907a15736
6
+ metadata.gz: a2b5ae7f2e5ef126015d2a26e1b687a62a230bd2551dcb6e8f06d7e89afa2822451df6da4acf7e98316d92206e39c00bed2f086359e36b3bba17eb4c9b25cc52
7
+ data.tar.gz: cd5ed390dd005a8d214060e2824ce3c2c4605e9ed52ee48442551cd7bdfb4487a9fcce230f443003da505c1d03179d60d1c0d672248b39e17c02bce36264ca9f
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- skype (0.2.5)
4
+ skype (0.2.6)
5
5
  tmp_cache
6
6
 
7
7
  GEM
@@ -1,3 +1,7 @@
1
+ === 0.2.6 2013-07-21
2
+
3
+ * use RbConfig::CONFIG[host_os] instead of RUBY_PLATFORM
4
+
1
5
  === 0.2.5 2013-07-12
2
6
 
3
7
  * bugfix for Ruby1.8.7
@@ -4,10 +4,11 @@ require "tmp_cache"
4
4
 
5
5
  require "skype/version"
6
6
  require "skype/filter"
7
- require case RUBY_PLATFORM
8
- when /darwin/
7
+ require "rbconfig"
8
+ require case RbConfig::CONFIG['host_os']
9
+ when /darwin/i
9
10
  "skype/platforms/mac"
10
- when /linux/
11
+ when /linux/i
11
12
  "skype/platforms/linux"
12
13
  else
13
14
  STDERR.puts %Q{!!Skype gem cannot support your platform "#{RUBY_PLATFORM}"}
@@ -1,3 +1,3 @@
1
1
  module Skype
2
- VERSION = "0.2.5"
2
+ VERSION = "0.2.6"
3
3
  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.5
4
+ version: 0.2.6
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-07-12 00:00:00.000000000 Z
11
+ date: 2013-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tmp_cache
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
119
119
  version: '0'
120
120
  requirements: []
121
121
  rubyforge_project:
122
- rubygems_version: 2.0.3
122
+ rubygems_version: 2.0.5
123
123
  signing_key:
124
124
  specification_version: 4
125
125
  summary: Skype Desktop API Ruby wrapper for Mac/Linux.