meetalendar 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9376addb09ff4b8c7916bbbdc40f9a8f0770204f8ca46f6f914bdc9e234578d1
4
- data.tar.gz: 6c19aa31f79a2791060962f8d0fe3807fccab88318fe5f043c9c8ad939e9e2e6
3
+ metadata.gz: 00dc86d0704d52e9c8b2d2177dae374a564f6b728a14c2ce542e33bcc9930060
4
+ data.tar.gz: 4017dce8eaa0affcbbc04d2ee93afc6e9e11141bb07159bcc0ffa0a939dfd6a3
5
5
  SHA512:
6
- metadata.gz: 223409fad48641dd06ddc8461bf2a9927ca6b288d8164c865c4a1b40ce99b413280005b60c4e88d88a2a839eef3163e723d737378e581f054864a72891f0fa0b
7
- data.tar.gz: e8c15258875c71f8a0c257347ace59c428d5b5b97de2f75b496db8a772848f76d3d3e706ced75b7455311a5bcb85565eee72016e61c077d9b8f20f34a81df387
6
+ metadata.gz: 66291719a607e458cdee7a7144d55c7e7b6d7c0d301704046c0f49d0a87177fa21b15210a707a813dc7e21866232d0023f9a156d381ca31dda112f23e5ca138a
7
+ data.tar.gz: cd6c9d5585f1d74c92c0c8470e233f5da6fb688376a369197c099baa1043dd68a6d5489eb2581c35e8eccfe8e2b8b760ea0c0769e1bbf863dafe29f342f799da
data/README.md CHANGED
@@ -42,13 +42,11 @@ $ bundle exec rake db:migrate
42
42
  ```
43
43
 
44
44
  ## Contributing
45
- Just try your best. Maybe you can achieve one of these goals.
45
+ These goals are still open:
46
46
 
47
- - Erweiterung der Admin-Ansicht, sodass auch einzelne bisher ausgeschlossene Events "von Hand" hinzugefügt werden können.
48
- - [_] Noch mal darüber sprechen, woher die Events kommen sollen? So eine Art von Suche bei der die bereits selektierten/gespeicherten Gruppen ihre nächsten (für 3 Monate) Events anzeigen und man diese trotz abweichender Städte in den GCal übertregen kann?
47
+ - Introduce new view (and functionality) that allows to search for upcoming events of the already chosen meetup groups. There the user can select individual events that he wants to transcribe/syncronize to the google calendar. The view should list events up to round about 2-3 month in the future if possible.
49
48
 
50
- - [_] Kann man erkennen, ob ein Termin "von Hand" eingetragen wurde (bei Meetup) oder ob es ein sich einfach jeden Monat zu einem bestimmten Termin wiederholt, aber noch keine Details eingetragen sind.
51
- - Bei von Hand eingetragenen Terminen, die auch weit in der Zukunft liegen können, sollte man diese mit übertragen, wenn sie aber wiederholt werden ist ab 3 Monaten in der Zukunft wohl sowieso noch kein sinnvoller Inhalt vorhanden und diese sollten dann nicht übertragen werden.
49
+ - Is it possible to check if an event is a single or recurring one? (Meetup API V3 indicates that it is.) If so and if possible get single events as far into the future as possible (2-3 month) and transcribe them. The recurring ones typically don't have accurate information up to a week before they occurr so they can be handled as they are now.
52
50
 
53
51
  ## License
54
52
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -11,8 +11,8 @@ Gem::Specification.new do |s|
11
11
  s.authors = ["Andreas Schau @ HicknHack"]
12
12
  s.email = ["andreas.schau@hicknhack-software.com"]
13
13
  s.homepage = "https://www.hicknhack-software.com/"
14
- s.summary = "To have a section on a website that allows gathering of meetup groups. So that their events can regularely be syncronized into a google calendar."
15
- s.description = "This gem prensents all the needed functionality to search for relevant groups on meetup, remember the chosen ones and offers a task that can be called regularely to transcribe the meetup-groups events to a google calendar. TLDR: It allows the user to subscribe to meetup-groups events."
14
+ s.summary = "To have a section on a comfy website that allows gathering of meetup groups. So that their events can regularely be syncronized into a google calendar."
15
+ s.description = "This gem is a Comfortable-Mexican-Sofa Add-On and prensents all the needed functionality to search for relevant groups on meetup, remember the chosen ones and offers a task that can be called regularely to transcribe the meetup-groups events to a google calendar. TLDR: It allows the user to subscribe to meetup-groups events."
16
16
  s.license = "MIT"
17
17
 
18
18
  s.files = `git ls-files -z`.split("\x0").reject do |f|
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Meetalendar
4
4
 
5
- VERSION = "0.0.3"
5
+ VERSION = "0.0.4"
6
6
 
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meetalendar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andreas Schau @ HicknHack
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-04 00:00:00.000000000 Z
11
+ date: 2019-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -152,10 +152,11 @@ dependencies:
152
152
  - - ">="
153
153
  - !ruby/object:Gem::Version
154
154
  version: 3.3.7
155
- description: 'This gem prensents all the needed functionality to search for relevant
156
- groups on meetup, remember the chosen ones and offers a task that can be called
157
- regularely to transcribe the meetup-groups events to a google calendar. TLDR: It
158
- allows the user to subscribe to meetup-groups events.'
155
+ description: 'This gem is a Comfortable-Mexican-Sofa Add-On and prensents all the
156
+ needed functionality to search for relevant groups on meetup, remember the chosen
157
+ ones and offers a task that can be called regularely to transcribe the meetup-groups
158
+ events to a google calendar. TLDR: It allows the user to subscribe to meetup-groups
159
+ events.'
159
160
  email:
160
161
  - andreas.schau@hicknhack-software.com
161
162
  executables: []
@@ -239,6 +240,6 @@ rubyforge_project:
239
240
  rubygems_version: 2.7.6
240
241
  signing_key:
241
242
  specification_version: 4
242
- summary: To have a section on a website that allows gathering of meetup groups. So
243
- that their events can regularely be syncronized into a google calendar.
243
+ summary: To have a section on a comfy website that allows gathering of meetup groups.
244
+ So that their events can regularely be syncronized into a google calendar.
244
245
  test_files: []