springnote_client 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,6 @@
1
+ = 0.0.4 2008-10-09
2
+ * BUG: can't edit resource
3
+
1
4
  = 0.0.3 2008-10-08
2
5
  * support attachment resource
3
6
 
@@ -88,7 +88,7 @@ module Springnote
88
88
 
89
89
  def method_missing(method, *args)
90
90
  str = method.to_s
91
- (str[-1].to_s == "=") ?
91
+ (str[-1,1].to_s == "=") ?
92
92
  @hash[str[0..-2]] = args[0] :
93
93
  @hash[str]
94
94
  end
@@ -2,7 +2,7 @@ module SpringnoteClient #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 3
5
+ TINY = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: springnote_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan Kang