micro_vkontakte 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,2 +1,3 @@
1
+ v0.0.3 bug fixes
1
2
  v0.0.2 second release
2
3
  v0.0.1 first release
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('micro_vkontakte', '0.0.2') do |p|
5
+ Echoe.new('micro_vkontakte', '0.0.3') do |p|
6
6
  p.description = "Vkontakte api tools."
7
7
  p.url = "http://github.com/gvalmon/micro_vkontakte"
8
8
  p.author = "Iskander Haziev"
@@ -8,7 +8,7 @@ module MicroVkontakte
8
8
  class Session
9
9
  VK_API_URL = 'http://api.vk.com/api.php'
10
10
  VK_METHODS = %w{
11
- wall fiends photos messages newsfeed status audio video places
11
+ wall friends photos messages newsfeed status audio video places
12
12
  secure language notes pages offers questions polls subscriptions
13
13
  }
14
14
  attr_accessor :app_id, :api_secret
@@ -41,7 +41,7 @@ module MicroVkontakte
41
41
  define_method(method) do
42
42
  variable = instance_variable_get("@#{method}")
43
43
  unless variable
44
- variable = self.new(app_id, api_secret, method)
44
+ variable = self.class.new(app_id, api_secret, method)
45
45
  instance_variable_set("@#{method}", variable)
46
46
  end
47
47
  variable
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{micro_vkontakte}
5
- s.version = "0.0.2"
5
+ s.version = "0.0.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Iskander Haziev"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: micro_vkontakte
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Iskander Haziev