big_marker_client 0.1.0 → 0.1.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 +4 -4
- data/.rubocop.yml +4 -0
- data/CHANGELOG.md +4 -1
- data/Gemfile +2 -0
- data/README.md +6 -2
- data/lib/big_marker_client/api/v1/conference.rb +2 -1
- data/lib/big_marker_client/models/registrant.rb +1 -1
- data/lib/big_marker_client/test_support.rb +7 -0
- data/lib/big_marker_client/version.rb +1 -1
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce3344c34eea2e6a1155ecc292821e1ba4ddc1aff2c53d8ee80de5bd991ac3b3
|
4
|
+
data.tar.gz: 81e8dd2e4c2fed2b61f8940401d9bd2fac4e72980d51f442681affcaac1b9503
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff3ff046e2fef473ed4b2054e79b3a333b6c6e44f9d02d86042321a2a47a70ecf8430513f3644364ec4ab77838a1edceb82901a3884e3a20d8122b1370a7cff3
|
7
|
+
data.tar.gz: 4274c5d0c42222f05fdfbbd67bdd733417f65b9ea604895a7dcd0028332b9fc56b31943ad5b4f4d53d35c4d56b745e114c3e7a2b59e6a9a98d6a07c4d290c70c
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -30,9 +30,13 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
30
30
|
|
31
31
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
32
|
|
33
|
+
## Note
|
34
|
+
|
35
|
+
Only a limited set of all API functions are currently implemented, however the existing framework makes implementing further functions extremely lightweight and easy.
|
36
|
+
|
33
37
|
## Contributing
|
34
38
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://
|
39
|
+
Bug reports and pull requests are welcome on GitHub at https://gitlab.com/capinside-oss/big_marker_client. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://gitlab.com/capinside-oss/big_marker_client/-/blob/main/CODE_OF_CONDUCT.md).
|
36
40
|
|
37
41
|
## License
|
38
42
|
|
@@ -40,4 +44,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
40
44
|
|
41
45
|
## Code of Conduct
|
42
46
|
|
43
|
-
Everyone interacting in the BigMarkerClient project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://
|
47
|
+
Everyone interacting in the BigMarkerClient project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://gitlab.com/capinside-oss/big_marker_client/-/blob/main/CODE_OF_CONDUCT.md).
|
@@ -20,7 +20,8 @@ module BigMarkerClient
|
|
20
20
|
# @param params [Hash] recognized are:
|
21
21
|
# - role: Filter by member role (all*, hosting, attending)
|
22
22
|
# - type: Filter by conference type (future*, past, all, multiple_times, future_do_not_include_happening,
|
23
|
-
# future_with_24_hour_room, past_with_recording, always_open,
|
23
|
+
# future_with_24_hour_room, past_with_recording, always_open,
|
24
|
+
# happening_now)
|
24
25
|
# - query: search in conference title
|
25
26
|
# - page: pagination page
|
26
27
|
# - page_count: pagination page size (20*), ATTENTION: this is called per_page everywhere else!
|
@@ -2,7 +2,7 @@ module BigMarkerClient
|
|
2
2
|
module Models
|
3
3
|
class Registrant < Base
|
4
4
|
attr_accessor :email, :first_name, :last_name, :custom_fields, :enter_url, :bmid, :referral_domain, :source,
|
5
|
-
:tracking_code, :custom_user_id
|
5
|
+
:tracking_code, :custom_user_id, :time_zone, :country
|
6
6
|
end
|
7
7
|
end
|
8
8
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: big_marker_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Burkhard Vogel-Kreykenbohm
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -24,6 +24,20 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: faraday-httpclient
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.0'
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: json
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,6 +98,7 @@ files:
|
|
84
98
|
- lib/big_marker_client/models/presenter.rb
|
85
99
|
- lib/big_marker_client/models/registrant.rb
|
86
100
|
- lib/big_marker_client/models/webinar_stats.rb
|
101
|
+
- lib/big_marker_client/test_support.rb
|
87
102
|
- lib/big_marker_client/version.rb
|
88
103
|
homepage: https://gitlab.com/capinside-oss/big_marker_client
|
89
104
|
licenses:
|