ical_importer 0.0.5 → 0.0.6

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/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ical_importer (0.0.5)
4
+ ical_importer (0.0.6)
5
5
  activesupport (~> 3.0.15)
6
6
  i18n
7
7
  ri_cal
@@ -2,7 +2,7 @@ module IcalImporter
2
2
  class RemoteEvent
3
3
  attr_accessor :event, :utc
4
4
  alias :utc? :utc
5
- delegate :summary, :location, :recurrence_id, :description, :recurs?, :rrule_property, :exdate, :to => :event
5
+ delegate :uid, :summary, :location, :recurrence_id, :description, :recurs?, :rrule_property, :exdate, :to => :event
6
6
 
7
7
  def initialize(event)
8
8
  @event = event
@@ -27,11 +27,11 @@ module IcalImporter
27
27
 
28
28
  def event_attributes
29
29
  {
30
- :uid => event.uid,
31
- :title => event.summary,
30
+ :uid => uid,
31
+ :title => summary,
32
32
  :utc => utc?,
33
- :description => event.description,
34
- :location => event.location || '',
33
+ :description => description,
34
+ :location => location || '',
35
35
  :start_date_time => start_date_time,
36
36
  :end_date_time => end_date_time,
37
37
  :all_day_event => all_day_event?
@@ -1,3 +1,3 @@
1
1
  module IcalImporter
2
- VERSION = '0.0.5'
2
+ VERSION = '0.0.6'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ical_importer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -158,7 +158,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
158
158
  version: '0'
159
159
  segments:
160
160
  - 0
161
- hash: -1619132702590462261
161
+ hash: -3852573973886342077
162
162
  required_rubygems_version: !ruby/object:Gem::Requirement
163
163
  none: false
164
164
  requirements:
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
167
167
  version: '0'
168
168
  segments:
169
169
  - 0
170
- hash: -1619132702590462261
170
+ hash: -3852573973886342077
171
171
  requirements: []
172
172
  rubyforge_project:
173
173
  rubygems_version: 1.8.24