soba-mieruka 0.0.3 → 0.0.4
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.
- data/lib/soba/mieruka.rb +5 -0
- data/lib/soba/mieruka/version.rb +1 -1
- metadata +2 -2
data/lib/soba/mieruka.rb
CHANGED
|
@@ -138,6 +138,11 @@ module Soba
|
|
|
138
138
|
make_response(response)
|
|
139
139
|
end
|
|
140
140
|
|
|
141
|
+
def change_nickname(new_nickname)
|
|
142
|
+
response = request_with_auth(:POST, '/change_nickname', :newNickname => new_nickname)
|
|
143
|
+
make_response(response)
|
|
144
|
+
end
|
|
145
|
+
|
|
141
146
|
def get_command(session_url)
|
|
142
147
|
# Returns a Command object which contains a URL to create or join the session
|
|
143
148
|
take_action(GetCommand)
|
data/lib/soba/mieruka/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: soba-mieruka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-04-02 00:00:00.000000000Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: This library is for developing web sites which publish command files
|
|
15
15
|
to create new sessions or to join them for SOBA mieruka Client application.
|