SQLite format 3@ -  9 o 9 jj %%tabledependenciesdependenciesCREATE TABLE `dependencies`(`id` integer DEFAULT (NULL) NOT NULL PRIMARY KEY, `name` varchar(255) DEFAULT (NULL) NOT NULL, `version` varcharU %%mtabledependenciesdependenciesCREATE TABLE `dependencies`(`id` integer DEFAULT (NULL) NOT NULL PRIMARY KEY, `name` varchar(255) DEFAULT (NULL) NOT NULL, `version` varchar(255) DEFAULT (NULL) NULL, `summary` varchar(255) DEFAULT (NULL) NULL, `description` varchar(255) DEFAULT (NULL) NULL, `homepage` varchar(255) DEFAULT (NULL) NULL, `license_id` integer DEFAULT (NULL) NULL, `approval_id` integer DEFAULT (NULL) NULL, `manual` boolean, `license_manual` boolean) ktableapprovalsapprovals CREATE TABLE `approvals`(`id` integer DEFAULT (NULL) NOT NULL PRIMARY KEY, `state` Boolean DEFAULT (NULL) NULL)# CCMtablebundler_groups_dependenciesbundler_groups_dependencies CREATE TABLE `bundler_groups_dependencies` (`bundler_group_id` integer, `dependency_id` integer) ))Utablebundler_groupsbundler_groups CREATE TABLE `bundler_groups` (`id` integer NOT NULL PRIMARY KEY AUTOINCREMENT, `name` varchar(255))+!!!tableancestriesancestriesCREATE TABLE `ancestries` (`id` integer NOT NULL PRIMARY KEY AUTOINCREMENT, `parent_dependency_id` integer, `child_dependency_id` integer)8%%tabledependenciesdependenciesCREATE TABLE `dependencies` (`id` integer NOT NULL PRIMARY KEY AUTOINCREMENT, `name` va88F55)tabledependencies_backup0dependencies_backu88 ;;+tablelicense_aliases_backup0license_aliases_backup0CREATE TABLE "license_aliases_backup0"(`id` integer DEFAULT (NULL) NOT NULL PRIMARY KEY, `name` varchar(255) DEFAULT (NULL) NULL, `url` varchar(255) DEFAULT (NULL) NULL, `manual` boolean DEFAULT (NULL) NULL)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)2%%?tabledependenciesdependenciesCREATE TABL ++Otablelicense_aliaseslicense_aliasesCREATE TABLE `license_aliases`(`id` integer DEFAULT (NULL) NOT NULL PRIMARY KEY, `name` varchar(255) DEFAULT (NULL) NULL, `url` varchar(255) DEFAULT (NULL) NULL)~//+tableschema_migrationsschema_migrationsCREATE TABLE `schema_migrations` (`filename` varchar(255) NOT NULL PRIMARY KEY)AU/indexsqlite_autoindex_schema_migrations_1schema_migrations  ~mD k= ~4q201307251340_remove_manual_from_license_aliases.rb% S201307251107_reassociate_license.rb* ]201307251004_data_fix_manual_licenses.rb4 q201307250917_add_license_manual_to_dependencies.rb, a201304181524_add_manual_to_dependencies.rb@ 201304020947_change_table_name_licenses_to_license_aliases.rb/g201304011027_allow_null_dependency_version.rb*]201303291753_allow_null_license_names.rb8y201303291720_move_manual_from_approvals_to_licenses.rb'W201303291519_create_bundler_groups.rb#O201303291456_create_ancestries.rb"M201303291402_create_approvals.rb!K201303291155_create_licenses.rb%S201303290935_create_dependencies.rb  pi?b3 p6q201307251340_remove_manual_from_license_aliases.rb'S201307251107_reassociate_license.rb ,]201307251004_data_fix_manual_licenses.rb 6q201307250917_add_license_manual_to_dependencies.rb .a201304181524_add_manual_to_dependencies.rb B201304020947_change_table_name_licenses_to_license_aliases.rb 1g201304011027_allow_null_dependency_version.rb,]201303291753_allow_null_license_names.rb:y201303291720_move_manual_from_approvals_to_licenses.rb)W201303291519_create_bundler_groups.rb%O201303291456_create_ancestries.rb$M201303291402_create_approvals.rb#K201303291155_create_licenses.rb'S201303290935_create_dependencies.rb wF;/[rubyhttp://www.ruby-lang.org/en/LICENSE.txtcCBSDhttp://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29 other/[Rubyhttp://www.ruby-lang.org/en/LICENSE.txt1Apache License 2.0<!iApache-2.0http://www.apache.org/licenses/LICENSE-2.0.txt1aMIThttp://opensource.org/licenses/mit-license !ancestriesV)bundler_groups";aD 'CiAactivesupport4.0.0A 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.http://www.rubyonrails.orgy [EEtzinfo0.3.37Daylight-savings aware timezone libraryTZInfo is a Ruby library that uses the standard tz (Olson) database to provide daylight savings aware transformations between times in different time zones.http://tzinfo.rubyforge.org/ N #EiYthread_safe0.1.2A collection of data structures and utilities to make thread-safe programming in Ruby easierThread-safe collections and utilities for Rubyhttps://github.com/headius/thread_safe >  Watomic1.1.13An atomic reference implementation for JRuby, Rubinius, and MRIAn atomic reference implementation for JRuby, Rubinius, and MRIhttp://github.com/headius/ruby-atomic! !ioWmulti_json1.7.9A 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.http://github.com/intridea/multi_json{ [3Wminitest4.7.5minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarkingminitest 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.https://github.com/seattlerb/minitest ikMi18n0.6.5New wave Internationalization support for RubyNew wave Internationalization support for Ruby.http://github.com/svenfuchs/i18n sqlite3; Gg?rake10.1.0Ruby based make-like utility.Rake is a Make-like program implemented in Ruby. Tasks and dependencies arespecified in standard Ruby syntax.http://rake.rubyforge.orgPk bundler'activesupportikMi18n0.6.5New wave Internationalization support for RubyNew wave Internationalization support for Ruby.http://g   8z [ z  _ y7bundler1.3.5The best way to manage your appli" Y}_sqlite31.3.8This 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.http://github.com/luislavena/sqlite3-ruby; Gg?rake10.1.0Ruby based make-like utility.Rake is a Make-like program implemented in Ruby. Tasks and dependencies arespecified in standard Ruby syntax.http://rake.rubyforge.org{ [3Wminitest4.7.5minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarkingminitest 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.https://github.com/seattlerb/minitest ikMi18n0.6.5New wave Internationalization support for RubyNew wave Internationalization support for Ruby.http://github.com/svenfuchs/i18nD 'CiAactivesupport4.0.0A 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.http://www.rubyonrails.orgY}_sqlite31.3.8This 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.http://github.com/luislavena/sqlite3-ruby! !ioWmulti_json1.7.9A 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.http://github.com/intridea/multi_json V Pxph`XPH@80( xph`XPH@80(  x p h ` X PV U T S R Q( P(O(N(M(L(K(J( I('H' G'F'E'D'C'"B'#A&@%?$>&=%<%;$:#9#8" 7"6"5"4"3"2"1"!0!/ .-,+*)('&%$#"!               default#development  ( t(2~y2oje`[VQLGB=8('&%$#"!       j+  ' p Y  "5faraday-conductivity[ GWfaraday0.8.8HTTP/REST API client library.https://github.com/lostisland/faraday )i;emultipart-post1.2.0A 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.https://github.com/nicksieger/multipart-postJ ediff-lcs1.1.3Diff::LCS is a port of Perl's Algorithm::Diff that uses the McIlroy-Hunt longest common s? ?I wdebugger-ruby_core_source1.2.3Provide Ruby core source filesProvide Ruby core source files for C extensions that need them.http://github.com/cldwalker/debugger-ruby_core_source_ y7bundler1.3.5The best way to manage your application's dependenciesBundler manages an application's dependencies through its entire life, across many machines, systematically and repeatablyhttp://gembundler.com>  Watomic1.1.13An atomic reference implementation for JRuby, Rubinius, and MRIAn atomic reference implementation for JRuby, Rubinius, and MRIhttp://github.com/headius/ruby-atomicN #EiYthread_safe0.1.2A collection of data structures and utilities to make thread-safe programming in Ruby easierThread-safe collections and utilities for Rubyhttps://github.com/headius/thread_safe y [EEtzinfo0.3.37Daylight-savings aware timezone libraryTZInfo is a Ruby library that uses the standard tz (Olson) database to provide daylight savings aware transformations between times in different time zones.http://tzinfo.rubyforge.org/ u 5o9builder3.1.4Builders 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 http://onestepback.org $ #mAactivemodel4.0.0A 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.http://www.rubyonrails.org #1Oaddressable2.3.5URI ImplementationAddressable 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. http://addressable.rubyforge.org/ G %%;rspec2.11.0rspec-2.11.0BDD for Rubyhttp://github.com/rspec 'KKSattr_required0.0.5attr_required and attr_optionalattr_required and attr_optionalhttp://github.com/nov/attr_requiredc QQcolumnize0.3.6Module 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. https://github.com/rocky/columnizey  Qcrack0.3.2Really simple JSON and XML parsing, ripped from Merb and Rails.http://github.com/jnunemaker/crackv 19'idebugger-linecache1.2.0Read file with cachingLinecache 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. http://github.com/cldwalker/debugger-linecache?I wdebugger-ruby_core_source1.2.3Provide Ruby core source filesProvide Ruby core source files for C extensions that need them.http://github.com/cldwalker/debugger-ruby_core_sourceo K/Udebugger1.6.1Fast Ruby debugger - base + clidebugger 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. http://github.com/cldwalker/debugger  @  <@!%%`" #--Orack-oauth21.0.5OAuth 2.0 Server & Client Library - Both Bearer and MAC token type are supportedOAuth 2.0 Server & Client Library. Both Bearer and MAC token type are supported.http://github.com/nov/rack-oauth2"+! QC;rack1.5.2a modular Ruby webserver interfaceRack 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/. http://rack.github.com/!webmock S )+]license_finder0.9.2Audit 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. https://github.com/pivotal/LicenseFinder# 9thor0.18.1A scr !Ohttpclient2.3.4.1gives something like the functionality of libwww-perl (LWP) in Rubyhttp://github.com/nahi/httpclientJ ediff-lcs1.1.3Diff::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 containersDiff::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. )i;emultipart-post1.2.0A 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.https://github.com/nicksieger/multipart-post[ GWfaraday0.8.8HTTP/REST API client library.https://github.com/lostisland/faradayk 5ofaraday-conductivity0.1.1Extra Faraday middleware, geared towards a service oriented architecture.Extra Faraday middleware, geared towards a service oriented architecture.https://github.com/yourkarma/faraday-conductivity 1IIifaraday_middleware0.9.0Various middleware for FaradayVarious middleware for Faradayhttps://github.com/pengwynn/faraday_middleware4 eSmulti_xml0.5.5A generic swappable back-end for XML parsingProvides swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML.https://github.com/sferik/multi_xmlL Whttparty0.11.0Makes http fun! Also, makes consuming restful web services dead easy.Makes http fun! Also, makes consuming restful web services dead easy.http://jnunemaker.github.com/httparty!Ohttpclient2.3.4.1gives something like the functionality of libwww-perl (LWP) in Rubyhttp://github.com/nahi/httpclientm GGCsequel4.2.0The Database Toolkit for RubyThe Database Toolkit for Rubyhttp://sequel.rubyforge.org  o ~ ,  M f7 c-Owebmock1.8.11Library for stubbing HTTP requests in Ruby.WebMock allows stubbing HTTP requests and setting expectations on HTTP requests.http://github.com/bblimke/webmock # 9thor0.18.1A scripting framework that replaces rake, sake and rubigenA scripting framework that replaces rake, sake and rubigenhttp://whatisthor.com/S )+]license_finder0.9.2Audit 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. https://github.com/pivotal/LicenseFinderc-Owebmock1.8.11Library for stubbing HTTP requests in Ruby.WebMock allows stubbing HTTP requests and setting expectations on HTTP requests.http://github.com/bblimke/webmock +! QC;rack1.5.2a modular Ruby webserver interfaceRack 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/. http://rack.github.com/!`" #--Orack-oauth21.0.5OAuth 2.0 Server & Client Library - Both Bearer and MAC token type are supportedOAuth 2.0 Server & Client Library. Both Bearer and MAC token type are supported.http://github.com/nov/rack-oauth2";# 1_Oretriable1.3.3.1Retriable 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.http://github.com/kamui/retriable#~$ !/iQrspec-core2.11.1rspec-core-2.11.1BDD for Ruby. RSpec runner and example groups.http://github.com/rspec/rspec-core$% 1?iarspec-expectations2.11.3rspec-expectations-2.11.3rspec expectations (should[_not] and matchers)http://github.com/rspec/rspec-expectations%& #1Srspec-mocks2.11.3rspec-mocks-2.11.3RSpec's 'test double' framework, with support for stubbing and mockinghttp://github.com/rspec/rspec-mocks&' !o shutl_auth0.8.1Used by various gems/services for communicating with shutl oauth serverLibrary used for using Shutl OAuth2 bearer tokens'c( )m3 shutl_resource1.3.6Manage Shutl Rest resource. Parse/Serialize JSONShutl Rest resource(