seatgeek 1.0.0 → 1.1.0

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
- SHA1:
3
- metadata.gz: 4fff0f590450a4239ba544957b7015ef1e7a5a5e
4
- data.tar.gz: dd74c176439117ac90b7e54d71eff24ff3df1b3c
2
+ SHA256:
3
+ metadata.gz: 876f8e112dde7ee1e1d0c5b6dba3cc62a47c7c02d23c5ab09d4d35f9f956c1d0
4
+ data.tar.gz: 150c84c6a0700e0f0a9a83f40a648038e96caadcd6b52fbaebf2a3e973d6d5a8
5
5
  SHA512:
6
- metadata.gz: ee80b3beca64bd2804568275f0664083157429923832700b0328682ac0473f864e3da469fe1f521591162c9fb69ab18172500c4f9c0a35951f4a899dd5b8a751
7
- data.tar.gz: 4314cf7470e706942425395ab5996269555a248f27e08860fcec58db6c306a383afe952fd0d4b4b8980ec205f1e42eabf20921c63de674f7fa230054ec3c4eb3
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/.gitignore CHANGED
@@ -26,8 +26,8 @@
26
26
  # for a library or gem, you might want to ignore these files since the code is
27
27
  # intended to run in multiple environments; otherwise, check them in:
28
28
  # Gemfile.lock
29
- # .ruby-version
30
- # .ruby-gemset
29
+ .ruby-version
30
+ .ruby-gemset
31
31
 
32
32
  # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
33
33
  .rvmrc
data/Gemfile CHANGED
@@ -1,17 +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', '~> 0.9.2'
6
- gem 'yajl-ruby', '~> 1.1.0'
7
-
8
- group :test do
9
- gem 'rspec', '~> 3.4.0'
10
- end
11
-
12
- group :no_travis do
13
- gem 'awesome_print', '~> 1.6.1'
14
- gem 'debugger', '~> 1.6.8'
15
- end
16
-
17
3
  gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seatgeek (0.1.3)
4
+ seatgeek (1.0.2)
5
5
  faraday
6
6
  multi_json
7
7
  rake
@@ -10,47 +10,35 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- awesome_print (1.6.1)
14
- columnize (0.9.0)
15
- debugger (1.6.8)
16
- columnize (>= 0.3.1)
17
- debugger-linecache (~> 1.2.0)
18
- debugger-ruby_core_source (~> 1.3.5)
19
- debugger-linecache (1.2.0)
20
- debugger-ruby_core_source (1.3.8)
21
- diff-lcs (1.2.5)
22
- faraday (0.8.11)
23
- multipart-post (~> 1.2.0)
24
- multi_json (1.3.7)
25
- multipart-post (1.2.0)
26
- rake (0.9.6)
27
- rspec (3.4.0)
28
- rspec-core (~> 3.4.0)
29
- rspec-expectations (~> 3.4.0)
30
- rspec-mocks (~> 3.4.0)
31
- rspec-core (3.4.4)
32
- rspec-support (~> 3.4.0)
33
- rspec-expectations (3.4.0)
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)
34
27
  diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.4.0)
36
- rspec-mocks (3.4.1)
28
+ rspec-support (~> 3.11.0)
29
+ rspec-mocks (3.11.1)
37
30
  diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.4.0)
39
- rspec-support (3.4.1)
40
- yajl-ruby (1.1.0)
31
+ rspec-support (~> 3.11.0)
32
+ rspec-support (3.11.0)
33
+ ruby2_keywords (0.0.5)
34
+ yajl-ruby (1.4.2)
41
35
 
42
36
  PLATFORMS
43
37
  ruby
44
38
 
45
39
  DEPENDENCIES
46
- awesome_print (~> 1.6.1)
47
- debugger (~> 1.6.8)
48
- faraday (~> 0.8.11)
49
- multi_json (~> 1.3.5)
50
- rake (~> 0.9.2)
51
- rspec (~> 3.4.0)
40
+ rspec
52
41
  seatgeek!
53
- yajl-ruby (~> 1.1.0)
54
42
 
55
43
  BUNDLED WITH
56
- 1.11.2
44
+ 2.3.6
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- SeatGeek [![Build Status](https://secure.travis-ci.org/seatshare/seatgeek.png)](http://travis-ci.org/seatshare/seatgeek)
1
+ SeatGeek [![Run CI Tasks](https://github.com/seatshare/seatgeek/actions/workflows/ci.yml/badge.svg)](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
- **Rubies supported**
9
+ **Ruby Versions Supported**
10
10
 
11
- - 1.9.2
12
- - 2.1.0
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(:spec) do |task|
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 => :spec
9
+ task :default => :test
@@ -1,7 +1,7 @@
1
1
  require 'forwardable'
2
2
 
3
3
  module Faraday
4
- class Response::VerboseLogger < Response::Middleware
4
+ class Response::VerboseLogger < Middleware
5
5
  extend Forwardable
6
6
 
7
7
  def initialize(app, logger)
@@ -1,5 +1,5 @@
1
1
  ##
2
2
  # Module: SeatGeek
3
3
  module SeatGeek
4
- VERSION = '1.0.0'
4
+ VERSION = '1.1.0'
5
5
  end
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.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Matthews
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-26 00:00:00.000000000 Z
11
+ date: 2022-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -89,11 +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
- - ".ruby-version"
96
- - ".travis.yml"
97
96
  - Gemfile
98
97
  - Gemfile.lock
99
98
  - README.md
@@ -111,7 +110,7 @@ files:
111
110
  homepage: http://platform.seatgeek.com
112
111
  licenses: []
113
112
  metadata: {}
114
- post_install_message:
113
+ post_install_message:
115
114
  rdoc_options: []
116
115
  require_paths:
117
116
  - lib
@@ -126,9 +125,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
125
  - !ruby/object:Gem::Version
127
126
  version: '0'
128
127
  requirements: []
129
- rubyforge_project: seatgeek
130
- rubygems_version: 2.2.0
131
- signing_key:
128
+ rubygems_version: 3.2.32
129
+ signing_key:
132
130
  specification_version: 4
133
131
  summary: A Ruby wrapper for the SeatGeek Platform API.
134
132
  test_files:
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- 2.1.0
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- bundler_args: --without no_travis
2
- language: ruby
3
- rvm:
4
- - 1.9.2
5
- - 2.1.0
6
- gemfile:
7
- - Gemfile