shutl_resource

Dependencies

As of September 7, 2013 5:25pm

40 total

activemodel v4.0.0

Summary Description License
A toolkit for building modeling frameworks (part of Rails). A toolkit for building modeling frameworks like Active Record. Rich support for attributes, callbacks, validations, observers, serialization, internationalization, and testing. MIT
Parents
shutl_resource
Children
activesupport
builder

activesupport v4.0.0

Summary Description License
A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing. MIT
Parents
i18n
activemodel
rack-oauth2
Children
i18n
multi_json
tzinfo
minitest
thread_safe

addressable v2.3.5

Summary Description License
URI Implementation Addressable is a replacement for the URI implementation that is part of Ruby's standard library. It more closely conforms to the relevant RFCs and adds support for IRIs and URI templates. Apache License 2.0
Parents
webmock
Children
rake
rspec

atomic v1.1.13

Summary Description License
An atomic reference implementation for JRuby, Rubinius, and MRI An atomic reference implementation for JRuby, Rubinius, and MRI Apache-2.0
Parents
thread_safe

attr_required v0.0.5

Summary Description License
attr_required and attr_optional attr_required and attr_optional MIT
Parents
rack-oauth2
Children
rake
rspec

builder v3.1.4

Summary Description License
Builders for MarkUp. Builder provides a number of builder objects that make creating structured data simple to do. Currently the following builder objects are supported: * XML Markup * XML Events MIT
Parents
activemodel

bundler v1.3.5

Summary Description License
The best way to manage your application's dependencies Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably MIT
Parents
multi_json
multi_xml
thor
license_finder
Children
rspec

columnize v0.3.6

Summary Description License
Module to format an Array as an Array of String aligned in columns In showing a long lists, sometimes one would prefer to see the value arranged aligned in columns. Some examples include listing methods of an object or debugger commands. See Examples in the rdoc documentation for examples. Ruby
Parents
debugger

crack v0.3.2

Summary Description License
Really simple JSON and XML parsing, ripped from Merb and Rails. MIT
Parents
shutl_auth
webmock

debugger v1.6.1 (development)

Summary Description License
Fast Ruby debugger - base + cli debugger is a fast implementation of the standard Ruby debugger debug.rb. It is implemented by utilizing a new Ruby C API hook. The core component provides support that front-ends can build on. It provides breakpoint handling, bindings for stack frames among other things. BSD
Parents
shutl_auth
shutl_resource
Children
columnize
debugger-ruby_core_source
debugger-linecache
rake
minitest

debugger-linecache v1.2.0

Summary Description License
Read file with caching Linecache is a module for reading and caching lines. This may be useful for example in a debugger where the same lines are shown many times. MIT
Parents
debugger
Children
rake

debugger-ruby_core_source v1.2.3

Summary Description License
Provide Ruby core source files Provide Ruby core source files for C extensions that need them. ruby
Parents
debugger
Children
rake

diff-lcs v1.1.3

Summary Description License
Diff::LCS is a port of Perl's Algorithm::Diff that uses the McIlroy-Hunt longest common subsequence (LCS) algorithm to compute intelligent differences between two sequenced enumerable containers Diff::LCS is a port of Perl's Algorithm::Diff that uses the McIlroy-Hunt longest common subsequence (LCS) algorithm to compute intelligent differences between two sequenced enumerable containers. The implementation is based on Mario I. Wolczko's {Smalltalk version 1.2}[ftp://st.cs.uiuc.edu/pub/Smalltalk/MANCHESTER/manchester/4.0/diff.st] (1993) and Ned Konz's Perl version {Algorithm::Diff 1.15}[http://search.cpan.org/~nedkonz/Algorithm-Diff-1.15/]. This is release 1.1.3, fixing several small bugs found over the years. Version 1.1.0 added new features, including the ability to #patch and #unpatch changes as well as a new contextual diff callback, Diff::LCS::ContextDiffCallbacks, that should improve the context sensitivity of patching. This library is called Diff::LCS because of an early version of Algorithm::Diff which was restrictively licensed. This version has seen a minor license change: instead of being under Ruby's license as an option, the third optional license is the MIT license. MIT
Parents
rspec-expectations
Children
rspec

faraday v0.8.8

Summary Description License
HTTP/REST API client library. MIT
Parents
faraday-conductivity
faraday_middleware
shutl_resource
Children
multipart-post
rake

faraday-conductivity v0.1.1

Summary Description License
Extra Faraday middleware, geared towards a service oriented architecture. Extra Faraday middleware, geared towards a service oriented architecture. MIT
Parents
shutl_resource
Children
faraday
rake
rspec

faraday_middleware v0.9.0

Summary Description License
Various middleware for Faraday Various middleware for Faraday MIT
Parents
shutl_resource
Children
faraday
multi_xml
rake
rspec

httparty v0.11.0

Summary Description License
Makes http fun! Also, makes consuming restful web services dead easy. Makes http fun! Also, makes consuming restful web services dead easy. MIT
Parents
license_finder
Children
multi_json
multi_xml

httpclient v2.3.4.1

Summary Description License
gives something like the functionality of libwww-perl (LWP) in Ruby ruby
Parents
rack-oauth2
webmock

i18n v0.6.5

Summary Description License
New wave Internationalization support for Ruby New wave Internationalization support for Ruby. MIT
Parents
activesupport
Children
activesupport
sqlite3

license_finder v0.9.2 (default)

Summary Description License
Audit the OSS licenses of your application's dependencies. Do you know the licenses of all your application's dependencies? What open source software licenses will your business accept? LicenseFinder culls your Gemfile, detects the licenses of the gems in it, and gives you a report that you can act on. If you already know what licenses your business is comfortable with, you can whitelist them, leaving you with an action report of only those dependencies that have licenses that fall outside of the whitelist. MIT
Children
bundler
sequel
thor
rake
httparty
sqlite3
rspec
webmock

minitest v4.7.5

Summary Description License
minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking. "I had a class with Jim Weirich on testing last week and we were allowed to choose our testing frameworks. Kirk Haines and I were paired up and we cracked open the code for a few test frameworks... I MUST say that minitest is *very* readable / understandable compared to the 'other two' options we looked at. Nicely done and thank you for helping us keep our mental sanity." -- Wayne E. Seguin minitest/unit is a small and incredibly fast unit testing framework. It provides a rich set of assertions to make your tests clean and readable. minitest/spec is a functionally complete spec engine. It hooks onto minitest/unit and seamlessly bridges test assertions over to spec expectations. minitest/benchmark is an awesome way to assert the performance of your algorithms in a repeatable manner. Now you can assert that your newb co-worker doesn't replace your linear algorithm with an exponential one! minitest/mock by Steven Baker, is a beautifully tiny mock (and stub) object framework. minitest/pride shows pride in testing and adds coloring to your test output. I guess it is an example of how to write IO pipes too. :P minitest/unit is meant to have a clean implementation for language implementors that need a minimal set of methods to bootstrap a working test suite. For example, there is no magic involved for test-case discovery. "Again, I can't praise enough the idea of a testing/specing framework that I can actually read in full in one sitting!" -- Piotr Szotkowski Comparing to rspec: rspec is a testing DSL. minitest is ruby. -- Adam Hawkins, "Bow Before MiniTest" minitest doesn't reinvent anything that ruby already provides, like: classes, modules, inheritance, methods. This means you only have to learn ruby to use minitest and all of your regular OO practices like extract-method refactorings still apply. MIT
Parents
rake
activesupport
debugger
sqlite3
retriable
webmock

multi_json v1.7.9

Summary Description License
A common interface to multiple JSON libraries. A common interface to multiple JSON libraries, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, NSJSONSerialization, gson.rb, JrJackson, and OkJson. MIT
Parents
activesupport
httparty
rack-oauth2
Children
bundler

multi_xml v0.5.5

Summary Description License
A generic swappable back-end for XML parsing Provides swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML. MIT
Parents
faraday_middleware
httparty
Children
bundler

multipart-post v1.2.0

Summary Description License
A multipart form post accessory for Net::HTTP. Use with Net::HTTP to do multipart form posts. IO values that have #content_type, #original_filename, and #local_path will be posted as a binary file. MIT
Parents
faraday

rack v1.5.2

Summary Description License
a modular Ruby webserver interface Rack provides a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call. Also see http://rack.github.com/. MIT
Parents
rack-oauth2
Children
rake

rack-oauth2 v1.0.5

Summary Description License
OAuth 2.0 Server & Client Library - Both Bearer and MAC token type are supported OAuth 2.0 Server & Client Library. Both Bearer and MAC token type are supported. MIT
Parents
shutl_auth
Children
rack
multi_json
httpclient
activesupport
attr_required
rake
rspec
webmock

rake v10.1.0 (development)

Summary Description License
Ruby based make-like utility. Rake is a Make-like program implemented in Ruby. Tasks and dependencies arespecified in standard Ruby syntax. MIT
Parents
addressable
attr_required
debugger-linecache
debugger-ruby_core_source
debugger
faraday
faraday-conductivity
faraday_middleware
license_finder
rack
rack-oauth2
retriable
rspec-core
rspec-expectations
rspec-mocks
shutl_auth
shutl_resource
Children
minitest

retriable v1.3.3.1

Summary Description License
Retriable is an simple DSL to retry a code block if an exception should be raised. Retriable is an simple DSL to retry a code block if an exception should be raised. This is especially useful when interacting external api/services or file system calls. MIT
Parents
shutl_auth
Children
rake
minitest

rspec v2.11.0 (development)

Summary Description License
rspec-2.11.0 BDD for Ruby MIT
Parents
addressable
attr_required
bundler
diff-lcs
faraday-conductivity
faraday_middleware
license_finder
rack-oauth2
shutl_auth
shutl_resource
webmock
Children
rspec-core
rspec-expectations
rspec-mocks

rspec-core v2.11.1

Summary Description License
rspec-core-2.11.1 BDD for Ruby. RSpec runner and example groups. MIT
Parents
rspec
Children
rake

rspec-expectations v2.11.3

Summary Description License
rspec-expectations-2.11.3 rspec expectations (should[_not] and matchers) MIT
Parents
rspec
Children
diff-lcs
rake

rspec-mocks v2.11.3

Summary Description License
rspec-mocks-2.11.3 RSpec's 'test double' framework, with support for stubbing and mocking MIT
Parents
rspec
Children
rake

sequel v4.2.0

Summary Description License
The Database Toolkit for Ruby The Database Toolkit for Ruby MIT
Parents
license_finder

shutl_auth v0.8.1

Summary Description License
Used by various gems/services for communicating with shutl oauth server Library used for using Shutl OAuth2 bearer tokens MIT
Parents
shutl_resource
Children
retriable
rack-oauth2
crack
rake
rspec
debugger
webmock

shutl_resource v1.3.6 (default)

Summary Description License
Manage Shutl Rest resource. Parse/Serialize JSON Shutl Rest resource MIT
Children
shutl_auth
activemodel
faraday
faraday_middleware
faraday-conductivity
rake
rspec
debugger
webmock

sqlite3 v1.3.8

Summary Description License
This module allows Ruby programs to interface with the SQLite3 database engine (http://www.sqlite.org) This module allows Ruby programs to interface with the SQLite3 database engine (http://www.sqlite.org). You must have the SQLite engine installed in order to build this module. Note that this module is only compatible with SQLite 3.6.16 or newer. MIT
Parents
i18n
license_finder
Children
minitest

thor v0.18.1

Summary Description License
A scripting framework that replaces rake, sake and rubigen A scripting framework that replaces rake, sake and rubigen MIT
Parents
license_finder
Children
bundler

thread_safe v0.1.2

Summary Description License
A collection of data structures and utilities to make thread-safe programming in Ruby easier Thread-safe collections and utilities for Ruby Apache-2.0
Parents
activesupport
Children
atomic

tzinfo v0.3.37

Summary Description License
Daylight-savings aware timezone library TZInfo is a Ruby library that uses the standard tz (Olson) database to provide daylight savings aware transformations between times in different time zones. MIT
Parents
activesupport

webmock v1.8.11 (development)

Summary Description License
Library for stubbing HTTP requests in Ruby. WebMock allows stubbing HTTP requests and setting expectations on HTTP requests. MIT
Parents
license_finder
rack-oauth2
shutl_auth
shutl_resource
Children
addressable
crack
rspec
httpclient
minitest