Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit 6b2f36d

Browse files
Update project dependency
1 parent 775370a commit 6b2f36d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.org

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ Now get the list of all news from [[https://news.ycombinator.com/news][Hacker Ne
6060

6161
#+BEGIN_SRC sh :results silent
6262
# Get only the first page from the site
63-
~/bin/hn-scrapper --page-count 1 --output-file hacker-news-front-page.org
63+
~/bin/hn-reader --page-count 1 --output-file hacker-news-front-page.org
6464

6565
# Get all of the news (20 pages) using shorter option
66-
~/bin/hn-scrapper -p 20 -o hacker-news-top-20-pages.org
66+
~/bin/hn-reader -p 20 -o hacker-news-top-20-pages.org
6767
#+END_SRC
6868

6969
** Example Sessions and Outputs

project.clj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
(defproject hn-reader "0.2.0"
1+
(defproject hn-reader "0.2.1"
22
:description "Easy ways to access all of the latest Hacker News links in one page"
33
:url "https://github.com/agilecreativity/hn-reader"
44
:license {:name "Eclipse Public License"
55
:url "http://www.eclipse.org/legal/epl-v10.html"}
6-
:profiles {:dev {:dependencies [[lein-bin "0.3.4"]
7-
[com.jakemccrary/lein-test-refresh "0.18.1"]]}
6+
:profiles {:dev {:dependencies [[lein-bin "0.3.5"]
7+
[com.jakemccrary/lein-test-refresh "0.19.0"]]}
88
:uberjar {:aot :all}}
99
:source-paths ["src/clj"]
1010
:java-source-paths ["src/java"]
1111
:bin {:name "hn-reader"
1212
:bin-path "~/bin"
1313
:bootclasspath true}
14-
:plugins [[lein-bin "0.3.4"]
15-
[lein-cljfmt "0.5.3"]
14+
:plugins [[lein-bin "0.3.5"]
15+
[lein-cljfmt "0.5.6"]
1616
[lein-auto "0.1.3"]]
1717
:dependencies [[org.clojure/clojure "1.8.0"]
1818
[reaver "0.1.2"]

0 commit comments

Comments
 (0)