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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: dd373648f06e04d14eed90052ca96f6cc0b1daec
4
- data.tar.gz: 0cf5f4b71bb27d11b37b875c39405eda18943296
2
+ SHA256:
3
+ metadata.gz: a900422b35fb82789f3aa795ce343b68194799eaca234a24a8727f9054eccecf
4
+ data.tar.gz: 99bf7e0e8ee6c0fc7ed080286b2c715f1372f757e396eab3bc31b4e34600c7ee
5
5
  SHA512:
6
- metadata.gz: a02d7c50a429ef3631afff0cbd2ed2e94a7a5a13ff3b587916a12c89500842283eda5ccbbb32471849fba9ba095c287c61019ab62f2dd29b54d27340e89f9ad2
7
- data.tar.gz: 384caca021e04af971dc4af089621da42c6d7f1c8393ab21353dbbc2f140c01a798ae3de62d94a12002cb2bff38cc1f7c4ae9cde810c4c31afc08ef5f1c43d56
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
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2017 'Carley Tripp'
3
+ Copyright (c) 2021 'Jax05'
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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.
@@ -1,4 +1,3 @@
1
- require "pry"
2
1
  require "open-uri"
3
2
  require "nokogiri"
4
3
 
@@ -1,3 +1,3 @@
1
1
  module SciencemagLatestNews
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -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 = ["'Carley Tripp'"]
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", "~> 1.14"
24
- spec.add_development_dependency "rake", "~> 10.0"
25
- spec.add_development_dependency "pry", "0.11.1"
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.8.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.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
- - "'Carley Tripp'"
7
+ - "'Jax05'"
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-04 00:00:00.000000000 Z
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: '1.14'
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: '1.14'
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: '10.0'
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: '10.0'
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.11.1
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.11.1
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.8.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.8.1
68
+ version: 1.11.2
69
69
  description:
70
- email: carley.tripp@outlook.com
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
- rubyforge_project:
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.