gcal4ruby 0.5.3 → 0.5.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/CHANGELOG +2 -0
- data/lib/gcal4ruby/service.rb +2 -2
- metadata +3 -3
data/CHANGELOG
CHANGED
data/lib/gcal4ruby/service.rb
CHANGED
@@ -135,13 +135,13 @@ module GCal4Ruby
|
|
135
135
|
params[:bgcolor] ||= "#FFFFFF"
|
136
136
|
params[:border] ||= "0"
|
137
137
|
params.each{|key, value| params[key] = CGI::escape(value)}
|
138
|
-
output = "#{params.to_a.collect{|a| a.join("=")}.join("&")}"
|
138
|
+
output = "#{params.to_a.collect{|a| a.join("=")}.join("&")}&"
|
139
139
|
|
140
140
|
if cals.is_a?(Array)
|
141
141
|
for c in cals
|
142
142
|
output += "src=#{c}&"
|
143
143
|
if colors and colors[c]
|
144
|
-
output += "color
|
144
|
+
output += "color=%23#{colors[c].gsub("#", "")}&"
|
145
145
|
end
|
146
146
|
end
|
147
147
|
elsif cals == :all
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 0.5.
|
8
|
+
- 4
|
9
|
+
version: 0.5.4
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Mike Reich
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-05-
|
17
|
+
date: 2010-05-24 00:00:00 +10:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|