seatgeek 1.0.2 → 1.1.0
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/.github/workflows/ci.yml +28 -0
- data/Gemfile +0 -13
- data/Gemfile.lock +22 -26
- data/README.md +4 -4
- data/Rakefile +2 -2
- data/lib/faraday/response/verbose_logger.rb +1 -1
- data/lib/seat_geek/version.rb +1 -1
- metadata +4 -4
- data/.travis.yml +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 876f8e112dde7ee1e1d0c5b6dba3cc62a47c7c02d23c5ab09d4d35f9f956c1d0
|
4
|
+
data.tar.gz: 150c84c6a0700e0f0a9a83f40a648038e96caadcd6b52fbaebf2a3e973d6d5a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6bac29fa36d8305c1aa200dee01eea74998a9044ec6295763b8053daed2652ebdc30c32b7e09fbe1d0c5d7d0cb51fe7f1edfaff4b5f05beb74c6b30f518493f
|
7
|
+
data.tar.gz: e24d9e9bed203e33f2638d7e2548ed862018a98a6f1549e483e41b54a0ae7e0ea3e019012e4733da2d5acee45ec0e2686f7fc31799c2fded22a593bf3829a663
|
@@ -0,0 +1,28 @@
|
|
1
|
+
name: Run CI Tasks
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ master ]
|
6
|
+
pull_request:
|
7
|
+
branches: [ master ]
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
test:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
|
13
|
+
strategy:
|
14
|
+
matrix:
|
15
|
+
ruby-version: ['2.7', '3.0']
|
16
|
+
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v2
|
19
|
+
|
20
|
+
- name: Set up Ruby
|
21
|
+
uses: ruby/setup-ruby@v1
|
22
|
+
with:
|
23
|
+
ruby-version: ${{ matrix.ruby-version }}
|
24
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
25
|
+
|
26
|
+
- name: Run Tests
|
27
|
+
run: |
|
28
|
+
bundle exec rake -t
|
data/Gemfile
CHANGED
@@ -1,16 +1,3 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
gem 'faraday', '~> 0.8.11'
|
4
|
-
gem 'multi_json', '~> 1.3.5'
|
5
|
-
gem 'rake', '~> 13.0.1'
|
6
|
-
gem 'yajl-ruby', '~> 1.3.1'
|
7
|
-
|
8
|
-
group :test do
|
9
|
-
gem 'rspec', '~> 3.4.0'
|
10
|
-
end
|
11
|
-
|
12
|
-
group :no_travis do
|
13
|
-
gem 'awesome_print', '~> 1.8.0'
|
14
|
-
end
|
15
|
-
|
16
3
|
gemspec
|
data/Gemfile.lock
CHANGED
@@ -10,39 +10,35 @@ PATH
|
|
10
10
|
GEM
|
11
11
|
remote: https://rubygems.org/
|
12
12
|
specs:
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
rake (13.0.
|
20
|
-
rspec (3.
|
21
|
-
rspec-core (~> 3.
|
22
|
-
rspec-expectations (~> 3.
|
23
|
-
rspec-mocks (~> 3.
|
24
|
-
rspec-core (3.
|
25
|
-
rspec-support (~> 3.
|
26
|
-
rspec-expectations (3.
|
13
|
+
diff-lcs (1.5.0)
|
14
|
+
faraday (2.2.0)
|
15
|
+
faraday-net_http (~> 2.0)
|
16
|
+
ruby2_keywords (>= 0.0.4)
|
17
|
+
faraday-net_http (2.0.1)
|
18
|
+
multi_json (1.15.0)
|
19
|
+
rake (13.0.6)
|
20
|
+
rspec (3.11.0)
|
21
|
+
rspec-core (~> 3.11.0)
|
22
|
+
rspec-expectations (~> 3.11.0)
|
23
|
+
rspec-mocks (~> 3.11.0)
|
24
|
+
rspec-core (3.11.0)
|
25
|
+
rspec-support (~> 3.11.0)
|
26
|
+
rspec-expectations (3.11.0)
|
27
27
|
diff-lcs (>= 1.2.0, < 2.0)
|
28
|
-
rspec-support (~> 3.
|
29
|
-
rspec-mocks (3.
|
28
|
+
rspec-support (~> 3.11.0)
|
29
|
+
rspec-mocks (3.11.1)
|
30
30
|
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
-
rspec-support (~> 3.
|
32
|
-
rspec-support (3.
|
33
|
-
|
31
|
+
rspec-support (~> 3.11.0)
|
32
|
+
rspec-support (3.11.0)
|
33
|
+
ruby2_keywords (0.0.5)
|
34
|
+
yajl-ruby (1.4.2)
|
34
35
|
|
35
36
|
PLATFORMS
|
36
37
|
ruby
|
37
38
|
|
38
39
|
DEPENDENCIES
|
39
|
-
|
40
|
-
faraday (~> 0.8.11)
|
41
|
-
multi_json (~> 1.3.5)
|
42
|
-
rake (~> 13.0.1)
|
43
|
-
rspec (~> 3.4.0)
|
40
|
+
rspec
|
44
41
|
seatgeek!
|
45
|
-
yajl-ruby (~> 1.3.1)
|
46
42
|
|
47
43
|
BUNDLED WITH
|
48
|
-
2.
|
44
|
+
2.3.6
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
SeatGeek [](https://github.com/seatshare/seatgeek/actions/workflows/ci.yml)
|
2
2
|
========
|
3
3
|
SeatGeek maintains a canonical directory of live events in the United States. The SeatGeek Platform makes it easy to construct applications that help users find and discover events by exposing the wealth of data and powerful search behind SeatGeek.com in an easy-to-consume format.
|
4
4
|
|
@@ -6,10 +6,10 @@ This Gem is designed to be a platform agnostic wrapper around the SeatGeek Platf
|
|
6
6
|
|
7
7
|
For more information, including a detailed description of the functionality available, visit [The SeatGeek Platform documentation site](http://platform.seatgeek.com).
|
8
8
|
|
9
|
-
**
|
9
|
+
**Ruby Versions Supported**
|
10
10
|
|
11
|
-
-
|
12
|
-
-
|
11
|
+
- 2.7
|
12
|
+
- 3.0
|
13
13
|
|
14
14
|
Installation
|
15
15
|
------------
|
data/Rakefile
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
require "bundler/gem_tasks"
|
2
2
|
require 'rspec/core/rake_task'
|
3
3
|
|
4
|
-
RSpec::Core::RakeTask.new(:
|
4
|
+
RSpec::Core::RakeTask.new(:test) do |task|
|
5
5
|
task.rspec_opts = ["-c", "-f progress", "-r ./spec/spec_helper.rb"]
|
6
6
|
task.pattern = './spec/**/*_spec.rb'
|
7
7
|
end
|
8
8
|
|
9
|
-
task :default => :
|
9
|
+
task :default => :test
|
data/lib/seat_geek/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: seatgeek
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Matthews
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -89,10 +89,10 @@ executables: []
|
|
89
89
|
extensions: []
|
90
90
|
extra_rdoc_files: []
|
91
91
|
files:
|
92
|
+
- ".github/workflows/ci.yml"
|
92
93
|
- ".gitignore"
|
93
94
|
- ".rdebugrc"
|
94
95
|
- ".rspec"
|
95
|
-
- ".travis.yml"
|
96
96
|
- Gemfile
|
97
97
|
- Gemfile.lock
|
98
98
|
- README.md
|
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
125
|
- !ruby/object:Gem::Version
|
126
126
|
version: '0'
|
127
127
|
requirements: []
|
128
|
-
rubygems_version: 3.
|
128
|
+
rubygems_version: 3.2.32
|
129
129
|
signing_key:
|
130
130
|
specification_version: 4
|
131
131
|
summary: A Ruby wrapper for the SeatGeek Platform API.
|