icalendar-gcal 0.2.0 → 0.2.1
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.
- checksums.yaml +5 -5
- data/README.md +3 -2
- data/icalendar-gcal.gemspec +3 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: f7d0e465f1f4b75c875f5d4dd3027de71951a449
|
|
4
|
+
data.tar.gz: f21fa7ac8713040991fba130aff5519ef8e988e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e083909a2a9d5c1bee0066f8df1c0adac945464708ebc55b763b3eb7e049d8aab4ab4416f9bd926611e96a29d18d55651a092967c00aaa4be9e4529fac60fd28
|
|
7
|
+
data.tar.gz: 844a0862b510398bfaa1128a0a2fedf747f4ccfc871965000eec8147814e57d657139ce6053e98fa840b5ef01dbdb2cde3f351997a5e4ae925c0f6baf81f89e3
|
data/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Google iCalendar
|
|
2
2
|
|
|
3
3
|
[](https://travis-ci.com/amancevice/icalendar-gcal)
|
|
4
|
+
[](https://badge.fury.io/rb/icalendar-gcal)
|
|
4
5
|
[](https://codeclimate.com/github/amancevice/icalendar-gcal/test_coverage)
|
|
5
6
|
[](https://codeclimate.com/github/amancevice/icalendar-gcal/maintainability)
|
|
6
7
|
|
|
@@ -27,9 +28,9 @@ Or install it yourself as:
|
|
|
27
28
|
```ruby
|
|
28
29
|
require "icalendar/gcal"
|
|
29
30
|
|
|
30
|
-
gcal = GoogleCalendar.from_google_id("abcdefghijklmnopqrstuvwxyz@group.calendar.google.com")
|
|
31
|
+
gcal = Icalendar::GoogleCalendar.from_google_id("abcdefghijklmnopqrstuvwxyz@group.calendar.google.com")
|
|
31
32
|
# or
|
|
32
|
-
gcal = GoogleCalendar.from_ical_url("https://calendar.google.com/calendar/ical/abcdefghijklmnopqrstuvwxyz%40group.calendar.google.com/public/basic.ics")
|
|
33
|
+
gcal = Icalendar::GoogleCalendar.from_ical_url("https://calendar.google.com/calendar/ical/abcdefghijklmnopqrstuvwxyz%40group.calendar.google.com/public/basic.ics")
|
|
33
34
|
|
|
34
35
|
gcal.google_id
|
|
35
36
|
# => "abcdefghijklmnopqrstuvwxyz@group.calendar.google.com"
|
data/icalendar-gcal.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "icalendar-gcal"
|
|
7
|
-
spec.version = "0.2.
|
|
7
|
+
spec.version = "0.2.1"
|
|
8
8
|
spec.authors = ["Alexander Mancevice"]
|
|
9
9
|
spec.email = ["alexander.mancevice@gmail.com"]
|
|
10
10
|
|
|
@@ -28,6 +28,8 @@ Gem::Specification.new do |spec|
|
|
|
28
28
|
spec.bindir = "exe"
|
|
29
29
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
30
30
|
spec.require_paths = ["lib"]
|
|
31
|
+
|
|
32
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.2.0")
|
|
31
33
|
|
|
32
34
|
spec.add_runtime_dependency "icalendar", "~> 2.4"
|
|
33
35
|
spec.add_runtime_dependency "tzinfo", "~> 1.2"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: icalendar-gcal
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Mancevice
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-07-
|
|
11
|
+
date: 2019-07-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: icalendar
|
|
@@ -137,14 +137,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
137
137
|
requirements:
|
|
138
138
|
- - ">="
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
|
-
version:
|
|
140
|
+
version: 2.2.0
|
|
141
141
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
142
|
requirements:
|
|
143
143
|
- - ">="
|
|
144
144
|
- !ruby/object:Gem::Version
|
|
145
145
|
version: '0'
|
|
146
146
|
requirements: []
|
|
147
|
-
|
|
147
|
+
rubyforge_project:
|
|
148
|
+
rubygems_version: 2.6.14.4
|
|
148
149
|
signing_key:
|
|
149
150
|
specification_version: 4
|
|
150
151
|
summary: GoogleCalendar extension for iCalendar gem
|