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 +4 -4
- data/.github/workflows/verify.yml +28 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +6 -6
- data/README.md +2 -2
- data/lib/sjc_bus_schedule/version.rb +1 -1
- data/sjc_bus_schedule.gemspec +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e593788b8627189fa8c90cf4c0a59f72604b126b0ce900021055bae829bce1db
|
4
|
+
data.tar.gz: e8569efe9b1ca6d65dc4c045ffcf61943e26dedaa83647f6dc590c12591d693e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/CHANGELOG.md
CHANGED
@@ -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
|
data/Gemfile.lock
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
sjc_bus_schedule (0.0.
|
4
|
+
sjc_bus_schedule (0.0.2)
|
5
5
|
httparty (~> 0.17.0)
|
6
|
-
nokogiri (~> 1.10
|
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.
|
18
|
+
httparty (0.17.1)
|
19
19
|
mime-types (~> 3.0)
|
20
20
|
multi_xml (>= 0.5.2)
|
21
|
-
mime-types (3.
|
21
|
+
mime-types (3.3)
|
22
22
|
mime-types-data (~> 3.2015)
|
23
|
-
mime-types-data (3.2019.
|
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.
|
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/
|
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/
|
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).
|
data/sjc_bus_schedule.gemspec
CHANGED
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.
|
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-
|
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
|
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
|
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.
|
174
|
+
rubygems_version: 3.0.6
|
174
175
|
signing_key:
|
175
176
|
specification_version: 4
|
176
177
|
summary: Extract bus schedule from SJC website
|