icalendar-rrule 0.1.5 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5bc3ceb9790452476e8f32de6f5c5f6f9780fb13f7fb667d002a76d8a0438774
4
- data.tar.gz: a910d639df4e221adb306571005e3eb23a4f68753de363946cb8a6befb906080
3
+ metadata.gz: b1fe678eb4d4592010ff3793fb53912e1245ef721cc59fd04c8ea10a191f0255
4
+ data.tar.gz: a82321cf5ab418d087a17da9902d7c76ec2c55fa49c5b06ed47dd5cf935256c7
5
5
  SHA512:
6
- metadata.gz: 32f11de521b34a9caeda104a49cf428e9c9f3f23938e804c057a5f0a8371bffbb96eb8cbc9cbe5ed890c5813a0a3d5240994d72db175b86f2f18e2b5f8108896
7
- data.tar.gz: 440e88786c1ed54ee3c090a709e0fd145d930147bfb00c62cd8d8b98fafda00a0680880727e68d0f2c13ba9845010d04718261eb924ac81e06c2efe6c96f5e75
6
+ metadata.gz: c5906d955ed951f3ca1cd646f255924bc718e3ee416f90ad82f1369200842de484fc0ae3b67a01f7ad41f51cc3d020aba44e4479f759d8da009633a13bda5e91
7
+ data.tar.gz: f099253605cfbcc8f0006a982001cb3fd2c961ceb4d0a8704af0866fb6a8b588676917a294f75c6945c339299c4b86dba2464ca515e6ed5c0b2bffc4a4fd61a6
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- icalendar-rrule (0.1.5)
4
+ icalendar-rrule (0.1.6)
5
5
  activesupport (~> 5.1)
6
6
  icalendar (~> 2.4)
7
7
  ice_cube (~> 0.16)
@@ -17,17 +17,17 @@ GEM
17
17
  ast (2.4.0)
18
18
  concurrent-ruby (1.0.5)
19
19
  diff-lcs (1.3)
20
- docile (1.3.0)
20
+ docile (1.3.1)
21
21
  i18n (1.0.1)
22
22
  concurrent-ruby (~> 1.0)
23
23
  icalendar (2.4.1)
24
- ice_cube (0.16.2)
24
+ ice_cube (0.16.3)
25
25
  json (2.1.0)
26
26
  minitest (5.11.3)
27
27
  parallel (1.12.1)
28
- parser (2.5.1.0)
28
+ parser (2.5.1.2)
29
29
  ast (~> 2.4.0)
30
- powerpack (0.1.1)
30
+ powerpack (0.1.2)
31
31
  rainbow (3.0.0)
32
32
  rake (10.5.0)
33
33
  rspec (3.7.0)
@@ -50,7 +50,7 @@ GEM
50
50
  rainbow (>= 2.2.2, < 4.0)
51
51
  ruby-progressbar (~> 1.7)
52
52
  unicode-display_width (~> 1.0, >= 1.0.1)
53
- rubocop-rspec (1.25.1)
53
+ rubocop-rspec (1.26.0)
54
54
  rubocop (>= 0.53.0)
55
55
  ruby-progressbar (1.9.0)
56
56
  simplecov (0.16.1)
@@ -61,7 +61,7 @@ GEM
61
61
  thread_safe (0.3.6)
62
62
  tzinfo (1.2.5)
63
63
  thread_safe (~> 0.1)
64
- unicode-display_width (1.3.2)
64
+ unicode-display_width (1.4.0)
65
65
 
66
66
  PLATFORMS
67
67
  ruby
@@ -10,21 +10,22 @@ Gem::Specification.new do |gem_spec|
10
10
  gem_spec.name = 'icalendar-rrule'
11
11
  gem_spec.version = Icalendar::Rrule::VERSION
12
12
  gem_spec.authors = ['Harald Postner']
13
- gem_spec.email = ['harald@free-creations.de']
13
+ gem_spec.email = ['harald-LB@free-creations.de']
14
14
 
15
- gem_spec.summary = 'Use this module if you want to iterate over an ICalendars with recurring events. '
16
- gem_spec.description = 'This Gem adds a view to ICalendar class which expands ' \
17
- 'all recurring events.'
15
+ gem_spec.summary = 'Helper for ICalendars with recurring events. '
16
+ gem_spec.description = 'An add-on to the iCalendar GEM ' \
17
+ 'that helps to handle repeating events (recurring events) in a consistent way.'
18
18
  gem_spec.homepage = 'https://github.com/free-creations/icalendar-rrule'
19
19
  gem_spec.license = 'MIT'
20
20
 
21
21
  gem_spec.files = `git ls-files -z`.split("\x0").reject do |f|
22
22
  f.match(%r{^(test|spec|features)/})
23
23
  end
24
- gem_spec.bindir = 'exe'
25
24
  gem_spec.executables = gem_spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
25
  gem_spec.require_paths = ['lib']
27
26
 
27
+ gem_spec.required_ruby_version = '>= 2.5'
28
+
28
29
  gem_spec.add_dependency 'activesupport', '~> 5.1'
29
30
  gem_spec.add_dependency 'icalendar', '~> 2.4'
30
31
  gem_spec.add_dependency 'ice_cube', '~> 0.16'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Icalendar
4
4
  module Rrule
5
- VERSION = '0.1.5'
5
+ VERSION = '0.1.6'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: icalendar-rrule
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Harald Postner
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2018-07-25 00:00:00.000000000 Z
12
12
  dependencies:
@@ -136,9 +136,10 @@ dependencies:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
138
  version: '0.16'
139
- description: This Gem adds a view to ICalendar class which expands all recurring events.
139
+ description: An add-on to the iCalendar GEM that helps to handle repeating events
140
+ (recurring events) in a consistent way.
140
141
  email:
141
- - harald@free-creations.de
142
+ - harald-LB@free-creations.de
142
143
  executables: []
143
144
  extensions: []
144
145
  extra_rdoc_files: []
@@ -172,7 +173,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
172
173
  requirements:
173
174
  - - ">="
174
175
  - !ruby/object:Gem::Version
175
- version: '0'
176
+ version: '2.5'
176
177
  required_rubygems_version: !ruby/object:Gem::Requirement
177
178
  requirements:
178
179
  - - ">="
@@ -183,6 +184,5 @@ rubyforge_project:
183
184
  rubygems_version: 2.7.6
184
185
  signing_key:
185
186
  specification_version: 4
186
- summary: Use this module if you want to iterate over an ICalendars with recurring
187
- events.
187
+ summary: Helper for ICalendars with recurring events.
188
188
  test_files: []