Sha256: ff41772ba243c0c5c507d388407fc7cd205e92d8ca1b3b71ea8dcc7703a6d7db

Contents?: true

Size: 1.87 KB

Versions: 15

Compression:

Stored size: 1.87 KB

Contents

# wtf_lang [![TravisCI](https://secure.travis-ci.org/nashby/wtf_lang.png?branch=master)](http://travis-ci.org/nashby/wtf_lang)

Can't stop dreaming about an easy language detector? Just use wtf_lang!

### Install

    gem install wtf_lang

### Usage
    
```ruby
require 'wtf_lang'
  
WtfLang::API.key = "your_api_key" # you can get it here http://detectlanguage.com/

"ruby is so awesome!".lang # => "en"
"ruby is so awesome!".full_lang # => "ENGLISH"

# numeric value between 0-1.0 that represents 
# the confidence level in the language code for the given text.
"ruby is so awesome!".lang_confidence # => ["en", 0.15502742]

"ruby is so awesome!".en? # => true
"ruby is so awesome!".english? # => true
```
    
If you want to cache results to make less requests to google API, use variables

```ruby
text = "ruby is so awesome!"
text.lang #=> "en"
text.full_lang #=> "english"
```
    
It works with symbols too!
    
```ruby
:"ruby is so awesome!".lang # => "en"
```

### Contributing to wtf_lang

* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
* Fork the project
* Start a feature/bugfix branch
* Commit and push until you are happy with your contribution
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

### Authors

#### [Contributors](http://github.com/nashby/wtf_lang/contributors)
 - [Bernard Potocki](https://github.com/imanel)

[Vasiliy Ermolovich](http://github.com/nashby/)<br/>

### Copyright

Copyright (c) 2012 nashby. See LICENSE.txt for
further details.

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
tongues-0.1.1 lib/README.md
tongues-0.1.0 lib/README.md
tongues-0.0.13 lib/README.md
tongues-0.0.12 lib/README.md
tongues-0.0.11 lib/README.md
tongues-0.0.10 lib/README.md
tongues-0.0.9 lib/README.md
tongues-0.0.8 lib/README.md
tongues-0.0.7 lib/README.md
tongues-0.0.6 lib/README.md
tongues-0.0.5 lib/README.md
tongues-0.0.4 lib/README.md
tongues-0.0.3 lib/README.md
tongues-0.0.2 lib/README.md
tongues-0.0.1 lib/README.md