Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tanoshimu

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tanoshimu

  • 1.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

gem tanoshimu

API for viewing the available shows and episodes.

Requirements

Prior to installing, please make sure these gems can be installed on your system:

  • activeresource (v5.2.3+)

If you wish to run this gem locally, the following gems are also to consider:

  • pry
  • dotenv

Installation

Add this line to your application's Gemfile:

gem 'tanoshimu'

And then execute:

$ bundle

Or install it yourself as:

$ gem install tanoshimu

Usage

Here are the most relevant API entries from this Gem:

### Check the version
Tanoshimu::VERSION

### Get all shows
shows = Tanoshimu::Show.all

### Get a show, and it's episode
### Please note you need to know a show's id
show = Tanoshimu::Show.find(<your id>)
episodes = show.episodes
end

# Or
operation = Operations::Operation.new{name: :my_operation, scope: :admin}

# Instance variable
allowed_users = operation.users     # Returns a list of users based on the scope
is_valid = operation.is_valid?      # For validation purposes

### Core extensions
# Convert a string to a list of Operations::Operations
"bf9[..]a248".to_operation         # From a UUID (example truncated)
"{\"name\":\"my_operation\",\"scope\":\"admin\"}".to_operation # From a valid JSON string

Contributing

Do you wish to contribute? It's simple! All you need to do is:

  • Fork this project
  • Work your magic (ie: write your code)
  • RUN TESTS
  • Don't forget to rebase with master!
  • Open a pull request!

License

The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 26 May 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc