developer_news_cli_app 0.1.1 → 0.1.3

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
2
  SHA256:
3
- metadata.gz: a47f262e19a8cfa8c194a48d705ad615136f60d5d8cc46e6915fddc95d677070
4
- data.tar.gz: fddc8910a417b0944b92289faddc97ba10339c9fbe74d58dd52f876da3a4031b
3
+ metadata.gz: 94c68ab195c35ff4aa1492675bdb4c4a2d6da0308930e1a8d04730ad4064eac8
4
+ data.tar.gz: 8dab376bdfded912b2c0f4326a4d1a627b1536c4276e4486378e616132ee1ede
5
5
  SHA512:
6
- metadata.gz: f65220e8e7c495300fcd94376b54ebaf9ba373a929d2f97123c281b1b2685c0457e683e70d38c7dbc8d89d7b9dc75161919fcd2f17503d9473cad4962d27a9b5
7
- data.tar.gz: 8f09eb5e18ff1cdb8e8e10c91f6d33d5bffe9535a9068396f0ee9cf23c7f1ccb3d41d2b3b96a5dd855e573f6ffbb5a2b61c71f003c06c989e3c66be4f4694e6b
6
+ metadata.gz: 3c64160824ff912298e4e0861332b6b48c74f29d7ff37e15a2239661ca7ec3aa490d3964884e813e68ebf2a45ff03682e00317b39b0eea79a7dae0f14b43e994
7
+ data.tar.gz: ebed48406e34a522050c5481dfebb58408c904a547e4572d0cd1b08481d7ee7d1df37dd01dac336e70ca662e615211b0b03384bbdd77b0d4647ee0df26549c8e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- developer_news_cli_app (0.1.0)
4
+ developer_news_cli_app (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -42,4 +42,4 @@ DEPENDENCIES
42
42
  rspec (~> 3.0)
43
43
 
44
44
  BUNDLED WITH
45
- 1.16.0
45
+ 1.16.1
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Developer News Cli App
2
2
 
3
- The Developer News Cli App is a Ruby gem that scrapes information about the articles on the homepages for FreeCodeCamp, HackerNoon and Codeburst. The gem allows you to select a website and view the article headlines. The app also allows you to select an article to see more information and read the article in your browser; all from the command line.
3
+ The Developer News Cli App is a Ruby gem that scrapes information about the articles on the homepages for FreeCodeCamp, HackerNoon, Codeburst and A List Apart. The gem allows you to select a website and view the article headlines. The app also allows you to select an article to see more information and read the article in your browser; all from the command line.
4
4
 
5
5
  ## Installation
6
6
 
@@ -1,5 +1,7 @@
1
+ gem 'nokogiri', '~>1.8.2'
2
+
1
3
  require 'pry'
2
- require 'nokogiri' , '~> 1.8.2'
4
+ require 'nokogiri'
3
5
  require 'open-uri'
4
6
 
5
7
  require_relative '../lib/developer_news_cli_app/cli'
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["anthony@anthonygharvey.com"]
11
11
 
12
12
  spec.summary = "An app to display current developer news"
13
- spec.description = "displays the most recent news from developer websites"
13
+ spec.description = "A CLI app that displays the article information from FreeCodeCamp, HackerNoon, CodeBurst and A List Apart."
14
14
  spec.homepage = "http://anthonygharvey.com"
15
15
  spec.license = "MIT"
16
16
 
@@ -1,3 +1,3 @@
1
1
  module DeveloperNewsCliApp
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: developer_news_cli_app
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony
@@ -80,7 +80,8 @@ dependencies:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: displays the most recent news from developer websites
83
+ description: A CLI app that displays the article information from FreeCodeCamp, HackerNoon,
84
+ CodeBurst and A List Apart.
84
85
  email:
85
86
  - anthony@anthonygharvey.com
86
87
  executables: []