sjc_bus_schedule 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7047219bcc82a24110e119d2b44c738b7999a971648a8e6e498d1bdcd2b66223
4
- data.tar.gz: 07facb702dcd9971385f8786dd26e7b83b6c2c99758298005cb1c91e8cf6247c
3
+ metadata.gz: e593788b8627189fa8c90cf4c0a59f72604b126b0ce900021055bae829bce1db
4
+ data.tar.gz: e8569efe9b1ca6d65dc4c045ffcf61943e26dedaa83647f6dc590c12591d693e
5
5
  SHA512:
6
- metadata.gz: 4d29a1041668d353aa77d01740086c8955e7f1f8aff751dbb33214d1d172218bc07d25f086b4dd19a58f5e6d3da188868aedb2fc4191fa3d02df1701d2dd97d6
7
- data.tar.gz: f0b477f71877a1ff1f37a817cafe3bd2ed3a94fa55d8d4a69f7926f67b4f3297e31282ebb7f84fe5b90bc5ae8cbe1e2031780ef9e3db7ca6f1c7dd860e690a11
6
+ metadata.gz: 3b77d0c464d630a48e6fd36c32425c97359cba4709de198e88d3bef6598a3e06c350fbda22e970f4661b354f55fcfaf6e5820f70a541e6ddb1c4a1c26f33897c
7
+ data.tar.gz: 2c44e648acddb8f6b62d17e85e3282560b793142c68b5ff53cb91ece5cdd5d6c15d2a2583b511d4d86cce35e024433a131d0c09c5e1bd7ebebf66b39a6e3407c
@@ -0,0 +1,28 @@
1
+ name: Verify
2
+ on: [push, pull_request]
3
+
4
+ jobs:
5
+ verify:
6
+ name: Build
7
+ runs-on: ubuntu-latest
8
+
9
+ steps:
10
+ - uses: actions/checkout@v1
11
+ - name: Set up Ruby
12
+ uses: actions/setup-ruby@v1
13
+ with:
14
+ ruby-version: 2.6.5
15
+ - name: Install dependencies
16
+ run: |
17
+ gem install bundler
18
+ bundle install
19
+ - name: Run Rubocop
20
+ run: bin/rubocop
21
+
22
+ - name: Run Bundler Audit
23
+ run: bin/bundler-audit --update
24
+ - name: Run Brakeman
25
+ run: bin/brakeman -q -w2
26
+
27
+ - name: Run tests
28
+ run: bin/rspec
@@ -2,8 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.0.2] - 2019-10-04
6
+ ### Security
7
+ - Upgrade nokogiri to version 1.10.4 or later.
8
+
5
9
  ## [0.0.1] - 2019-07-17
6
10
  ### Added
7
11
  - Method to get buses schedule.
8
12
 
13
+ [0.0.2]: https://github.com/matheussilvasantos/sjc_bus_schedule/compare/v0.0.1...v0.0.2
9
14
  [0.0.1]: https://github.com/matheussilvasantos/sjc_bus_schedule/releases/tag/v0.0.1
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sjc_bus_schedule (0.0.1)
4
+ sjc_bus_schedule (0.0.2)
5
5
  httparty (~> 0.17.0)
6
- nokogiri (~> 1.10.3)
6
+ nokogiri (~> 1.10)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -15,15 +15,15 @@ GEM
15
15
  safe_yaml (~> 1.0.0)
16
16
  diff-lcs (1.3)
17
17
  hashdiff (1.0.0)
18
- httparty (0.17.0)
18
+ httparty (0.17.1)
19
19
  mime-types (~> 3.0)
20
20
  multi_xml (>= 0.5.2)
21
- mime-types (3.2.2)
21
+ mime-types (3.3)
22
22
  mime-types-data (~> 3.2015)
23
- mime-types-data (3.2019.0331)
23
+ mime-types-data (3.2019.0904)
24
24
  mini_portile2 (2.4.0)
25
25
  multi_xml (0.6.0)
26
- nokogiri (1.10.3)
26
+ nokogiri (1.10.4)
27
27
  mini_portile2 (~> 2.4.0)
28
28
  public_suffix (3.1.1)
29
29
  rake (10.5.0)
data/README.md CHANGED
@@ -70,7 +70,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
70
70
 
71
71
  ## Contributing
72
72
 
73
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sjc_bus_schedule. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
73
+ Bug reports and pull requests are welcome on GitHub at https://github.com/matheussilvasantos/sjc_bus_schedule. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
74
74
 
75
75
  ## License
76
76
 
@@ -78,4 +78,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
78
78
 
79
79
  ## Code of Conduct
80
80
 
81
- Everyone interacting in the SjcBusSchedule project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/sjc_bus_schedule/blob/master/CODE_OF_CONDUCT.md).
81
+ Everyone interacting in the SjcBusSchedule project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/matheussilvasantos/sjc_bus_schedule/blob/master/CODE_OF_CONDUCT.md).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SJCBusSchedule
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.2"
5
5
  end
@@ -34,5 +34,5 @@ Gem::Specification.new do |spec|
34
34
  spec.add_development_dependency "byebug", "~> 11.0.1"
35
35
 
36
36
  spec.add_dependency "httparty", "~> 0.17.0"
37
- spec.add_dependency "nokogiri", "~> 1.10.3"
37
+ spec.add_dependency "nokogiri", "~> 1.10"
38
38
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sjc_bus_schedule
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matheus Silva Santos de Oliveira
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-07-17 00:00:00.000000000 Z
11
+ date: 2019-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -114,14 +114,14 @@ dependencies:
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: 1.10.3
117
+ version: '1.10'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: 1.10.3
124
+ version: '1.10'
125
125
  description: Makes life easy for who wants to get the bus schedule from SJC website
126
126
  email:
127
127
  - oliveira.matheussilvasantos@gmail.com
@@ -129,6 +129,7 @@ executables: []
129
129
  extensions: []
130
130
  extra_rdoc_files: []
131
131
  files:
132
+ - ".github/workflows/verify.yml"
132
133
  - ".gitignore"
133
134
  - ".rspec"
134
135
  - ".travis.yml"
@@ -170,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
170
171
  - !ruby/object:Gem::Version
171
172
  version: '0'
172
173
  requirements: []
173
- rubygems_version: 3.0.3
174
+ rubygems_version: 3.0.6
174
175
  signing_key:
175
176
  specification_version: 4
176
177
  summary: Extract bus schedule from SJC website