sciencemag_latest_news 0.1.2 → 0.2.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 +5 -5
- data/CODE_OF_CONDUCT.md +0 -13
- data/LICENSE.txt +1 -1
- data/README.md +0 -6
- data/config/environment.rb +0 -1
- data/lib/sciencemag_latest_news/version.rb +1 -1
- data/sciencemag_latest_news.gemspec +5 -6
- metadata +15 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: a900422b35fb82789f3aa795ce343b68194799eaca234a24a8727f9054eccecf
|
|
4
|
+
data.tar.gz: 99bf7e0e8ee6c0fc7ed080286b2c715f1372f757e396eab3bc31b4e34600c7ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a366c97aa06922b711201cd3f4a007de42dc5a40e8c450feae5a18c21331502b8492563e4de712b889ded4682b83f417d42ea8abc6f016691f5e3ed2b7c49759
|
|
7
|
+
data.tar.gz: 144358ac51a55c820a8543b2aacc876548fbc83cbeb75cf1943ad281dad7f4f4026b366a9cc2b49bb8b52a5c7fa9ec3de749dfdab18c069385acc0562d20a28b
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -52,19 +52,6 @@ address, posting via an official social media account, or acting as an appointed
|
|
|
52
52
|
representative at an online or offline event. Representation of a project may be
|
|
53
53
|
further defined and clarified by project maintainers.
|
|
54
54
|
|
|
55
|
-
## Enforcement
|
|
56
|
-
|
|
57
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
-
reported by contacting the project team at 'carley.tripp@outlook.com'. All
|
|
59
|
-
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
-
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
-
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
-
Further details of specific enforcement policies may be posted separately.
|
|
63
|
-
|
|
64
|
-
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
-
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
-
members of the project's leadership.
|
|
67
|
-
|
|
68
55
|
## Attribution
|
|
69
56
|
|
|
70
57
|
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -24,12 +24,6 @@ Type the command below and follow the on screen prompts.
|
|
|
24
24
|
|
|
25
25
|
$ sciencemag_latest_news
|
|
26
26
|
|
|
27
|
-
## Development
|
|
28
|
-
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
-
|
|
31
|
-
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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
|
-
|
|
33
27
|
## Contributing
|
|
34
28
|
|
|
35
29
|
Bug reports and pull requests are welcome on GitHub at https://github.com/Jax05/sciencemag_latest_news. 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.
|
data/config/environment.rb
CHANGED
|
@@ -6,8 +6,7 @@ require 'sciencemag_latest_news/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "sciencemag_latest_news"
|
|
8
8
|
spec.version = SciencemagLatestNews::VERSION
|
|
9
|
-
spec.authors = ["'
|
|
10
|
-
spec.email = "carley.tripp@outlook.com"
|
|
9
|
+
spec.authors = ["'Jax05'"]
|
|
11
10
|
|
|
12
11
|
spec.summary = %q{Read all the latest news from the Science Magazine website via CLI.}
|
|
13
12
|
spec.homepage = "https://github.com/Jax05/sciencemag_latest_news"
|
|
@@ -20,9 +19,9 @@ Gem::Specification.new do |spec|
|
|
|
20
19
|
spec.executables = "sciencemag_latest_news"
|
|
21
20
|
spec.require_paths = ["lib"]
|
|
22
21
|
|
|
23
|
-
spec.add_development_dependency "bundler", "~>
|
|
24
|
-
spec.add_development_dependency "rake", "~>
|
|
25
|
-
spec.add_development_dependency "pry", "0.
|
|
22
|
+
spec.add_development_dependency "bundler", "~> 2.2"
|
|
23
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
|
24
|
+
spec.add_development_dependency "pry", "~> 0.14.0"
|
|
26
25
|
|
|
27
|
-
spec.add_runtime_dependency "nokogiri", "1.
|
|
26
|
+
spec.add_runtime_dependency "nokogiri", "1.11.2"
|
|
28
27
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sciencemag_latest_news
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- "'
|
|
7
|
+
- "'Jax05'"
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-03-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -16,58 +16,58 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '2.2'
|
|
20
20
|
type: :development
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '2.2'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rake
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '13.0'
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '13.0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: pry
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- -
|
|
45
|
+
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.
|
|
47
|
+
version: 0.14.0
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.
|
|
54
|
+
version: 0.14.0
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: nokogiri
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - '='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 1.
|
|
61
|
+
version: 1.11.2
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - '='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 1.
|
|
68
|
+
version: 1.11.2
|
|
69
69
|
description:
|
|
70
|
-
email:
|
|
70
|
+
email:
|
|
71
71
|
executables:
|
|
72
72
|
- sciencemag_latest_news
|
|
73
73
|
extensions: []
|
|
@@ -108,8 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
109
|
version: '0'
|
|
110
110
|
requirements: []
|
|
111
|
-
|
|
112
|
-
rubygems_version: 2.6.11
|
|
111
|
+
rubygems_version: 3.1.2
|
|
113
112
|
signing_key:
|
|
114
113
|
specification_version: 4
|
|
115
114
|
summary: Read all the latest news from the Science Magazine website via CLI.
|