Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sqrrrl committed Aug 13, 2015
2 parents 9c40b96 + 29b309f commit 2cbd2ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ migrate to the latest version.
Add this line to your application's Gemfile:

```ruby
gem 'google-api-client', '0.9.pre2'
gem 'google-api-client', '0.9.pre3'

```

Expand All @@ -25,7 +25,7 @@ And then execute:

Or install it yourself as:

$ gem install google-api-client
$ gem install google-api-client --pre

## Usage

Expand Down
2 changes: 1 addition & 1 deletion samples/calendar/calendar.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
events = calendar.list_events('primary', max_results: 10, single_events: true,
order_by: 'startTime', time_min: Time.now.iso8601)
puts "Upcoming events:"
events.items.each do |evt|
events.items.each do |event|
start = event.start.date || event.start.date_time
puts "- #{event.summary} (#{start}) (ID: #{event.id})"
end
Expand Down

0 comments on commit 2cbd2ee

Please sign in to comment.