šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

urban_cli

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

urban_cli

1.1.0
Rubygems
Version published
Maintainers
1
Created
Source

= Urban_CLI == Description:

Urban is a command line utility with an API to query definitions from Urban Dictionary.

== BADGES

{Build Status}[https://travis-ci.org/enilsen16/urban_cli]

== REQUIREMENTS

  • Ruby >= 1.8.7

== INSTALLATION

With Rubygems:

$ gem install urban

With git and local working copy

$ git clone git://github.com/tmiller/urban.git
$ cd urban
$ rake install

== CLI USAGE

=== 1. Look up a definition

$ urban cookie monster

=== 2. Random definition

$ urban -r
$ urban --random

=== 3. Print all definitions

$ urban -a cookie monster
$ urban -ra

=== 4. Print the url of the definition at the end of the output

$ urban -u cookie monster
$ urban -ru

=== 5. Print help and version

$ urban --help
$ urban --version

== API USAGE

require 'urban'

# Search for a word
entry = Urban::Dictionary.search('impromtpu')

# Get a random word
entry = Urban::Dictionary.random


puts entry.phrase     # print the phrase
puts entry.url        # print the url of the phrase

# print all of the definitions
entry.definitions.each do |definition|
  puts definition
end

Copyright (c) 2011 Thomas Miller. See LICENSE for details.

FAQs

Package last updated on 16 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts