meetalendar 0.0.3 → 0.0.4
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 +4 -4
- data/README.md +3 -5
- data/comfy_meetalendar.gemspec +2 -2
- data/lib/meetalendar/version.rb +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00dc86d0704d52e9c8b2d2177dae374a564f6b728a14c2ce542e33bcc9930060
|
|
4
|
+
data.tar.gz: 4017dce8eaa0affcbbc04d2ee93afc6e9e11141bb07159bcc0ffa0a939dfd6a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
45
|
+
These goals are still open:
|
|
46
46
|
|
|
47
|
-
-
|
|
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
|
-
-
|
|
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).
|
data/comfy_meetalendar.gemspec
CHANGED
|
@@ -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|
|
data/lib/meetalendar/version.rb
CHANGED
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.
|
|
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-
|
|
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
|
|
156
|
-
groups on meetup, remember the chosen
|
|
157
|
-
regularely to transcribe the meetup-groups
|
|
158
|
-
allows the user to subscribe to meetup-groups
|
|
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.
|
|
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: []
|