trendious 0.1 → 0.2

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
  SHA1:
3
- metadata.gz: 2906af90658cc85c3b8b5921ebf229d95da9e5ff
4
- data.tar.gz: 4ba8017325c6d46564380ff40b88a9a5104fdf85
3
+ metadata.gz: 5da113b6f9731c70cd524469764bd950527bc34f
4
+ data.tar.gz: ac78a212c7ce6488508499c6b3efc4081812812d
5
5
  SHA512:
6
- metadata.gz: 028c5e7e5c733deba674e3b4bbaf690a2b2bff829b581ba3a4b4cdc78e4c318344fc021d842c377b6563e95d522e5a332d86be35e826d7c0bea93e1327e0bd9a
7
- data.tar.gz: cd88683046a2d0c6f07dd729670b32eb4971fb781ffec541a9705655d9f125fcb0b9c119366b33e4f270f147a34af5ad91c1cfcb9f074a4cb9433239149febdb
6
+ metadata.gz: 8c2f196770e1cf498b01d4c5f939d0b12fe50191b4fc8f5ca24dbbc7315ac68c9ffba0a515642757a3c9706ab3914d025a5d5afdf24697b65e2b89433a6ed228
7
+ data.tar.gz: 468b171c0049e29bdc4e2680fd7a813073c0d28fd16febb7f70e2f284c8957a6c7e4dad6915a9900da8f91b27198bf30216d60c0f45b108c2d53dd3d63bb65ba
data/README.md CHANGED
@@ -24,7 +24,7 @@ You should be able to get something similar to this
24
24
  To read the desired post you can easily access it by the index
25
25
 
26
26
  ```
27
- trendious -q "Shawshank" -r 0
27
+ trendious -q "Shawshank" -R 0
28
28
  ```
29
29
 
30
30
  ```
@@ -41,7 +41,7 @@ To change page of search result you can do it by adding key `-p`
41
41
  trendious -q "Marvel" -p 3
42
42
  ```
43
43
 
44
- Other killer feature with this application is to accessing trending, that's from where this application took his name.
44
+ Other killer feature with this application is to accessing trends, that's from where this application took his name.
45
45
 
46
46
  ```
47
47
  trendious -T
@@ -65,8 +65,6 @@ To check the trending for the following tag add `-t`
65
65
  trendious -T -t 2
66
66
  ```
67
67
 
68
- Here you as well can change the page and read the relevant post with `-r [index]`
69
-
70
68
  ```
71
69
  [0] The Revenant: The Stage Is Set For Leo's Crowning Glory
72
70
  [1] 'The Revenant' Poster and its Sheer Beauty
@@ -79,3 +77,13 @@ Here you as well can change the page and read the relevant post with `-r [index]
79
77
  [8] Two Jews On The Oscars
80
78
  [9] New York Film Festival 2014: Whiplash Movie Review
81
79
  ```
80
+
81
+ Here you as well can whether to mention a page or to read the relevant post if you want by adding `-R [index]`
82
+ like this `trendious -T -t 2 -R 0` or if you want to mention page `trendious -T -t 4 -p 2 -R 7`
83
+ ```
84
+ Request URI: http://api.moviepilot.com/v4/tags/hidden-gems/trending?page=2
85
+ It's 20 Years Later...And Someone Has Noticed A Well-Hidden Dick Joke in The Goofy Movie
86
+ Website link: http://moviepilot.com/posts/2876457
87
+
88
+ I am not embarrassed to admit it; I have The Goofy Movie 's soundtrack in my iTunes. And yes, I am in my mid-twenties and I still jam to PowerLine every so often when the mood strikes. No shame whatsoever. If we listen to each other's heart And yes, I still remember Goofy's dance moves to this song, also known as "The Perfect Cast." Who knew a skill in fishing could be so useful when performing with an internationally known pop star? In light of The Goofy Movie turning 20 -years-old, a Redditor known as wimminswimmin re-watched it and noticed what could be a well-hidden dick joke. It might be a bit of a stretch, but knowing that Disney has a rather dirty side makes this theory very, very possible. Watch the scene from the film below. Notice anything funny? In case it didn't register immediately, we see Goofy and Max in this clip running for their lives from Bigfoot. As they watch from the safety of their car, they see Bigfoot shuffling through their items as a pair of underwear lands atop his head. [[jwplayer:IHobMqiX]] He quickly peeks through the flap of the underwear and resumes his rummaging. Below is a still of this wonderfully silly moment. Big Foot, the famous monster, is seen taking a gander around with his one eye peering through Goofy's underwear, meaning we are looking directly at a giant, hairy, one-eyed monster. Goofy's ginormous, hairy, one-eyed monster, as the underwear does belong to him. Perhaps the dirty birdies at Disney meant this as a reference to Goofy's downstairs region and decided to subtly stick it in. Sorry. I couldn't help myself. While this could be a stretch, another part of me thinks that I wouldn't put it past them. Disney has a reputation for leaving inappropriate gems scattered throughout their movies. Below are a few examples of times perverted Disney slyly popped a few boners into their work. I know, I know. Again, had to do it. One tower on the castle looks too phallic to be innocent. So subtle, but also so obvious. Disney claims the priest's bulge is just his bent knee. But we know better. After Hercules defeats the River Guardian, he throws a horseshoe at the penis-shaped bump on his head, which follows with his eyebrows forming into a pair of balls. This is just too much of a coincidence. Judging off their work from the past, perhaps, just perhaps, dirty Disney strikes again! Dick joke or no dick joke? Tell us here! [Source: reddit , eBaum's World ]
89
+ ```
@@ -13,7 +13,7 @@ module Trendious
13
13
  private
14
14
 
15
15
  def fetch(name)
16
- uri = URI("http://api.moviepilot.com/v4/tags/#{slug}/recent?page=#{@page}")
16
+ uri = URI("http://api.moviepilot.com/v4/tags/#{slug}/#{name}?page=#{@page || 0}")
17
17
  puts "Request URI: #{uri}"
18
18
  Trendious::Tags.new Net::HTTP.get(uri)
19
19
  end
@@ -1,3 +1,3 @@
1
1
  module Trendious
2
- VERSION = '0.1'
2
+ VERSION = '0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trendious
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: '0.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Viacheslav Rudkovskyi