omnievent-eventbrite 0.1.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 20ffaa0087d3e0883dcafa644c924b9198567501e6066c36b9375aaaf918ed6a
4
+ data.tar.gz: 3cbbf1422057fbeb3824d55b66bf6b799470def8b6390afe0d8765a7897e7f50
5
+ SHA512:
6
+ metadata.gz: b612b5ae6d058d39ad8f8593fb65667fa3cde66605e178769f8a08f129ddc808f6a36d5c60b0a9c14f3994b10dd245dade8dcedb363f0f5b3ff5d0136e89fcc3
7
+ data.tar.gz: 89eed40ae7d2865dd834d28f72f8bb958f8a3feb2852167231460e3552d605bc3122aa6e63fcdbb6fe3aa1a4c97ef5fdf2ed4e36cd518a482b843c90fb552383
data/.byebug_history ADDED
@@ -0,0 +1,15 @@
1
+ c
2
+ response
3
+ exit
4
+ raw_event
5
+ c
6
+ response.body['pagination']['has_more_items']
7
+ response.body['events']
8
+ c
9
+ response.body
10
+ exit
11
+ response.body
12
+ exit
13
+ response
14
+ exit
15
+ response
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,48 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Layout/LineLength:
5
+ Max: 120
6
+
7
+ Lint/ConstantDefinitionInBlock:
8
+ Exclude:
9
+ - 'spec/**/*.rb'
10
+
11
+ Metrics/BlockLength:
12
+ Exclude:
13
+ - 'omnievent.gemspec'
14
+ - 'spec/**/*.rb'
15
+
16
+ Metrics/MethodLength:
17
+ CountComments: false
18
+ Max: 25
19
+
20
+ Metrics/ClassLength:
21
+ Max: 150
22
+
23
+ Metrics/ParameterLists:
24
+ Max: 4
25
+ CountKeywordArgs: true
26
+
27
+ Metrics/AbcSize:
28
+ Enabled: false
29
+
30
+ Metrics/CyclomaticComplexity:
31
+ Enabled: false
32
+
33
+ Metrics/PerceivedComplexity:
34
+ Enabled: false
35
+
36
+ Style/StringLiterals:
37
+ Enabled: true
38
+ EnforcedStyle: double_quotes
39
+
40
+ Style/StringLiteralsInInterpolation:
41
+ Enabled: true
42
+ EnforcedStyle: double_quotes
43
+
44
+ Style/OptionalBooleanParameter:
45
+ Enabled: false
46
+
47
+ Style/MultilineBlockChain:
48
+ Enabled: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-09-22
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at angus@mcleod.org.au. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in omnievent-eventbrite.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.21"
data/Gemfile.lock ADDED
@@ -0,0 +1,85 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ omnievent-eventbrite (0.1.0.pre1)
5
+ omnievent
6
+ omnievent-api
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ addressable (2.8.1)
12
+ public_suffix (>= 2.0.2, < 6.0)
13
+ ast (2.4.2)
14
+ byebug (11.1.3)
15
+ concurrent-ruby (1.1.10)
16
+ crack (0.4.5)
17
+ rexml
18
+ diff-lcs (1.5.0)
19
+ excon (0.93.0)
20
+ hashdiff (1.0.1)
21
+ hashie (5.0.0)
22
+ iso-639 (0.3.5)
23
+ json (2.6.2)
24
+ omnievent (0.1.0.pre1)
25
+ hashie (>= 3.4.6)
26
+ iso-639 (~> 0.3.5)
27
+ tzinfo (~> 2.0)
28
+ omnievent-api (0.1.0.pre1)
29
+ excon
30
+ omnievent
31
+ parallel (1.22.1)
32
+ parser (3.1.2.1)
33
+ ast (~> 2.4.1)
34
+ public_suffix (5.0.0)
35
+ rainbow (3.1.1)
36
+ rake (13.0.6)
37
+ regexp_parser (2.6.0)
38
+ rexml (3.2.5)
39
+ rspec (3.11.0)
40
+ rspec-core (~> 3.11.0)
41
+ rspec-expectations (~> 3.11.0)
42
+ rspec-mocks (~> 3.11.0)
43
+ rspec-core (3.11.0)
44
+ rspec-support (~> 3.11.0)
45
+ rspec-expectations (3.11.1)
46
+ diff-lcs (>= 1.2.0, < 2.0)
47
+ rspec-support (~> 3.11.0)
48
+ rspec-mocks (3.11.1)
49
+ diff-lcs (>= 1.2.0, < 2.0)
50
+ rspec-support (~> 3.11.0)
51
+ rspec-support (3.11.1)
52
+ rubocop (1.36.0)
53
+ json (~> 2.3)
54
+ parallel (~> 1.10)
55
+ parser (>= 3.1.2.1)
56
+ rainbow (>= 2.2.2, < 4.0)
57
+ regexp_parser (>= 1.8, < 3.0)
58
+ rexml (>= 3.2.5, < 4.0)
59
+ rubocop-ast (>= 1.20.1, < 2.0)
60
+ ruby-progressbar (~> 1.7)
61
+ unicode-display_width (>= 1.4.0, < 3.0)
62
+ rubocop-ast (1.21.0)
63
+ parser (>= 3.1.1.0)
64
+ ruby-progressbar (1.11.0)
65
+ tzinfo (2.0.5)
66
+ concurrent-ruby (~> 1.0)
67
+ unicode-display_width (2.3.0)
68
+ webmock (3.18.1)
69
+ addressable (>= 2.8.0)
70
+ crack (>= 0.3.2)
71
+ hashdiff (>= 0.4.0, < 2.0.0)
72
+
73
+ PLATFORMS
74
+ ruby
75
+
76
+ DEPENDENCIES
77
+ byebug
78
+ omnievent-eventbrite!
79
+ rake (~> 13.0)
80
+ rspec (~> 3.0)
81
+ rubocop (~> 1.21)
82
+ webmock
83
+
84
+ BUNDLED WITH
85
+ 2.3.14
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Angus McLeod
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # Omnievent Eventbrite (Pre Release)
2
+
3
+ > Please note that this gem is pre release and is not yet ready for production.
4
+
5
+ This gem contains an Eventbrite strategy for OmniEvent.
6
+
7
+ ## Installation
8
+
9
+ First install [OmniEvent](https://rubygems.org/gems/omnievent).
10
+
11
+ $ gem install omnievent
12
+
13
+ Then install this gem:
14
+
15
+ $ gem install omnievent-icalendar
16
+
17
+ ## Usage
18
+
19
+ Please see ["Usage" in the OmniEvent Readme](https://github.com/paviliondev/omnievent#usage)
20
+
21
+ ## Development
22
+
23
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
24
+
25
+ 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).
26
+
27
+ ## Contributing
28
+
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/omnievent-eventbrite. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/omnievent-eventbrite/blob/main/CODE_OF_CONDUCT.md).
30
+
31
+ ## License
32
+
33
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
34
+
35
+ ## Code of Conduct
36
+
37
+ Everyone interacting in the Omnievent::Eventbrite project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/omnievent-eventbrite/blob/main/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module OmniEvent
4
+ module Eventbrite
5
+ VERSION = "0.1.0.pre1"
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "eventbrite/version"
4
+ require_relative "strategies/eventbrite"
@@ -0,0 +1,93 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "../../omnievent/eventbrite/version"
4
+ require "omnievent/strategies/api"
5
+
6
+ module OmniEvent
7
+ module Strategies
8
+ # Strategy for listing events from Eventbrite
9
+ class Eventbrite < OmniEvent::Strategies::API
10
+ class Error < StandardError; end
11
+
12
+ option :name, "eventbrite"
13
+ option :organization_id, ""
14
+
15
+ API_VERSION = "v3"
16
+
17
+ def raw_events
18
+ response = perform_request
19
+ events = response["events"]
20
+ has_more_items = response["pagination"]["has_more_items"]
21
+
22
+ while has_more_items
23
+ response = perform_request({ continuation: response["pagination"]["continuation"] })
24
+ events << response["events"]
25
+ has_more_items = response["pagination"]["has_more_items"]
26
+ end
27
+
28
+ events
29
+ end
30
+
31
+ def event_hash(raw_event)
32
+ data = {
33
+ start_time: format_time(raw_event["start"]["utc"]),
34
+ end_time: format_time(raw_event["end"]["utc"]),
35
+ name: raw_event["name"]["text"],
36
+ description: raw_event["description"]["text"],
37
+ url: raw_event["url"]
38
+ }
39
+
40
+ metadata = {
41
+ uid: raw_event["id"],
42
+ status: convert_status(raw_event["status"]),
43
+ created_at: format_time(raw_event["created"]),
44
+ updated_at: format_time(raw_event["changed"])
45
+ }
46
+
47
+ metadata[:taxonomies] = raw_event["category"]["name"] if raw_event["category"]
48
+
49
+ OmniEvent::EventHash.new(
50
+ provider: name,
51
+ data: data,
52
+ metadata: metadata
53
+ )
54
+ end
55
+
56
+ def request_url
57
+ "https://www.eventbriteapi.com"
58
+ end
59
+
60
+ def request_path
61
+ @request_path ||= begin
62
+ path = "/#{API_VERSION}"
63
+
64
+ # endpoint
65
+ path += "/organizations/#{options.organization_id}/events/" if options.organization_id
66
+
67
+ # params
68
+ expansions = ["category"]
69
+ path += "?expand=#{expansions.join(",")}" if expansions.any?
70
+
71
+ path
72
+ end
73
+ end
74
+
75
+ def request_headers
76
+ { "Authorization" => "Bearer #{options.token}" }
77
+ end
78
+
79
+ def convert_status(raw_status)
80
+ case raw_status
81
+ when "draft"
82
+ "draft"
83
+ when "live", "started", "ended", "completed"
84
+ "published"
85
+ when "canceled"
86
+ "cancelled"
87
+ else
88
+ "published"
89
+ end
90
+ end
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path("lib", __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require "omnievent/eventbrite/version"
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = "omnievent-eventbrite"
9
+ spec.version = OmniEvent::Eventbrite::VERSION
10
+ spec.authors = ["Angus McLeod"]
11
+ spec.email = ["development@pavilion.tech"]
12
+
13
+ spec.summary = "OmniEvent Eventbrite strategy"
14
+ spec.description = "An Eventbrite strategy for OmniEvent"
15
+ spec.homepage = "https://github.com/paviliondev/omnievent-eventbrite"
16
+ spec.license = "MIT"
17
+ spec.required_ruby_version = ">= 2.6.0"
18
+ spec.metadata["homepage_uri"] = spec.homepage
19
+ spec.metadata["source_code_uri"] = spec.homepage
20
+ spec.metadata["changelog_uri"] = spec.homepage
21
+
22
+ spec.files = Dir.chdir(__dir__) do
23
+ `git ls-files -z`.split("\x0").reject do |f|
24
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
25
+ end
26
+ end
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ spec.add_dependency "omnievent"
32
+ spec.add_dependency "omnievent-api"
33
+ spec.add_development_dependency "byebug"
34
+ spec.add_development_dependency "webmock"
35
+ end
@@ -0,0 +1,6 @@
1
+ module Omnievent
2
+ module Eventbrite
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omnievent-eventbrite
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.pre1
5
+ platform: ruby
6
+ authors:
7
+ - Angus McLeod
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-10-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: omnievent
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: omnievent-api
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: byebug
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: webmock
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: An Eventbrite strategy for OmniEvent
70
+ email:
71
+ - development@pavilion.tech
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".byebug_history"
77
+ - ".rspec"
78
+ - ".rubocop.yml"
79
+ - CHANGELOG.md
80
+ - CODE_OF_CONDUCT.md
81
+ - Gemfile
82
+ - Gemfile.lock
83
+ - LICENSE.txt
84
+ - README.md
85
+ - Rakefile
86
+ - lib/omnievent/eventbrite.rb
87
+ - lib/omnievent/eventbrite/version.rb
88
+ - lib/omnievent/strategies/eventbrite.rb
89
+ - omnievent-eventbrite.gemspec
90
+ - sig/omnievent/eventbrite.rbs
91
+ homepage: https://github.com/paviliondev/omnievent-eventbrite
92
+ licenses:
93
+ - MIT
94
+ metadata:
95
+ homepage_uri: https://github.com/paviliondev/omnievent-eventbrite
96
+ source_code_uri: https://github.com/paviliondev/omnievent-eventbrite
97
+ changelog_uri: https://github.com/paviliondev/omnievent-eventbrite
98
+ post_install_message:
99
+ rdoc_options: []
100
+ require_paths:
101
+ - lib
102
+ required_ruby_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: 2.6.0
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">"
110
+ - !ruby/object:Gem::Version
111
+ version: 1.3.1
112
+ requirements: []
113
+ rubygems_version: 3.1.4
114
+ signing_key:
115
+ specification_version: 4
116
+ summary: OmniEvent Eventbrite strategy
117
+ test_files: []