Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/claudiob/yt-support
Common code needed by the other Yt gems. Not intended for direct use.
https://github.com/claudiob/yt-support
gem
Last synced: about 5 hours ago
JSON representation
Common code needed by the other Yt gems. Not intended for direct use.
- Host: GitHub
- URL: https://github.com/claudiob/yt-support
- Owner: claudiob
- License: mit
- Created: 2017-03-17T21:40:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-10T23:09:58.000Z (12 days ago)
- Last Synced: 2024-12-11T00:20:56.416Z (12 days ago)
- Topics: gem
- Language: Ruby
- Size: 24.4 KB
- Stars: 3
- Watchers: 9
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Common code needed by the other Yt gems
=======================================Yt::Support provides common functionality to all Yt gems.
It is considered suitable for internal use only at this time.The **source code** is available on [GitHub](https://github.com/fullscreen/yt-support) and the **documentation** on [RubyDoc](http://www.rubydoc.info/gems/yt-support/frames).
[![Build Status](http://img.shields.io/travis/Fullscreen/yt-support/master.svg)](https://travis-ci.org/Fullscreen/yt-support)
[![Coverage Status](http://img.shields.io/coveralls/Fullscreen/yt-support/master.svg)](https://coveralls.io/r/Fullscreen/yt-support)
[![Dependency Status](http://img.shields.io/gemnasium/Fullscreen/yt-support.svg)](https://gemnasium.com/Fullscreen/yt-support)
[![Code Climate](http://img.shields.io/codeclimate/github/Fullscreen/yt-support.svg)](https://codeclimate.com/github/Fullscreen/yt-support)
[![Online docs](http://img.shields.io/badge/docs-✓-green.svg)](http://www.rubydoc.info/gems/yt-support/frames)
[![Gem Version](http://img.shields.io/gem/v/yt-support.svg)](http://rubygems.org/gems/yt-support)Yt::Support provides:
* [Yt.configure](http://www.rubydoc.info/gems/yt-support/Yt/Config#configure-instance_method)
* [Yt::Configuration](http://www.rubydoc.info/gems/yt-support/Yt/Configuration)
* [Yt::HTTPRequest](http://www.rubydoc.info/gems/yt-support/Yt/HTTPRequest)
* [Yt::HTTPError](http://www.rubydoc.info/gems/yt-support/Yt/HTTPError)
* [Yt::ConnectionError](http://www.rubydoc.info/gems/yt-support/Yt/ConnectionError)How to contribute
=================Contribute to the code by forking the project, adding the missing code,
writing the appropriate tests and submitting a pull request.In order for a PR to be approved, all the tests need to pass and all the public
methods need to be documented and listed in the guides. Remember:- to run all tests locally: `bundle exec rspec`
- to generate the docs locally: `bundle exec yard`
- to list undocumented methods: `bundle exec yard stats --list-undoc`