github_client 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 59f479249e2d7593a8606ec94c5a573d3c9f2056babc7a5abfaf62343dea1428
4
+ data.tar.gz: fc677cd13761a21a7492e7094b290eb88952ffe3f63737ef9c2a3e8ce8c52acd
5
+ SHA512:
6
+ metadata.gz: ff93eda3237fe939c9263ae2d254afd232f5a0160d4fa278e40ce47d54640d468ec40fdf1734d2854bbef2c5cd9c14179b648d0a93a1643080c93a5a911ef37a
7
+ data.tar.gz: 5735732a7c4e8207d6c825957c2d246b3444507a4a7f72cd49d337bddc33ce134ff4b78e007b435dbf83e25f36e67a0ddc6c33f6306a409dbd0e98233dc182a3
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ spec/config.yml
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.0
7
+ before_install: gem install bundler -v 2.0.1
data/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/).
6
+
7
+ ## [1.0] - 2019-02-03
8
+ ### Added
9
+ - Add `#get_user_repositories` method.
10
+ - Add `#get_org_repositories` method.
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at markchav3z@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "pry"
4
+
5
+ # Specify your gem's dependencies in github_client.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,95 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ github_client (0.1.0)
5
+ api_client_base
6
+ typhoeus
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activesupport (5.2.2)
12
+ concurrent-ruby (~> 1.0, >= 1.0.2)
13
+ i18n (>= 0.7, < 2)
14
+ minitest (~> 5.1)
15
+ tzinfo (~> 1.1)
16
+ addressable (2.6.0)
17
+ public_suffix (>= 2.0.2, < 4.0)
18
+ api_client_base (1.4.1)
19
+ activesupport (>= 3.0)
20
+ gem_config (>= 0.3.1)
21
+ virtus (>= 1.0)
22
+ axiom-types (0.1.1)
23
+ descendants_tracker (~> 0.0.4)
24
+ ice_nine (~> 0.11.0)
25
+ thread_safe (~> 0.3, >= 0.3.1)
26
+ coderay (1.1.2)
27
+ coercible (1.0.0)
28
+ descendants_tracker (~> 0.0.1)
29
+ concurrent-ruby (1.1.4)
30
+ crack (0.4.3)
31
+ safe_yaml (~> 1.0.0)
32
+ descendants_tracker (0.0.4)
33
+ thread_safe (~> 0.3, >= 0.3.1)
34
+ diff-lcs (1.3)
35
+ equalizer (0.0.11)
36
+ ethon (0.12.0)
37
+ ffi (>= 1.3.0)
38
+ ffi (1.10.0)
39
+ gem_config (0.3.1)
40
+ hashdiff (0.3.8)
41
+ i18n (1.5.3)
42
+ concurrent-ruby (~> 1.0)
43
+ ice_nine (0.11.2)
44
+ method_source (0.9.2)
45
+ minitest (5.11.3)
46
+ pry (0.12.2)
47
+ coderay (~> 1.1.0)
48
+ method_source (~> 0.9.0)
49
+ public_suffix (3.0.3)
50
+ rake (10.5.0)
51
+ rspec (3.8.0)
52
+ rspec-core (~> 3.8.0)
53
+ rspec-expectations (~> 3.8.0)
54
+ rspec-mocks (~> 3.8.0)
55
+ rspec-core (3.8.0)
56
+ rspec-support (~> 3.8.0)
57
+ rspec-expectations (3.8.2)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.8.0)
60
+ rspec-mocks (3.8.0)
61
+ diff-lcs (>= 1.2.0, < 2.0)
62
+ rspec-support (~> 3.8.0)
63
+ rspec-support (3.8.0)
64
+ safe_yaml (1.0.4)
65
+ thread_safe (0.3.6)
66
+ typhoeus (1.3.1)
67
+ ethon (>= 0.9.0)
68
+ tzinfo (1.2.5)
69
+ thread_safe (~> 0.1)
70
+ vcr (3.0.3)
71
+ virtus (1.0.5)
72
+ axiom-types (~> 0.1)
73
+ coercible (~> 1.0)
74
+ descendants_tracker (~> 0.0, >= 0.0.3)
75
+ equalizer (~> 0.0, >= 0.0.9)
76
+ webmock (2.3.2)
77
+ addressable (>= 2.3.6)
78
+ crack (>= 0.3.2)
79
+ hashdiff
80
+
81
+ PLATFORMS
82
+ ruby
83
+
84
+ DEPENDENCIES
85
+ activesupport (>= 3.0)
86
+ bundler (~> 2.0)
87
+ github_client!
88
+ pry
89
+ rake (~> 10.0)
90
+ rspec (~> 3.0)
91
+ vcr (~> 3.0)
92
+ webmock (~> 2.3)
93
+
94
+ BUNDLED WITH
95
+ 2.0.1
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Mark Chavez
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,61 @@
1
+ # GithubClient
2
+
3
+ Ruby wrapper for GitHub API.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'github_client-ruby'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install github_client-ruby
20
+
21
+ ## Usage
22
+
23
+ ### Initialize the Client
24
+
25
+ ```ruby
26
+ client = GithubClient.new(
27
+ host: "https://api.github.com",
28
+ access_token: "access token",
29
+ )
30
+ ```
31
+
32
+ ### Or, apply it globally
33
+
34
+ ```ruby
35
+ GithubClient.configure do |config|
36
+ config.host = "https://api.github.com"
37
+ config.access_token = "your access token"
38
+ end
39
+ ```
40
+
41
+ ### Fetch your repositories
42
+
43
+ See `spec/acceptance` for usage.
44
+
45
+ ## Development
46
+
47
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
48
+
49
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
50
+
51
+ ## Contributing
52
+
53
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/github_client-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
54
+
55
+ ## License
56
+
57
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
58
+
59
+ ## Code of Conduct
60
+
61
+ Everyone interacting in the GithubClient::Ruby project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/github_client-ruby/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "github_client"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,115 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: "[host]/orgs/[org]/repos"
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Typhoeus - https://github.com/typhoeus/typhoeus
12
+ Authorization:
13
+ - token [access_token]
14
+ Expect:
15
+ - ''
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Date:
22
+ - Sun, 03 Feb 2019 09:38:27 GMT
23
+ Content-Type:
24
+ - application/json; charset=utf-8
25
+ Content-Length:
26
+ - '164817'
27
+ Server:
28
+ - GitHub.com
29
+ Status:
30
+ - 200 OK
31
+ X-Ratelimit-Limit:
32
+ - '5000'
33
+ X-Ratelimit-Remaining:
34
+ - '4972'
35
+ X-Ratelimit-Reset:
36
+ - '1549187305'
37
+ Cache-Control:
38
+ - private, max-age=60, s-maxage=60
39
+ Vary:
40
+ - Accept, Authorization, Cookie, X-GitHub-OTP
41
+ - Accept-Encoding
42
+ Etag:
43
+ - '"8a629e44f82a30a15a90f74ce22d505b"'
44
+ X-Oauth-Scopes:
45
+ - notifications, repo, user
46
+ X-Accepted-Oauth-Scopes:
47
+ - ''
48
+ X-Github-Media-Type:
49
+ - github.v3; format=json
50
+ Link:
51
+ - <[host]/organizations/2975391/repos?page=2>; rel="next", <[host]/organizations/2975391/repos?page=4>;
52
+ rel="last"
53
+ Access-Control-Expose-Headers:
54
+ - ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining,
55
+ X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval,
56
+ X-GitHub-Media-Type
57
+ Access-Control-Allow-Origin:
58
+ - "*"
59
+ Strict-Transport-Security:
60
+ - max-age=31536000; includeSubdomains; preload
61
+ X-Frame-Options:
62
+ - deny
63
+ X-Content-Type-Options:
64
+ - nosniff
65
+ X-Xss-Protection:
66
+ - 1; mode=block
67
+ Referrer-Policy:
68
+ - origin-when-cross-origin, strict-origin-when-cross-origin
69
+ Content-Security-Policy:
70
+ - default-src 'none'
71
+ X-Github-Request-Id:
72
+ - A173:22AD:3AB88B:50B1A5:5C56B691
73
+ body:
74
+ encoding: UTF-8
75
+ string: '[{"id":20797883,"node_id":"MDEwOlJlcG9zaXRvcnkyMDc5Nzg4Mw==","name":"imacchiato_ws","full_name":"[org]/imacchiato_ws","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/imacchiato_ws","description":"website","fork":false,"url":"[host]/repos/[org]/imacchiato_ws","forks_url":"[host]/repos/[org]/imacchiato_ws/forks","keys_url":"[host]/repos/[org]/imacchiato_ws/keys{/key_id}","collaborators_url":"[host]/repos/[org]/imacchiato_ws/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/imacchiato_ws/teams","hooks_url":"[host]/repos/[org]/imacchiato_ws/hooks","issue_events_url":"[host]/repos/[org]/imacchiato_ws/issues/events{/number}","events_url":"[host]/repos/[org]/imacchiato_ws/events","assignees_url":"[host]/repos/[org]/imacchiato_ws/assignees{/user}","branches_url":"[host]/repos/[org]/imacchiato_ws/branches{/branch}","tags_url":"[host]/repos/[org]/imacchiato_ws/tags","blobs_url":"[host]/repos/[org]/imacchiato_ws/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/imacchiato_ws/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/imacchiato_ws/git/refs{/sha}","trees_url":"[host]/repos/[org]/imacchiato_ws/git/trees{/sha}","statuses_url":"[host]/repos/[org]/imacchiato_ws/statuses/{sha}","languages_url":"[host]/repos/[org]/imacchiato_ws/languages","stargazers_url":"[host]/repos/[org]/imacchiato_ws/stargazers","contributors_url":"[host]/repos/[org]/imacchiato_ws/contributors","subscribers_url":"[host]/repos/[org]/imacchiato_ws/subscribers","subscription_url":"[host]/repos/[org]/imacchiato_ws/subscription","commits_url":"[host]/repos/[org]/imacchiato_ws/commits{/sha}","git_commits_url":"[host]/repos/[org]/imacchiato_ws/git/commits{/sha}","comments_url":"[host]/repos/[org]/imacchiato_ws/comments{/number}","issue_comment_url":"[host]/repos/[org]/imacchiato_ws/issues/comments{/number}","contents_url":"[host]/repos/[org]/imacchiato_ws/contents/{+path}","compare_url":"[host]/repos/[org]/imacchiato_ws/compare/{base}...{head}","merges_url":"[host]/repos/[org]/imacchiato_ws/merges","archive_url":"[host]/repos/[org]/imacchiato_ws/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/imacchiato_ws/downloads","issues_url":"[host]/repos/[org]/imacchiato_ws/issues{/number}","pulls_url":"[host]/repos/[org]/imacchiato_ws/pulls{/number}","milestones_url":"[host]/repos/[org]/imacchiato_ws/milestones{/number}","notifications_url":"[host]/repos/[org]/imacchiato_ws/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/imacchiato_ws/labels{/name}","releases_url":"[host]/repos/[org]/imacchiato_ws/releases{/id}","deployments_url":"[host]/repos/[org]/imacchiato_ws/deployments","created_at":"2014-06-13T08:43:24Z","updated_at":"2014-06-23T08:36:16Z","pushed_at":"2014-06-23T08:36:16Z","git_url":"git://github.com/[org]/imacchiato_ws.git","ssh_url":"git@github.com:[org]/imacchiato_ws.git","clone_url":"https://github.com/[org]/imacchiato_ws.git","svn_url":"https://github.com/[org]/imacchiato_ws","homepage":null,"size":1088,"stargazers_count":0,"watchers_count":0,"language":"CSS","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":20947681,"node_id":"MDEwOlJlcG9zaXRvcnkyMDk0NzY4MQ==","name":"compass-procurements","full_name":"[org]/compass-procurements","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/compass-procurements","description":null,"fork":false,"url":"[host]/repos/[org]/compass-procurements","forks_url":"[host]/repos/[org]/compass-procurements/forks","keys_url":"[host]/repos/[org]/compass-procurements/keys{/key_id}","collaborators_url":"[host]/repos/[org]/compass-procurements/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/compass-procurements/teams","hooks_url":"[host]/repos/[org]/compass-procurements/hooks","issue_events_url":"[host]/repos/[org]/compass-procurements/issues/events{/number}","events_url":"[host]/repos/[org]/compass-procurements/events","assignees_url":"[host]/repos/[org]/compass-procurements/assignees{/user}","branches_url":"[host]/repos/[org]/compass-procurements/branches{/branch}","tags_url":"[host]/repos/[org]/compass-procurements/tags","blobs_url":"[host]/repos/[org]/compass-procurements/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/compass-procurements/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/compass-procurements/git/refs{/sha}","trees_url":"[host]/repos/[org]/compass-procurements/git/trees{/sha}","statuses_url":"[host]/repos/[org]/compass-procurements/statuses/{sha}","languages_url":"[host]/repos/[org]/compass-procurements/languages","stargazers_url":"[host]/repos/[org]/compass-procurements/stargazers","contributors_url":"[host]/repos/[org]/compass-procurements/contributors","subscribers_url":"[host]/repos/[org]/compass-procurements/subscribers","subscription_url":"[host]/repos/[org]/compass-procurements/subscription","commits_url":"[host]/repos/[org]/compass-procurements/commits{/sha}","git_commits_url":"[host]/repos/[org]/compass-procurements/git/commits{/sha}","comments_url":"[host]/repos/[org]/compass-procurements/comments{/number}","issue_comment_url":"[host]/repos/[org]/compass-procurements/issues/comments{/number}","contents_url":"[host]/repos/[org]/compass-procurements/contents/{+path}","compare_url":"[host]/repos/[org]/compass-procurements/compare/{base}...{head}","merges_url":"[host]/repos/[org]/compass-procurements/merges","archive_url":"[host]/repos/[org]/compass-procurements/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/compass-procurements/downloads","issues_url":"[host]/repos/[org]/compass-procurements/issues{/number}","pulls_url":"[host]/repos/[org]/compass-procurements/pulls{/number}","milestones_url":"[host]/repos/[org]/compass-procurements/milestones{/number}","notifications_url":"[host]/repos/[org]/compass-procurements/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/compass-procurements/labels{/name}","releases_url":"[host]/repos/[org]/compass-procurements/releases{/id}","deployments_url":"[host]/repos/[org]/compass-procurements/deployments","created_at":"2014-06-18T03:06:14Z","updated_at":"2014-10-15T09:48:25Z","pushed_at":"2014-11-03T10:30:53Z","git_url":"git://github.com/[org]/compass-procurements.git","ssh_url":"git@github.com:[org]/compass-procurements.git","clone_url":"https://github.com/[org]/compass-procurements.git","svn_url":"https://github.com/[org]/compass-procurements","homepage":null,"size":1996,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":1,"license":null,"forks":0,"open_issues":1,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":38918014,"node_id":"MDEwOlJlcG9zaXRvcnkzODkxODAxNA==","name":"bloomremit","full_name":"[org]/bloomremit","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/bloomremit","description":null,"fork":false,"url":"[host]/repos/[org]/bloomremit","forks_url":"[host]/repos/[org]/bloomremit/forks","keys_url":"[host]/repos/[org]/bloomremit/keys{/key_id}","collaborators_url":"[host]/repos/[org]/bloomremit/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/bloomremit/teams","hooks_url":"[host]/repos/[org]/bloomremit/hooks","issue_events_url":"[host]/repos/[org]/bloomremit/issues/events{/number}","events_url":"[host]/repos/[org]/bloomremit/events","assignees_url":"[host]/repos/[org]/bloomremit/assignees{/user}","branches_url":"[host]/repos/[org]/bloomremit/branches{/branch}","tags_url":"[host]/repos/[org]/bloomremit/tags","blobs_url":"[host]/repos/[org]/bloomremit/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/bloomremit/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/bloomremit/git/refs{/sha}","trees_url":"[host]/repos/[org]/bloomremit/git/trees{/sha}","statuses_url":"[host]/repos/[org]/bloomremit/statuses/{sha}","languages_url":"[host]/repos/[org]/bloomremit/languages","stargazers_url":"[host]/repos/[org]/bloomremit/stargazers","contributors_url":"[host]/repos/[org]/bloomremit/contributors","subscribers_url":"[host]/repos/[org]/bloomremit/subscribers","subscription_url":"[host]/repos/[org]/bloomremit/subscription","commits_url":"[host]/repos/[org]/bloomremit/commits{/sha}","git_commits_url":"[host]/repos/[org]/bloomremit/git/commits{/sha}","comments_url":"[host]/repos/[org]/bloomremit/comments{/number}","issue_comment_url":"[host]/repos/[org]/bloomremit/issues/comments{/number}","contents_url":"[host]/repos/[org]/bloomremit/contents/{+path}","compare_url":"[host]/repos/[org]/bloomremit/compare/{base}...{head}","merges_url":"[host]/repos/[org]/bloomremit/merges","archive_url":"[host]/repos/[org]/bloomremit/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/bloomremit/downloads","issues_url":"[host]/repos/[org]/bloomremit/issues{/number}","pulls_url":"[host]/repos/[org]/bloomremit/pulls{/number}","milestones_url":"[host]/repos/[org]/bloomremit/milestones{/number}","notifications_url":"[host]/repos/[org]/bloomremit/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/bloomremit/labels{/name}","releases_url":"[host]/repos/[org]/bloomremit/releases{/id}","deployments_url":"[host]/repos/[org]/bloomremit/deployments","created_at":"2015-07-11T07:33:32Z","updated_at":"2019-02-02T08:29:58Z","pushed_at":"2019-02-02T08:29:58Z","git_url":"git://github.com/[org]/bloomremit.git","ssh_url":"git@github.com:[org]/bloomremit.git","clone_url":"https://github.com/[org]/bloomremit.git","svn_url":"https://github.com/[org]/bloomremit","homepage":"https://www.bloomremit.net","size":38036,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":2,"license":null,"forks":0,"open_issues":2,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":true,"pull":true}},{"id":42344749,"node_id":"MDEwOlJlcG9zaXRvcnk0MjM0NDc0OQ==","name":"bloom_cash","full_name":"[org]/bloom_cash","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/bloom_cash","description":"Demo
76
+ of Bloom Cash Mobile Money concept","fork":false,"url":"[host]/repos/[org]/bloom_cash","forks_url":"[host]/repos/[org]/bloom_cash/forks","keys_url":"[host]/repos/[org]/bloom_cash/keys{/key_id}","collaborators_url":"[host]/repos/[org]/bloom_cash/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/bloom_cash/teams","hooks_url":"[host]/repos/[org]/bloom_cash/hooks","issue_events_url":"[host]/repos/[org]/bloom_cash/issues/events{/number}","events_url":"[host]/repos/[org]/bloom_cash/events","assignees_url":"[host]/repos/[org]/bloom_cash/assignees{/user}","branches_url":"[host]/repos/[org]/bloom_cash/branches{/branch}","tags_url":"[host]/repos/[org]/bloom_cash/tags","blobs_url":"[host]/repos/[org]/bloom_cash/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/bloom_cash/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/bloom_cash/git/refs{/sha}","trees_url":"[host]/repos/[org]/bloom_cash/git/trees{/sha}","statuses_url":"[host]/repos/[org]/bloom_cash/statuses/{sha}","languages_url":"[host]/repos/[org]/bloom_cash/languages","stargazers_url":"[host]/repos/[org]/bloom_cash/stargazers","contributors_url":"[host]/repos/[org]/bloom_cash/contributors","subscribers_url":"[host]/repos/[org]/bloom_cash/subscribers","subscription_url":"[host]/repos/[org]/bloom_cash/subscription","commits_url":"[host]/repos/[org]/bloom_cash/commits{/sha}","git_commits_url":"[host]/repos/[org]/bloom_cash/git/commits{/sha}","comments_url":"[host]/repos/[org]/bloom_cash/comments{/number}","issue_comment_url":"[host]/repos/[org]/bloom_cash/issues/comments{/number}","contents_url":"[host]/repos/[org]/bloom_cash/contents/{+path}","compare_url":"[host]/repos/[org]/bloom_cash/compare/{base}...{head}","merges_url":"[host]/repos/[org]/bloom_cash/merges","archive_url":"[host]/repos/[org]/bloom_cash/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/bloom_cash/downloads","issues_url":"[host]/repos/[org]/bloom_cash/issues{/number}","pulls_url":"[host]/repos/[org]/bloom_cash/pulls{/number}","milestones_url":"[host]/repos/[org]/bloom_cash/milestones{/number}","notifications_url":"[host]/repos/[org]/bloom_cash/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/bloom_cash/labels{/name}","releases_url":"[host]/repos/[org]/bloom_cash/releases{/id}","deployments_url":"[host]/repos/[org]/bloom_cash/deployments","created_at":"2015-09-12T04:37:16Z","updated_at":"2017-02-03T12:22:58Z","pushed_at":"2017-11-17T07:47:07Z","git_url":"git://github.com/[org]/bloom_cash.git","ssh_url":"git@github.com:[org]/bloom_cash.git","clone_url":"https://github.com/[org]/bloom_cash.git","svn_url":"https://github.com/[org]/bloom_cash","homepage":null,"size":11933,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":48484260,"node_id":"MDEwOlJlcG9zaXRvcnk0ODQ4NDI2MA==","name":"bloomplus","full_name":"[org]/bloomplus","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/bloomplus","description":"Bloom
77
+ Trading Desk","fork":false,"url":"[host]/repos/[org]/bloomplus","forks_url":"[host]/repos/[org]/bloomplus/forks","keys_url":"[host]/repos/[org]/bloomplus/keys{/key_id}","collaborators_url":"[host]/repos/[org]/bloomplus/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/bloomplus/teams","hooks_url":"[host]/repos/[org]/bloomplus/hooks","issue_events_url":"[host]/repos/[org]/bloomplus/issues/events{/number}","events_url":"[host]/repos/[org]/bloomplus/events","assignees_url":"[host]/repos/[org]/bloomplus/assignees{/user}","branches_url":"[host]/repos/[org]/bloomplus/branches{/branch}","tags_url":"[host]/repos/[org]/bloomplus/tags","blobs_url":"[host]/repos/[org]/bloomplus/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/bloomplus/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/bloomplus/git/refs{/sha}","trees_url":"[host]/repos/[org]/bloomplus/git/trees{/sha}","statuses_url":"[host]/repos/[org]/bloomplus/statuses/{sha}","languages_url":"[host]/repos/[org]/bloomplus/languages","stargazers_url":"[host]/repos/[org]/bloomplus/stargazers","contributors_url":"[host]/repos/[org]/bloomplus/contributors","subscribers_url":"[host]/repos/[org]/bloomplus/subscribers","subscription_url":"[host]/repos/[org]/bloomplus/subscription","commits_url":"[host]/repos/[org]/bloomplus/commits{/sha}","git_commits_url":"[host]/repos/[org]/bloomplus/git/commits{/sha}","comments_url":"[host]/repos/[org]/bloomplus/comments{/number}","issue_comment_url":"[host]/repos/[org]/bloomplus/issues/comments{/number}","contents_url":"[host]/repos/[org]/bloomplus/contents/{+path}","compare_url":"[host]/repos/[org]/bloomplus/compare/{base}...{head}","merges_url":"[host]/repos/[org]/bloomplus/merges","archive_url":"[host]/repos/[org]/bloomplus/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/bloomplus/downloads","issues_url":"[host]/repos/[org]/bloomplus/issues{/number}","pulls_url":"[host]/repos/[org]/bloomplus/pulls{/number}","milestones_url":"[host]/repos/[org]/bloomplus/milestones{/number}","notifications_url":"[host]/repos/[org]/bloomplus/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/bloomplus/labels{/name}","releases_url":"[host]/repos/[org]/bloomplus/releases{/id}","deployments_url":"[host]/repos/[org]/bloomplus/deployments","created_at":"2015-12-23T10:18:50Z","updated_at":"2018-12-21T02:30:34Z","pushed_at":"2018-12-21T08:21:39Z","git_url":"git://github.com/[org]/bloomplus.git","ssh_url":"git@github.com:[org]/bloomplus.git","clone_url":"https://github.com/[org]/bloomplus.git","svn_url":"https://github.com/[org]/bloomplus","homepage":null,"size":8171,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":48729053,"node_id":"MDEwOlJlcG9zaXRvcnk0ODcyOTA1Mw==","name":"paynamics_client-ruby","full_name":"[org]/paynamics_client-ruby","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/paynamics_client-ruby","description":"Ruby
78
+ wrapper for the Paynamics API","fork":false,"url":"[host]/repos/[org]/paynamics_client-ruby","forks_url":"[host]/repos/[org]/paynamics_client-ruby/forks","keys_url":"[host]/repos/[org]/paynamics_client-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/paynamics_client-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/paynamics_client-ruby/teams","hooks_url":"[host]/repos/[org]/paynamics_client-ruby/hooks","issue_events_url":"[host]/repos/[org]/paynamics_client-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/paynamics_client-ruby/events","assignees_url":"[host]/repos/[org]/paynamics_client-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/paynamics_client-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/paynamics_client-ruby/tags","blobs_url":"[host]/repos/[org]/paynamics_client-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/paynamics_client-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/paynamics_client-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/paynamics_client-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/paynamics_client-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/paynamics_client-ruby/languages","stargazers_url":"[host]/repos/[org]/paynamics_client-ruby/stargazers","contributors_url":"[host]/repos/[org]/paynamics_client-ruby/contributors","subscribers_url":"[host]/repos/[org]/paynamics_client-ruby/subscribers","subscription_url":"[host]/repos/[org]/paynamics_client-ruby/subscription","commits_url":"[host]/repos/[org]/paynamics_client-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/paynamics_client-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/paynamics_client-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/paynamics_client-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/paynamics_client-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/paynamics_client-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/paynamics_client-ruby/merges","archive_url":"[host]/repos/[org]/paynamics_client-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/paynamics_client-ruby/downloads","issues_url":"[host]/repos/[org]/paynamics_client-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/paynamics_client-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/paynamics_client-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/paynamics_client-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/paynamics_client-ruby/labels{/name}","releases_url":"[host]/repos/[org]/paynamics_client-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/paynamics_client-ruby/deployments","created_at":"2015-12-29T05:20:24Z","updated_at":"2018-04-30T02:27:17Z","pushed_at":"2018-04-30T02:27:19Z","git_url":"git://github.com/[org]/paynamics_client-ruby.git","ssh_url":"git@github.com:[org]/paynamics_client-ruby.git","clone_url":"https://github.com/[org]/paynamics_client-ruby.git","svn_url":"https://github.com/[org]/paynamics_client-ruby","homepage":null,"size":45,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":true,"pull":true}},{"id":49491670,"node_id":"MDEwOlJlcG9zaXRvcnk0OTQ5MTY3MA==","name":"bloombots","full_name":"[org]/bloombots","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/bloombots","description":null,"fork":false,"url":"[host]/repos/[org]/bloombots","forks_url":"[host]/repos/[org]/bloombots/forks","keys_url":"[host]/repos/[org]/bloombots/keys{/key_id}","collaborators_url":"[host]/repos/[org]/bloombots/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/bloombots/teams","hooks_url":"[host]/repos/[org]/bloombots/hooks","issue_events_url":"[host]/repos/[org]/bloombots/issues/events{/number}","events_url":"[host]/repos/[org]/bloombots/events","assignees_url":"[host]/repos/[org]/bloombots/assignees{/user}","branches_url":"[host]/repos/[org]/bloombots/branches{/branch}","tags_url":"[host]/repos/[org]/bloombots/tags","blobs_url":"[host]/repos/[org]/bloombots/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/bloombots/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/bloombots/git/refs{/sha}","trees_url":"[host]/repos/[org]/bloombots/git/trees{/sha}","statuses_url":"[host]/repos/[org]/bloombots/statuses/{sha}","languages_url":"[host]/repos/[org]/bloombots/languages","stargazers_url":"[host]/repos/[org]/bloombots/stargazers","contributors_url":"[host]/repos/[org]/bloombots/contributors","subscribers_url":"[host]/repos/[org]/bloombots/subscribers","subscription_url":"[host]/repos/[org]/bloombots/subscription","commits_url":"[host]/repos/[org]/bloombots/commits{/sha}","git_commits_url":"[host]/repos/[org]/bloombots/git/commits{/sha}","comments_url":"[host]/repos/[org]/bloombots/comments{/number}","issue_comment_url":"[host]/repos/[org]/bloombots/issues/comments{/number}","contents_url":"[host]/repos/[org]/bloombots/contents/{+path}","compare_url":"[host]/repos/[org]/bloombots/compare/{base}...{head}","merges_url":"[host]/repos/[org]/bloombots/merges","archive_url":"[host]/repos/[org]/bloombots/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/bloombots/downloads","issues_url":"[host]/repos/[org]/bloombots/issues{/number}","pulls_url":"[host]/repos/[org]/bloombots/pulls{/number}","milestones_url":"[host]/repos/[org]/bloombots/milestones{/number}","notifications_url":"[host]/repos/[org]/bloombots/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/bloombots/labels{/name}","releases_url":"[host]/repos/[org]/bloombots/releases{/id}","deployments_url":"[host]/repos/[org]/bloombots/deployments","created_at":"2016-01-12T10:08:29Z","updated_at":"2016-01-12T10:09:19Z","pushed_at":"2016-01-12T10:09:19Z","git_url":"git://github.com/[org]/bloombots.git","ssh_url":"git@github.com:[org]/bloombots.git","clone_url":"https://github.com/[org]/bloombots.git","svn_url":"https://github.com/[org]/bloombots","homepage":null,"size":16,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":49538436,"node_id":"MDEwOlJlcG9zaXRvcnk0OTUzODQzNg==","name":"bloombridge","full_name":"[org]/bloombridge","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/bloombridge","description":"Wrapper
79
+ for third-party FI''s without APIs, i.e., Cebuana Lhuillier, BDO, etc","fork":false,"url":"[host]/repos/[org]/bloombridge","forks_url":"[host]/repos/[org]/bloombridge/forks","keys_url":"[host]/repos/[org]/bloombridge/keys{/key_id}","collaborators_url":"[host]/repos/[org]/bloombridge/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/bloombridge/teams","hooks_url":"[host]/repos/[org]/bloombridge/hooks","issue_events_url":"[host]/repos/[org]/bloombridge/issues/events{/number}","events_url":"[host]/repos/[org]/bloombridge/events","assignees_url":"[host]/repos/[org]/bloombridge/assignees{/user}","branches_url":"[host]/repos/[org]/bloombridge/branches{/branch}","tags_url":"[host]/repos/[org]/bloombridge/tags","blobs_url":"[host]/repos/[org]/bloombridge/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/bloombridge/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/bloombridge/git/refs{/sha}","trees_url":"[host]/repos/[org]/bloombridge/git/trees{/sha}","statuses_url":"[host]/repos/[org]/bloombridge/statuses/{sha}","languages_url":"[host]/repos/[org]/bloombridge/languages","stargazers_url":"[host]/repos/[org]/bloombridge/stargazers","contributors_url":"[host]/repos/[org]/bloombridge/contributors","subscribers_url":"[host]/repos/[org]/bloombridge/subscribers","subscription_url":"[host]/repos/[org]/bloombridge/subscription","commits_url":"[host]/repos/[org]/bloombridge/commits{/sha}","git_commits_url":"[host]/repos/[org]/bloombridge/git/commits{/sha}","comments_url":"[host]/repos/[org]/bloombridge/comments{/number}","issue_comment_url":"[host]/repos/[org]/bloombridge/issues/comments{/number}","contents_url":"[host]/repos/[org]/bloombridge/contents/{+path}","compare_url":"[host]/repos/[org]/bloombridge/compare/{base}...{head}","merges_url":"[host]/repos/[org]/bloombridge/merges","archive_url":"[host]/repos/[org]/bloombridge/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/bloombridge/downloads","issues_url":"[host]/repos/[org]/bloombridge/issues{/number}","pulls_url":"[host]/repos/[org]/bloombridge/pulls{/number}","milestones_url":"[host]/repos/[org]/bloombridge/milestones{/number}","notifications_url":"[host]/repos/[org]/bloombridge/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/bloombridge/labels{/name}","releases_url":"[host]/repos/[org]/bloombridge/releases{/id}","deployments_url":"[host]/repos/[org]/bloombridge/deployments","created_at":"2016-01-13T00:35:41Z","updated_at":"2016-01-13T00:36:39Z","pushed_at":"2016-01-25T08:27:18Z","git_url":"git://github.com/[org]/bloombridge.git","ssh_url":"git@github.com:[org]/bloombridge.git","clone_url":"https://github.com/[org]/bloombridge.git","svn_url":"https://github.com/[org]/bloombridge","homepage":null,"size":1222,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":51282182,"node_id":"MDEwOlJlcG9zaXRvcnk1MTI4MjE4Mg==","name":"shoulda-matchers","full_name":"[org]/shoulda-matchers","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/shoulda-matchers","description":"Collection
80
+ of testing matchers extracted from Shoulda","fork":true,"url":"[host]/repos/[org]/shoulda-matchers","forks_url":"[host]/repos/[org]/shoulda-matchers/forks","keys_url":"[host]/repos/[org]/shoulda-matchers/keys{/key_id}","collaborators_url":"[host]/repos/[org]/shoulda-matchers/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/shoulda-matchers/teams","hooks_url":"[host]/repos/[org]/shoulda-matchers/hooks","issue_events_url":"[host]/repos/[org]/shoulda-matchers/issues/events{/number}","events_url":"[host]/repos/[org]/shoulda-matchers/events","assignees_url":"[host]/repos/[org]/shoulda-matchers/assignees{/user}","branches_url":"[host]/repos/[org]/shoulda-matchers/branches{/branch}","tags_url":"[host]/repos/[org]/shoulda-matchers/tags","blobs_url":"[host]/repos/[org]/shoulda-matchers/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/shoulda-matchers/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/shoulda-matchers/git/refs{/sha}","trees_url":"[host]/repos/[org]/shoulda-matchers/git/trees{/sha}","statuses_url":"[host]/repos/[org]/shoulda-matchers/statuses/{sha}","languages_url":"[host]/repos/[org]/shoulda-matchers/languages","stargazers_url":"[host]/repos/[org]/shoulda-matchers/stargazers","contributors_url":"[host]/repos/[org]/shoulda-matchers/contributors","subscribers_url":"[host]/repos/[org]/shoulda-matchers/subscribers","subscription_url":"[host]/repos/[org]/shoulda-matchers/subscription","commits_url":"[host]/repos/[org]/shoulda-matchers/commits{/sha}","git_commits_url":"[host]/repos/[org]/shoulda-matchers/git/commits{/sha}","comments_url":"[host]/repos/[org]/shoulda-matchers/comments{/number}","issue_comment_url":"[host]/repos/[org]/shoulda-matchers/issues/comments{/number}","contents_url":"[host]/repos/[org]/shoulda-matchers/contents/{+path}","compare_url":"[host]/repos/[org]/shoulda-matchers/compare/{base}...{head}","merges_url":"[host]/repos/[org]/shoulda-matchers/merges","archive_url":"[host]/repos/[org]/shoulda-matchers/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/shoulda-matchers/downloads","issues_url":"[host]/repos/[org]/shoulda-matchers/issues{/number}","pulls_url":"[host]/repos/[org]/shoulda-matchers/pulls{/number}","milestones_url":"[host]/repos/[org]/shoulda-matchers/milestones{/number}","notifications_url":"[host]/repos/[org]/shoulda-matchers/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/shoulda-matchers/labels{/name}","releases_url":"[host]/repos/[org]/shoulda-matchers/releases{/id}","deployments_url":"[host]/repos/[org]/shoulda-matchers/deployments","created_at":"2016-02-08T06:14:18Z","updated_at":"2016-02-08T06:14:19Z","pushed_at":"2016-02-08T06:26:01Z","git_url":"git://github.com/[org]/shoulda-matchers.git","ssh_url":"git@github.com:[org]/shoulda-matchers.git","clone_url":"https://github.com/[org]/shoulda-matchers.git","svn_url":"https://github.com/[org]/shoulda-matchers","homepage":"http://matchers.shoulda.io","size":13231,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
81
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":51406156,"node_id":"MDEwOlJlcG9zaXRvcnk1MTQwNjE1Ng==","name":"dragonpay_client-ruby","full_name":"[org]/dragonpay_client-ruby","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/dragonpay_client-ruby","description":"Ruby
82
+ Client for the Dragonpay API","fork":false,"url":"[host]/repos/[org]/dragonpay_client-ruby","forks_url":"[host]/repos/[org]/dragonpay_client-ruby/forks","keys_url":"[host]/repos/[org]/dragonpay_client-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/dragonpay_client-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/dragonpay_client-ruby/teams","hooks_url":"[host]/repos/[org]/dragonpay_client-ruby/hooks","issue_events_url":"[host]/repos/[org]/dragonpay_client-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/dragonpay_client-ruby/events","assignees_url":"[host]/repos/[org]/dragonpay_client-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/dragonpay_client-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/dragonpay_client-ruby/tags","blobs_url":"[host]/repos/[org]/dragonpay_client-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/dragonpay_client-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/dragonpay_client-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/dragonpay_client-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/dragonpay_client-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/dragonpay_client-ruby/languages","stargazers_url":"[host]/repos/[org]/dragonpay_client-ruby/stargazers","contributors_url":"[host]/repos/[org]/dragonpay_client-ruby/contributors","subscribers_url":"[host]/repos/[org]/dragonpay_client-ruby/subscribers","subscription_url":"[host]/repos/[org]/dragonpay_client-ruby/subscription","commits_url":"[host]/repos/[org]/dragonpay_client-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/dragonpay_client-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/dragonpay_client-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/dragonpay_client-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/dragonpay_client-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/dragonpay_client-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/dragonpay_client-ruby/merges","archive_url":"[host]/repos/[org]/dragonpay_client-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/dragonpay_client-ruby/downloads","issues_url":"[host]/repos/[org]/dragonpay_client-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/dragonpay_client-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/dragonpay_client-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/dragonpay_client-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/dragonpay_client-ruby/labels{/name}","releases_url":"[host]/repos/[org]/dragonpay_client-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/dragonpay_client-ruby/deployments","created_at":"2016-02-09T22:43:40Z","updated_at":"2016-11-14T06:12:58Z","pushed_at":"2017-11-20T05:14:29Z","git_url":"git://github.com/[org]/dragonpay_client-ruby.git","ssh_url":"git@github.com:[org]/dragonpay_client-ruby.git","clone_url":"https://github.com/[org]/dragonpay_client-ruby.git","svn_url":"https://github.com/[org]/dragonpay_client-ruby","homepage":null,"size":37,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":52766415,"node_id":"MDEwOlJlcG9zaXRvcnk1Mjc2NjQxNQ==","name":"bdo_remittance_service_client-ruby","full_name":"[org]/bdo_remittance_service_client-ruby","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/bdo_remittance_service_client-ruby","description":null,"fork":false,"url":"[host]/repos/[org]/bdo_remittance_service_client-ruby","forks_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/forks","keys_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/teams","hooks_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/hooks","issue_events_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/events","assignees_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/tags","blobs_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/languages","stargazers_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/stargazers","contributors_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/contributors","subscribers_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/subscribers","subscription_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/subscription","commits_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/merges","archive_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/downloads","issues_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/labels{/name}","releases_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/bdo_remittance_service_client-ruby/deployments","created_at":"2016-02-29T05:30:22Z","updated_at":"2017-02-13T10:06:31Z","pushed_at":"2017-02-16T05:35:24Z","git_url":"git://github.com/[org]/bdo_remittance_service_client-ruby.git","ssh_url":"git@github.com:[org]/bdo_remittance_service_client-ruby.git","clone_url":"https://github.com/[org]/bdo_remittance_service_client-ruby.git","svn_url":"https://github.com/[org]/bdo_remittance_service_client-ruby","homepage":null,"size":76,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":52863774,"node_id":"MDEwOlJlcG9zaXRvcnk1Mjg2Mzc3NA==","name":"soap_client","full_name":"[org]/soap_client","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/soap_client","description":null,"fork":false,"url":"[host]/repos/[org]/soap_client","forks_url":"[host]/repos/[org]/soap_client/forks","keys_url":"[host]/repos/[org]/soap_client/keys{/key_id}","collaborators_url":"[host]/repos/[org]/soap_client/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/soap_client/teams","hooks_url":"[host]/repos/[org]/soap_client/hooks","issue_events_url":"[host]/repos/[org]/soap_client/issues/events{/number}","events_url":"[host]/repos/[org]/soap_client/events","assignees_url":"[host]/repos/[org]/soap_client/assignees{/user}","branches_url":"[host]/repos/[org]/soap_client/branches{/branch}","tags_url":"[host]/repos/[org]/soap_client/tags","blobs_url":"[host]/repos/[org]/soap_client/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/soap_client/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/soap_client/git/refs{/sha}","trees_url":"[host]/repos/[org]/soap_client/git/trees{/sha}","statuses_url":"[host]/repos/[org]/soap_client/statuses/{sha}","languages_url":"[host]/repos/[org]/soap_client/languages","stargazers_url":"[host]/repos/[org]/soap_client/stargazers","contributors_url":"[host]/repos/[org]/soap_client/contributors","subscribers_url":"[host]/repos/[org]/soap_client/subscribers","subscription_url":"[host]/repos/[org]/soap_client/subscription","commits_url":"[host]/repos/[org]/soap_client/commits{/sha}","git_commits_url":"[host]/repos/[org]/soap_client/git/commits{/sha}","comments_url":"[host]/repos/[org]/soap_client/comments{/number}","issue_comment_url":"[host]/repos/[org]/soap_client/issues/comments{/number}","contents_url":"[host]/repos/[org]/soap_client/contents/{+path}","compare_url":"[host]/repos/[org]/soap_client/compare/{base}...{head}","merges_url":"[host]/repos/[org]/soap_client/merges","archive_url":"[host]/repos/[org]/soap_client/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/soap_client/downloads","issues_url":"[host]/repos/[org]/soap_client/issues{/number}","pulls_url":"[host]/repos/[org]/soap_client/pulls{/number}","milestones_url":"[host]/repos/[org]/soap_client/milestones{/number}","notifications_url":"[host]/repos/[org]/soap_client/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/soap_client/labels{/name}","releases_url":"[host]/repos/[org]/soap_client/releases{/id}","deployments_url":"[host]/repos/[org]/soap_client/deployments","created_at":"2016-03-01T09:15:57Z","updated_at":"2016-03-01T09:16:12Z","pushed_at":"2017-02-17T11:39:27Z","git_url":"git://github.com/[org]/soap_client.git","ssh_url":"git@github.com:[org]/soap_client.git","clone_url":"https://github.com/[org]/soap_client.git","svn_url":"https://github.com/[org]/soap_client","homepage":null,"size":24,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
83
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":52924406,"node_id":"MDEwOlJlcG9zaXRvcnk1MjkyNDQwNg==","name":"coinkite-ruby","full_name":"[org]/coinkite-ruby","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/coinkite-ruby","description":"Coinkite
84
+ Bitcoin API Gem for Ruby (SDK)","fork":true,"url":"[host]/repos/[org]/coinkite-ruby","forks_url":"[host]/repos/[org]/coinkite-ruby/forks","keys_url":"[host]/repos/[org]/coinkite-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/coinkite-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/coinkite-ruby/teams","hooks_url":"[host]/repos/[org]/coinkite-ruby/hooks","issue_events_url":"[host]/repos/[org]/coinkite-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/coinkite-ruby/events","assignees_url":"[host]/repos/[org]/coinkite-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/coinkite-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/coinkite-ruby/tags","blobs_url":"[host]/repos/[org]/coinkite-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/coinkite-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/coinkite-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/coinkite-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/coinkite-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/coinkite-ruby/languages","stargazers_url":"[host]/repos/[org]/coinkite-ruby/stargazers","contributors_url":"[host]/repos/[org]/coinkite-ruby/contributors","subscribers_url":"[host]/repos/[org]/coinkite-ruby/subscribers","subscription_url":"[host]/repos/[org]/coinkite-ruby/subscription","commits_url":"[host]/repos/[org]/coinkite-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/coinkite-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/coinkite-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/coinkite-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/coinkite-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/coinkite-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/coinkite-ruby/merges","archive_url":"[host]/repos/[org]/coinkite-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/coinkite-ruby/downloads","issues_url":"[host]/repos/[org]/coinkite-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/coinkite-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/coinkite-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/coinkite-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/coinkite-ruby/labels{/name}","releases_url":"[host]/repos/[org]/coinkite-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/coinkite-ruby/deployments","created_at":"2016-03-02T01:45:04Z","updated_at":"2016-03-02T01:45:05Z","pushed_at":"2016-03-02T01:46:16Z","git_url":"git://github.com/[org]/coinkite-ruby.git","ssh_url":"git@github.com:[org]/coinkite-ruby.git","clone_url":"https://github.com/[org]/coinkite-ruby.git","svn_url":"https://github.com/[org]/coinkite-ruby","homepage":"https://docs.coinkite.com/","size":164,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":53010052,"node_id":"MDEwOlJlcG9zaXRvcnk1MzAxMDA1Mg==","name":"treasury","full_name":"[org]/treasury","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/treasury","description":null,"fork":false,"url":"[host]/repos/[org]/treasury","forks_url":"[host]/repos/[org]/treasury/forks","keys_url":"[host]/repos/[org]/treasury/keys{/key_id}","collaborators_url":"[host]/repos/[org]/treasury/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/treasury/teams","hooks_url":"[host]/repos/[org]/treasury/hooks","issue_events_url":"[host]/repos/[org]/treasury/issues/events{/number}","events_url":"[host]/repos/[org]/treasury/events","assignees_url":"[host]/repos/[org]/treasury/assignees{/user}","branches_url":"[host]/repos/[org]/treasury/branches{/branch}","tags_url":"[host]/repos/[org]/treasury/tags","blobs_url":"[host]/repos/[org]/treasury/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/treasury/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/treasury/git/refs{/sha}","trees_url":"[host]/repos/[org]/treasury/git/trees{/sha}","statuses_url":"[host]/repos/[org]/treasury/statuses/{sha}","languages_url":"[host]/repos/[org]/treasury/languages","stargazers_url":"[host]/repos/[org]/treasury/stargazers","contributors_url":"[host]/repos/[org]/treasury/contributors","subscribers_url":"[host]/repos/[org]/treasury/subscribers","subscription_url":"[host]/repos/[org]/treasury/subscription","commits_url":"[host]/repos/[org]/treasury/commits{/sha}","git_commits_url":"[host]/repos/[org]/treasury/git/commits{/sha}","comments_url":"[host]/repos/[org]/treasury/comments{/number}","issue_comment_url":"[host]/repos/[org]/treasury/issues/comments{/number}","contents_url":"[host]/repos/[org]/treasury/contents/{+path}","compare_url":"[host]/repos/[org]/treasury/compare/{base}...{head}","merges_url":"[host]/repos/[org]/treasury/merges","archive_url":"[host]/repos/[org]/treasury/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/treasury/downloads","issues_url":"[host]/repos/[org]/treasury/issues{/number}","pulls_url":"[host]/repos/[org]/treasury/pulls{/number}","milestones_url":"[host]/repos/[org]/treasury/milestones{/number}","notifications_url":"[host]/repos/[org]/treasury/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/treasury/labels{/name}","releases_url":"[host]/repos/[org]/treasury/releases{/id}","deployments_url":"[host]/repos/[org]/treasury/deployments","created_at":"2016-03-03T01:27:20Z","updated_at":"2016-03-03T05:01:42Z","pushed_at":"2016-03-07T07:33:06Z","git_url":"git://github.com/[org]/treasury.git","ssh_url":"git@github.com:[org]/treasury.git","clone_url":"https://github.com/[org]/treasury.git","svn_url":"https://github.com/[org]/treasury","homepage":null,"size":38,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":53012405,"node_id":"MDEwOlJlcG9zaXRvcnk1MzAxMjQwNQ==","name":"plutus","full_name":"[org]/plutus","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/plutus","description":"A
85
+ Ruby on Rails Engine which provides a double entry accounting system for your
86
+ application","fork":true,"url":"[host]/repos/[org]/plutus","forks_url":"[host]/repos/[org]/plutus/forks","keys_url":"[host]/repos/[org]/plutus/keys{/key_id}","collaborators_url":"[host]/repos/[org]/plutus/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/plutus/teams","hooks_url":"[host]/repos/[org]/plutus/hooks","issue_events_url":"[host]/repos/[org]/plutus/issues/events{/number}","events_url":"[host]/repos/[org]/plutus/events","assignees_url":"[host]/repos/[org]/plutus/assignees{/user}","branches_url":"[host]/repos/[org]/plutus/branches{/branch}","tags_url":"[host]/repos/[org]/plutus/tags","blobs_url":"[host]/repos/[org]/plutus/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/plutus/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/plutus/git/refs{/sha}","trees_url":"[host]/repos/[org]/plutus/git/trees{/sha}","statuses_url":"[host]/repos/[org]/plutus/statuses/{sha}","languages_url":"[host]/repos/[org]/plutus/languages","stargazers_url":"[host]/repos/[org]/plutus/stargazers","contributors_url":"[host]/repos/[org]/plutus/contributors","subscribers_url":"[host]/repos/[org]/plutus/subscribers","subscription_url":"[host]/repos/[org]/plutus/subscription","commits_url":"[host]/repos/[org]/plutus/commits{/sha}","git_commits_url":"[host]/repos/[org]/plutus/git/commits{/sha}","comments_url":"[host]/repos/[org]/plutus/comments{/number}","issue_comment_url":"[host]/repos/[org]/plutus/issues/comments{/number}","contents_url":"[host]/repos/[org]/plutus/contents/{+path}","compare_url":"[host]/repos/[org]/plutus/compare/{base}...{head}","merges_url":"[host]/repos/[org]/plutus/merges","archive_url":"[host]/repos/[org]/plutus/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/plutus/downloads","issues_url":"[host]/repos/[org]/plutus/issues{/number}","pulls_url":"[host]/repos/[org]/plutus/pulls{/number}","milestones_url":"[host]/repos/[org]/plutus/milestones{/number}","notifications_url":"[host]/repos/[org]/plutus/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/plutus/labels{/name}","releases_url":"[host]/repos/[org]/plutus/releases{/id}","deployments_url":"[host]/repos/[org]/plutus/deployments","created_at":"2016-03-03T02:06:43Z","updated_at":"2018-07-13T06:52:00Z","pushed_at":"2018-07-13T16:20:00Z","git_url":"git://github.com/[org]/plutus.git","ssh_url":"git@github.com:[org]/plutus.git","clone_url":"https://github.com/[org]/plutus.git","svn_url":"https://github.com/[org]/plutus","homepage":"","size":798,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":2,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":2,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":54817526,"node_id":"MDEwOlJlcG9zaXRvcnk1NDgxNzUyNg==","name":"database_syncer","full_name":"[org]/database_syncer","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/database_syncer","description":"Sync
87
+ the local database with production data from Heroku","fork":true,"url":"[host]/repos/[org]/database_syncer","forks_url":"[host]/repos/[org]/database_syncer/forks","keys_url":"[host]/repos/[org]/database_syncer/keys{/key_id}","collaborators_url":"[host]/repos/[org]/database_syncer/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/database_syncer/teams","hooks_url":"[host]/repos/[org]/database_syncer/hooks","issue_events_url":"[host]/repos/[org]/database_syncer/issues/events{/number}","events_url":"[host]/repos/[org]/database_syncer/events","assignees_url":"[host]/repos/[org]/database_syncer/assignees{/user}","branches_url":"[host]/repos/[org]/database_syncer/branches{/branch}","tags_url":"[host]/repos/[org]/database_syncer/tags","blobs_url":"[host]/repos/[org]/database_syncer/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/database_syncer/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/database_syncer/git/refs{/sha}","trees_url":"[host]/repos/[org]/database_syncer/git/trees{/sha}","statuses_url":"[host]/repos/[org]/database_syncer/statuses/{sha}","languages_url":"[host]/repos/[org]/database_syncer/languages","stargazers_url":"[host]/repos/[org]/database_syncer/stargazers","contributors_url":"[host]/repos/[org]/database_syncer/contributors","subscribers_url":"[host]/repos/[org]/database_syncer/subscribers","subscription_url":"[host]/repos/[org]/database_syncer/subscription","commits_url":"[host]/repos/[org]/database_syncer/commits{/sha}","git_commits_url":"[host]/repos/[org]/database_syncer/git/commits{/sha}","comments_url":"[host]/repos/[org]/database_syncer/comments{/number}","issue_comment_url":"[host]/repos/[org]/database_syncer/issues/comments{/number}","contents_url":"[host]/repos/[org]/database_syncer/contents/{+path}","compare_url":"[host]/repos/[org]/database_syncer/compare/{base}...{head}","merges_url":"[host]/repos/[org]/database_syncer/merges","archive_url":"[host]/repos/[org]/database_syncer/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/database_syncer/downloads","issues_url":"[host]/repos/[org]/database_syncer/issues{/number}","pulls_url":"[host]/repos/[org]/database_syncer/pulls{/number}","milestones_url":"[host]/repos/[org]/database_syncer/milestones{/number}","notifications_url":"[host]/repos/[org]/database_syncer/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/database_syncer/labels{/name}","releases_url":"[host]/repos/[org]/database_syncer/releases{/id}","deployments_url":"[host]/repos/[org]/database_syncer/deployments","created_at":"2016-03-27T07:29:49Z","updated_at":"2016-03-27T07:29:50Z","pushed_at":"2016-03-27T07:46:28Z","git_url":"git://github.com/[org]/database_syncer.git","ssh_url":"git@github.com:[org]/database_syncer.git","clone_url":"https://github.com/[org]/database_syncer.git","svn_url":"https://github.com/[org]/database_syncer","homepage":"","size":10,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
88
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":56470021,"node_id":"MDEwOlJlcG9zaXRvcnk1NjQ3MDAyMQ==","name":"uphold-sdk-ruby","full_name":"[org]/uphold-sdk-ruby","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/uphold-sdk-ruby","description":"A
89
+ wrapper for the Bitreserve API","fork":true,"url":"[host]/repos/[org]/uphold-sdk-ruby","forks_url":"[host]/repos/[org]/uphold-sdk-ruby/forks","keys_url":"[host]/repos/[org]/uphold-sdk-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/uphold-sdk-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/uphold-sdk-ruby/teams","hooks_url":"[host]/repos/[org]/uphold-sdk-ruby/hooks","issue_events_url":"[host]/repos/[org]/uphold-sdk-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/uphold-sdk-ruby/events","assignees_url":"[host]/repos/[org]/uphold-sdk-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/uphold-sdk-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/uphold-sdk-ruby/tags","blobs_url":"[host]/repos/[org]/uphold-sdk-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/uphold-sdk-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/uphold-sdk-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/uphold-sdk-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/uphold-sdk-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/uphold-sdk-ruby/languages","stargazers_url":"[host]/repos/[org]/uphold-sdk-ruby/stargazers","contributors_url":"[host]/repos/[org]/uphold-sdk-ruby/contributors","subscribers_url":"[host]/repos/[org]/uphold-sdk-ruby/subscribers","subscription_url":"[host]/repos/[org]/uphold-sdk-ruby/subscription","commits_url":"[host]/repos/[org]/uphold-sdk-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/uphold-sdk-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/uphold-sdk-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/uphold-sdk-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/uphold-sdk-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/uphold-sdk-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/uphold-sdk-ruby/merges","archive_url":"[host]/repos/[org]/uphold-sdk-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/uphold-sdk-ruby/downloads","issues_url":"[host]/repos/[org]/uphold-sdk-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/uphold-sdk-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/uphold-sdk-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/uphold-sdk-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/uphold-sdk-ruby/labels{/name}","releases_url":"[host]/repos/[org]/uphold-sdk-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/uphold-sdk-ruby/deployments","created_at":"2016-04-18T02:12:12Z","updated_at":"2016-04-18T02:12:12Z","pushed_at":"2016-06-06T23:30:31Z","git_url":"git://github.com/[org]/uphold-sdk-ruby.git","ssh_url":"git@github.com:[org]/uphold-sdk-ruby.git","clone_url":"https://github.com/[org]/uphold-sdk-ruby.git","svn_url":"https://github.com/[org]/uphold-sdk-ruby","homepage":null,"size":121,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
90
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":59404687,"node_id":"MDEwOlJlcG9zaXRvcnk1OTQwNDY4Nw==","name":"notifix","full_name":"[org]/notifix","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/notifix","description":"Engine
91
+ for notifications (SMS, email) for Rails","fork":false,"url":"[host]/repos/[org]/notifix","forks_url":"[host]/repos/[org]/notifix/forks","keys_url":"[host]/repos/[org]/notifix/keys{/key_id}","collaborators_url":"[host]/repos/[org]/notifix/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/notifix/teams","hooks_url":"[host]/repos/[org]/notifix/hooks","issue_events_url":"[host]/repos/[org]/notifix/issues/events{/number}","events_url":"[host]/repos/[org]/notifix/events","assignees_url":"[host]/repos/[org]/notifix/assignees{/user}","branches_url":"[host]/repos/[org]/notifix/branches{/branch}","tags_url":"[host]/repos/[org]/notifix/tags","blobs_url":"[host]/repos/[org]/notifix/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/notifix/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/notifix/git/refs{/sha}","trees_url":"[host]/repos/[org]/notifix/git/trees{/sha}","statuses_url":"[host]/repos/[org]/notifix/statuses/{sha}","languages_url":"[host]/repos/[org]/notifix/languages","stargazers_url":"[host]/repos/[org]/notifix/stargazers","contributors_url":"[host]/repos/[org]/notifix/contributors","subscribers_url":"[host]/repos/[org]/notifix/subscribers","subscription_url":"[host]/repos/[org]/notifix/subscription","commits_url":"[host]/repos/[org]/notifix/commits{/sha}","git_commits_url":"[host]/repos/[org]/notifix/git/commits{/sha}","comments_url":"[host]/repos/[org]/notifix/comments{/number}","issue_comment_url":"[host]/repos/[org]/notifix/issues/comments{/number}","contents_url":"[host]/repos/[org]/notifix/contents/{+path}","compare_url":"[host]/repos/[org]/notifix/compare/{base}...{head}","merges_url":"[host]/repos/[org]/notifix/merges","archive_url":"[host]/repos/[org]/notifix/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/notifix/downloads","issues_url":"[host]/repos/[org]/notifix/issues{/number}","pulls_url":"[host]/repos/[org]/notifix/pulls{/number}","milestones_url":"[host]/repos/[org]/notifix/milestones{/number}","notifications_url":"[host]/repos/[org]/notifix/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/notifix/labels{/name}","releases_url":"[host]/repos/[org]/notifix/releases{/id}","deployments_url":"[host]/repos/[org]/notifix/deployments","created_at":"2016-05-22T09:34:53Z","updated_at":"2016-05-22T09:35:58Z","pushed_at":"2016-05-23T05:35:56Z","git_url":"git://github.com/[org]/notifix.git","ssh_url":"git@github.com:[org]/notifix.git","clone_url":"https://github.com/[org]/notifix.git","svn_url":"https://github.com/[org]/notifix","homepage":null,"size":18,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
92
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":59987737,"node_id":"MDEwOlJlcG9zaXRvcnk1OTk4NzczNw==","name":"ec_pay_client-ruby","full_name":"[org]/ec_pay_client-ruby","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/ec_pay_client-ruby","description":"Ruby
93
+ wrapper around ECPay''s API","fork":false,"url":"[host]/repos/[org]/ec_pay_client-ruby","forks_url":"[host]/repos/[org]/ec_pay_client-ruby/forks","keys_url":"[host]/repos/[org]/ec_pay_client-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/ec_pay_client-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/ec_pay_client-ruby/teams","hooks_url":"[host]/repos/[org]/ec_pay_client-ruby/hooks","issue_events_url":"[host]/repos/[org]/ec_pay_client-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/ec_pay_client-ruby/events","assignees_url":"[host]/repos/[org]/ec_pay_client-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/ec_pay_client-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/ec_pay_client-ruby/tags","blobs_url":"[host]/repos/[org]/ec_pay_client-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/ec_pay_client-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/ec_pay_client-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/ec_pay_client-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/ec_pay_client-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/ec_pay_client-ruby/languages","stargazers_url":"[host]/repos/[org]/ec_pay_client-ruby/stargazers","contributors_url":"[host]/repos/[org]/ec_pay_client-ruby/contributors","subscribers_url":"[host]/repos/[org]/ec_pay_client-ruby/subscribers","subscription_url":"[host]/repos/[org]/ec_pay_client-ruby/subscription","commits_url":"[host]/repos/[org]/ec_pay_client-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/ec_pay_client-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/ec_pay_client-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/ec_pay_client-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/ec_pay_client-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/ec_pay_client-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/ec_pay_client-ruby/merges","archive_url":"[host]/repos/[org]/ec_pay_client-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/ec_pay_client-ruby/downloads","issues_url":"[host]/repos/[org]/ec_pay_client-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/ec_pay_client-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/ec_pay_client-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/ec_pay_client-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/ec_pay_client-ruby/labels{/name}","releases_url":"[host]/repos/[org]/ec_pay_client-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/ec_pay_client-ruby/deployments","created_at":"2016-05-30T06:59:55Z","updated_at":"2017-02-13T08:32:22Z","pushed_at":"2017-02-16T06:03:13Z","git_url":"git://github.com/[org]/ec_pay_client-ruby.git","ssh_url":"git@github.com:[org]/ec_pay_client-ruby.git","clone_url":"https://github.com/[org]/ec_pay_client-ruby.git","svn_url":"https://github.com/[org]/ec_pay_client-ruby","homepage":null,"size":59,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":60496891,"node_id":"MDEwOlJlcG9zaXRvcnk2MDQ5Njg5MQ==","name":"blockcypher-ruby","full_name":"[org]/blockcypher-ruby","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/blockcypher-ruby","description":"Ruby
94
+ SDK for BlockCypher","fork":true,"url":"[host]/repos/[org]/blockcypher-ruby","forks_url":"[host]/repos/[org]/blockcypher-ruby/forks","keys_url":"[host]/repos/[org]/blockcypher-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/blockcypher-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/blockcypher-ruby/teams","hooks_url":"[host]/repos/[org]/blockcypher-ruby/hooks","issue_events_url":"[host]/repos/[org]/blockcypher-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/blockcypher-ruby/events","assignees_url":"[host]/repos/[org]/blockcypher-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/blockcypher-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/blockcypher-ruby/tags","blobs_url":"[host]/repos/[org]/blockcypher-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/blockcypher-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/blockcypher-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/blockcypher-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/blockcypher-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/blockcypher-ruby/languages","stargazers_url":"[host]/repos/[org]/blockcypher-ruby/stargazers","contributors_url":"[host]/repos/[org]/blockcypher-ruby/contributors","subscribers_url":"[host]/repos/[org]/blockcypher-ruby/subscribers","subscription_url":"[host]/repos/[org]/blockcypher-ruby/subscription","commits_url":"[host]/repos/[org]/blockcypher-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/blockcypher-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/blockcypher-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/blockcypher-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/blockcypher-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/blockcypher-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/blockcypher-ruby/merges","archive_url":"[host]/repos/[org]/blockcypher-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/blockcypher-ruby/downloads","issues_url":"[host]/repos/[org]/blockcypher-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/blockcypher-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/blockcypher-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/blockcypher-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/blockcypher-ruby/labels{/name}","releases_url":"[host]/repos/[org]/blockcypher-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/blockcypher-ruby/deployments","created_at":"2016-06-06T03:51:29Z","updated_at":"2017-02-06T10:35:00Z","pushed_at":"2017-08-29T14:32:57Z","git_url":"git://github.com/[org]/blockcypher-ruby.git","ssh_url":"git@github.com:[org]/blockcypher-ruby.git","clone_url":"https://github.com/[org]/blockcypher-ruby.git","svn_url":"https://github.com/[org]/blockcypher-ruby","homepage":null,"size":72,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"apache-2.0","name":"Apache
95
+ License 2.0","spdx_id":"Apache-2.0","url":"[host]/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":61675505,"node_id":"MDEwOlJlcG9zaXRvcnk2MTY3NTUwNQ==","name":"xe_client-ruby","full_name":"[org]/xe_client-ruby","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/xe_client-ruby","description":"Ruby
96
+ wrapper for XE''s REST API","fork":false,"url":"[host]/repos/[org]/xe_client-ruby","forks_url":"[host]/repos/[org]/xe_client-ruby/forks","keys_url":"[host]/repos/[org]/xe_client-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/xe_client-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/xe_client-ruby/teams","hooks_url":"[host]/repos/[org]/xe_client-ruby/hooks","issue_events_url":"[host]/repos/[org]/xe_client-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/xe_client-ruby/events","assignees_url":"[host]/repos/[org]/xe_client-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/xe_client-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/xe_client-ruby/tags","blobs_url":"[host]/repos/[org]/xe_client-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/xe_client-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/xe_client-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/xe_client-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/xe_client-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/xe_client-ruby/languages","stargazers_url":"[host]/repos/[org]/xe_client-ruby/stargazers","contributors_url":"[host]/repos/[org]/xe_client-ruby/contributors","subscribers_url":"[host]/repos/[org]/xe_client-ruby/subscribers","subscription_url":"[host]/repos/[org]/xe_client-ruby/subscription","commits_url":"[host]/repos/[org]/xe_client-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/xe_client-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/xe_client-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/xe_client-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/xe_client-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/xe_client-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/xe_client-ruby/merges","archive_url":"[host]/repos/[org]/xe_client-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/xe_client-ruby/downloads","issues_url":"[host]/repos/[org]/xe_client-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/xe_client-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/xe_client-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/xe_client-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/xe_client-ruby/labels{/name}","releases_url":"[host]/repos/[org]/xe_client-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/xe_client-ruby/deployments","created_at":"2016-06-22T00:04:21Z","updated_at":"2018-02-06T13:25:56Z","pushed_at":"2016-08-11T01:33:34Z","git_url":"git://github.com/[org]/xe_client-ruby.git","ssh_url":"git@github.com:[org]/xe_client-ruby.git","clone_url":"https://github.com/[org]/xe_client-ruby.git","svn_url":"https://github.com/[org]/xe_client-ruby","homepage":null,"size":22,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
97
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":1,"open_issues":0,"watchers":1,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":61872137,"node_id":"MDEwOlJlcG9zaXRvcnk2MTg3MjEzNw==","name":"wepayup","full_name":"[org]/wepayup","private":true,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/wepayup","description":"Bills
98
+ Payment app for the iamsharing.community portal","fork":false,"url":"[host]/repos/[org]/wepayup","forks_url":"[host]/repos/[org]/wepayup/forks","keys_url":"[host]/repos/[org]/wepayup/keys{/key_id}","collaborators_url":"[host]/repos/[org]/wepayup/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/wepayup/teams","hooks_url":"[host]/repos/[org]/wepayup/hooks","issue_events_url":"[host]/repos/[org]/wepayup/issues/events{/number}","events_url":"[host]/repos/[org]/wepayup/events","assignees_url":"[host]/repos/[org]/wepayup/assignees{/user}","branches_url":"[host]/repos/[org]/wepayup/branches{/branch}","tags_url":"[host]/repos/[org]/wepayup/tags","blobs_url":"[host]/repos/[org]/wepayup/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/wepayup/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/wepayup/git/refs{/sha}","trees_url":"[host]/repos/[org]/wepayup/git/trees{/sha}","statuses_url":"[host]/repos/[org]/wepayup/statuses/{sha}","languages_url":"[host]/repos/[org]/wepayup/languages","stargazers_url":"[host]/repos/[org]/wepayup/stargazers","contributors_url":"[host]/repos/[org]/wepayup/contributors","subscribers_url":"[host]/repos/[org]/wepayup/subscribers","subscription_url":"[host]/repos/[org]/wepayup/subscription","commits_url":"[host]/repos/[org]/wepayup/commits{/sha}","git_commits_url":"[host]/repos/[org]/wepayup/git/commits{/sha}","comments_url":"[host]/repos/[org]/wepayup/comments{/number}","issue_comment_url":"[host]/repos/[org]/wepayup/issues/comments{/number}","contents_url":"[host]/repos/[org]/wepayup/contents/{+path}","compare_url":"[host]/repos/[org]/wepayup/compare/{base}...{head}","merges_url":"[host]/repos/[org]/wepayup/merges","archive_url":"[host]/repos/[org]/wepayup/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/wepayup/downloads","issues_url":"[host]/repos/[org]/wepayup/issues{/number}","pulls_url":"[host]/repos/[org]/wepayup/pulls{/number}","milestones_url":"[host]/repos/[org]/wepayup/milestones{/number}","notifications_url":"[host]/repos/[org]/wepayup/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/wepayup/labels{/name}","releases_url":"[host]/repos/[org]/wepayup/releases{/id}","deployments_url":"[host]/repos/[org]/wepayup/deployments","created_at":"2016-06-24T09:07:54Z","updated_at":"2016-06-24T09:08:39Z","pushed_at":"2016-07-05T07:40:17Z","git_url":"git://github.com/[org]/wepayup.git","ssh_url":"git@github.com:[org]/wepayup.git","clone_url":"https://github.com/[org]/wepayup.git","svn_url":"https://github.com/[org]/wepayup","homepage":null,"size":6817,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":true,"push":true,"pull":true}},{"id":62266289,"node_id":"MDEwOlJlcG9zaXRvcnk2MjI2NjI4OQ==","name":"simple-password-gen","full_name":"[org]/simple-password-gen","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/simple-password-gen","description":"Simple
99
+ Ruby-powered password generator","fork":true,"url":"[host]/repos/[org]/simple-password-gen","forks_url":"[host]/repos/[org]/simple-password-gen/forks","keys_url":"[host]/repos/[org]/simple-password-gen/keys{/key_id}","collaborators_url":"[host]/repos/[org]/simple-password-gen/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/simple-password-gen/teams","hooks_url":"[host]/repos/[org]/simple-password-gen/hooks","issue_events_url":"[host]/repos/[org]/simple-password-gen/issues/events{/number}","events_url":"[host]/repos/[org]/simple-password-gen/events","assignees_url":"[host]/repos/[org]/simple-password-gen/assignees{/user}","branches_url":"[host]/repos/[org]/simple-password-gen/branches{/branch}","tags_url":"[host]/repos/[org]/simple-password-gen/tags","blobs_url":"[host]/repos/[org]/simple-password-gen/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/simple-password-gen/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/simple-password-gen/git/refs{/sha}","trees_url":"[host]/repos/[org]/simple-password-gen/git/trees{/sha}","statuses_url":"[host]/repos/[org]/simple-password-gen/statuses/{sha}","languages_url":"[host]/repos/[org]/simple-password-gen/languages","stargazers_url":"[host]/repos/[org]/simple-password-gen/stargazers","contributors_url":"[host]/repos/[org]/simple-password-gen/contributors","subscribers_url":"[host]/repos/[org]/simple-password-gen/subscribers","subscription_url":"[host]/repos/[org]/simple-password-gen/subscription","commits_url":"[host]/repos/[org]/simple-password-gen/commits{/sha}","git_commits_url":"[host]/repos/[org]/simple-password-gen/git/commits{/sha}","comments_url":"[host]/repos/[org]/simple-password-gen/comments{/number}","issue_comment_url":"[host]/repos/[org]/simple-password-gen/issues/comments{/number}","contents_url":"[host]/repos/[org]/simple-password-gen/contents/{+path}","compare_url":"[host]/repos/[org]/simple-password-gen/compare/{base}...{head}","merges_url":"[host]/repos/[org]/simple-password-gen/merges","archive_url":"[host]/repos/[org]/simple-password-gen/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/simple-password-gen/downloads","issues_url":"[host]/repos/[org]/simple-password-gen/issues{/number}","pulls_url":"[host]/repos/[org]/simple-password-gen/pulls{/number}","milestones_url":"[host]/repos/[org]/simple-password-gen/milestones{/number}","notifications_url":"[host]/repos/[org]/simple-password-gen/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/simple-password-gen/labels{/name}","releases_url":"[host]/repos/[org]/simple-password-gen/releases{/id}","deployments_url":"[host]/repos/[org]/simple-password-gen/deployments","created_at":"2016-06-30T00:18:04Z","updated_at":"2016-06-30T00:18:04Z","pushed_at":"2016-06-30T03:34:09Z","git_url":"git://github.com/[org]/simple-password-gen.git","ssh_url":"git@github.com:[org]/simple-password-gen.git","clone_url":"https://github.com/[org]/simple-password-gen.git","svn_url":"https://github.com/[org]/simple-password-gen","homepage":"","size":14,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":63579982,"node_id":"MDEwOlJlcG9zaXRvcnk2MzU3OTk4Mg==","name":"reform","full_name":"[org]/reform","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/reform","description":"Form
100
+ objects decoupled from models.","fork":true,"url":"[host]/repos/[org]/reform","forks_url":"[host]/repos/[org]/reform/forks","keys_url":"[host]/repos/[org]/reform/keys{/key_id}","collaborators_url":"[host]/repos/[org]/reform/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/reform/teams","hooks_url":"[host]/repos/[org]/reform/hooks","issue_events_url":"[host]/repos/[org]/reform/issues/events{/number}","events_url":"[host]/repos/[org]/reform/events","assignees_url":"[host]/repos/[org]/reform/assignees{/user}","branches_url":"[host]/repos/[org]/reform/branches{/branch}","tags_url":"[host]/repos/[org]/reform/tags","blobs_url":"[host]/repos/[org]/reform/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/reform/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/reform/git/refs{/sha}","trees_url":"[host]/repos/[org]/reform/git/trees{/sha}","statuses_url":"[host]/repos/[org]/reform/statuses/{sha}","languages_url":"[host]/repos/[org]/reform/languages","stargazers_url":"[host]/repos/[org]/reform/stargazers","contributors_url":"[host]/repos/[org]/reform/contributors","subscribers_url":"[host]/repos/[org]/reform/subscribers","subscription_url":"[host]/repos/[org]/reform/subscription","commits_url":"[host]/repos/[org]/reform/commits{/sha}","git_commits_url":"[host]/repos/[org]/reform/git/commits{/sha}","comments_url":"[host]/repos/[org]/reform/comments{/number}","issue_comment_url":"[host]/repos/[org]/reform/issues/comments{/number}","contents_url":"[host]/repos/[org]/reform/contents/{+path}","compare_url":"[host]/repos/[org]/reform/compare/{base}...{head}","merges_url":"[host]/repos/[org]/reform/merges","archive_url":"[host]/repos/[org]/reform/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/reform/downloads","issues_url":"[host]/repos/[org]/reform/issues{/number}","pulls_url":"[host]/repos/[org]/reform/pulls{/number}","milestones_url":"[host]/repos/[org]/reform/milestones{/number}","notifications_url":"[host]/repos/[org]/reform/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/reform/labels{/name}","releases_url":"[host]/repos/[org]/reform/releases{/id}","deployments_url":"[host]/repos/[org]/reform/deployments","created_at":"2016-07-18T07:26:18Z","updated_at":"2016-07-18T07:26:18Z","pushed_at":"2016-07-10T23:10:31Z","git_url":"git://github.com/[org]/reform.git","ssh_url":"git@github.com:[org]/reform.git","clone_url":"https://github.com/[org]/reform.git","svn_url":"https://github.com/[org]/reform","homepage":"http://www.trailblazer.to/gems/reform","size":1511,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
101
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":63580158,"node_id":"MDEwOlJlcG9zaXRvcnk2MzU4MDE1OA==","name":"reform-rails","full_name":"[org]/reform-rails","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/reform-rails","description":"Automatically
102
+ load and include all common Rails form features.","fork":true,"url":"[host]/repos/[org]/reform-rails","forks_url":"[host]/repos/[org]/reform-rails/forks","keys_url":"[host]/repos/[org]/reform-rails/keys{/key_id}","collaborators_url":"[host]/repos/[org]/reform-rails/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/reform-rails/teams","hooks_url":"[host]/repos/[org]/reform-rails/hooks","issue_events_url":"[host]/repos/[org]/reform-rails/issues/events{/number}","events_url":"[host]/repos/[org]/reform-rails/events","assignees_url":"[host]/repos/[org]/reform-rails/assignees{/user}","branches_url":"[host]/repos/[org]/reform-rails/branches{/branch}","tags_url":"[host]/repos/[org]/reform-rails/tags","blobs_url":"[host]/repos/[org]/reform-rails/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/reform-rails/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/reform-rails/git/refs{/sha}","trees_url":"[host]/repos/[org]/reform-rails/git/trees{/sha}","statuses_url":"[host]/repos/[org]/reform-rails/statuses/{sha}","languages_url":"[host]/repos/[org]/reform-rails/languages","stargazers_url":"[host]/repos/[org]/reform-rails/stargazers","contributors_url":"[host]/repos/[org]/reform-rails/contributors","subscribers_url":"[host]/repos/[org]/reform-rails/subscribers","subscription_url":"[host]/repos/[org]/reform-rails/subscription","commits_url":"[host]/repos/[org]/reform-rails/commits{/sha}","git_commits_url":"[host]/repos/[org]/reform-rails/git/commits{/sha}","comments_url":"[host]/repos/[org]/reform-rails/comments{/number}","issue_comment_url":"[host]/repos/[org]/reform-rails/issues/comments{/number}","contents_url":"[host]/repos/[org]/reform-rails/contents/{+path}","compare_url":"[host]/repos/[org]/reform-rails/compare/{base}...{head}","merges_url":"[host]/repos/[org]/reform-rails/merges","archive_url":"[host]/repos/[org]/reform-rails/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/reform-rails/downloads","issues_url":"[host]/repos/[org]/reform-rails/issues{/number}","pulls_url":"[host]/repos/[org]/reform-rails/pulls{/number}","milestones_url":"[host]/repos/[org]/reform-rails/milestones{/number}","notifications_url":"[host]/repos/[org]/reform-rails/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/reform-rails/labels{/name}","releases_url":"[host]/repos/[org]/reform-rails/releases{/id}","deployments_url":"[host]/repos/[org]/reform-rails/deployments","created_at":"2016-07-18T07:29:03Z","updated_at":"2016-07-18T07:29:04Z","pushed_at":"2016-07-15T13:39:25Z","git_url":"git://github.com/[org]/reform-rails.git","ssh_url":"git@github.com:[org]/reform-rails.git","clone_url":"https://github.com/[org]/reform-rails.git","svn_url":"https://github.com/[org]/reform-rails","homepage":null,"size":70,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
103
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":63746455,"node_id":"MDEwOlJlcG9zaXRvcnk2Mzc0NjQ1NQ==","name":"bloom_remit-rails","full_name":"[org]/bloom_remit-rails","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/bloom_remit-rails","description":"Rails
104
+ engine for Bloom Remit users","fork":false,"url":"[host]/repos/[org]/bloom_remit-rails","forks_url":"[host]/repos/[org]/bloom_remit-rails/forks","keys_url":"[host]/repos/[org]/bloom_remit-rails/keys{/key_id}","collaborators_url":"[host]/repos/[org]/bloom_remit-rails/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/bloom_remit-rails/teams","hooks_url":"[host]/repos/[org]/bloom_remit-rails/hooks","issue_events_url":"[host]/repos/[org]/bloom_remit-rails/issues/events{/number}","events_url":"[host]/repos/[org]/bloom_remit-rails/events","assignees_url":"[host]/repos/[org]/bloom_remit-rails/assignees{/user}","branches_url":"[host]/repos/[org]/bloom_remit-rails/branches{/branch}","tags_url":"[host]/repos/[org]/bloom_remit-rails/tags","blobs_url":"[host]/repos/[org]/bloom_remit-rails/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/bloom_remit-rails/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/bloom_remit-rails/git/refs{/sha}","trees_url":"[host]/repos/[org]/bloom_remit-rails/git/trees{/sha}","statuses_url":"[host]/repos/[org]/bloom_remit-rails/statuses/{sha}","languages_url":"[host]/repos/[org]/bloom_remit-rails/languages","stargazers_url":"[host]/repos/[org]/bloom_remit-rails/stargazers","contributors_url":"[host]/repos/[org]/bloom_remit-rails/contributors","subscribers_url":"[host]/repos/[org]/bloom_remit-rails/subscribers","subscription_url":"[host]/repos/[org]/bloom_remit-rails/subscription","commits_url":"[host]/repos/[org]/bloom_remit-rails/commits{/sha}","git_commits_url":"[host]/repos/[org]/bloom_remit-rails/git/commits{/sha}","comments_url":"[host]/repos/[org]/bloom_remit-rails/comments{/number}","issue_comment_url":"[host]/repos/[org]/bloom_remit-rails/issues/comments{/number}","contents_url":"[host]/repos/[org]/bloom_remit-rails/contents/{+path}","compare_url":"[host]/repos/[org]/bloom_remit-rails/compare/{base}...{head}","merges_url":"[host]/repos/[org]/bloom_remit-rails/merges","archive_url":"[host]/repos/[org]/bloom_remit-rails/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/bloom_remit-rails/downloads","issues_url":"[host]/repos/[org]/bloom_remit-rails/issues{/number}","pulls_url":"[host]/repos/[org]/bloom_remit-rails/pulls{/number}","milestones_url":"[host]/repos/[org]/bloom_remit-rails/milestones{/number}","notifications_url":"[host]/repos/[org]/bloom_remit-rails/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/bloom_remit-rails/labels{/name}","releases_url":"[host]/repos/[org]/bloom_remit-rails/releases{/id}","deployments_url":"[host]/repos/[org]/bloom_remit-rails/deployments","created_at":"2016-07-20T03:15:18Z","updated_at":"2016-07-21T02:46:04Z","pushed_at":"2016-10-05T07:44:04Z","git_url":"git://github.com/[org]/bloom_remit-rails.git","ssh_url":"git@github.com:[org]/bloom_remit-rails.git","clone_url":"https://github.com/[org]/bloom_remit-rails.git","svn_url":"https://github.com/[org]/bloom_remit-rails","homepage":null,"size":121,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":63760790,"node_id":"MDEwOlJlcG9zaXRvcnk2Mzc2MDc5MA==","name":"bloom_remit_client-ruby","full_name":"[org]/bloom_remit_client-ruby","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/bloom_remit_client-ruby","description":"Ruby
105
+ wrapper for Bloom Remit''s API","fork":false,"url":"[host]/repos/[org]/bloom_remit_client-ruby","forks_url":"[host]/repos/[org]/bloom_remit_client-ruby/forks","keys_url":"[host]/repos/[org]/bloom_remit_client-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/bloom_remit_client-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/bloom_remit_client-ruby/teams","hooks_url":"[host]/repos/[org]/bloom_remit_client-ruby/hooks","issue_events_url":"[host]/repos/[org]/bloom_remit_client-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/bloom_remit_client-ruby/events","assignees_url":"[host]/repos/[org]/bloom_remit_client-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/bloom_remit_client-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/bloom_remit_client-ruby/tags","blobs_url":"[host]/repos/[org]/bloom_remit_client-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/bloom_remit_client-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/bloom_remit_client-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/bloom_remit_client-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/bloom_remit_client-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/bloom_remit_client-ruby/languages","stargazers_url":"[host]/repos/[org]/bloom_remit_client-ruby/stargazers","contributors_url":"[host]/repos/[org]/bloom_remit_client-ruby/contributors","subscribers_url":"[host]/repos/[org]/bloom_remit_client-ruby/subscribers","subscription_url":"[host]/repos/[org]/bloom_remit_client-ruby/subscription","commits_url":"[host]/repos/[org]/bloom_remit_client-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/bloom_remit_client-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/bloom_remit_client-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/bloom_remit_client-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/bloom_remit_client-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/bloom_remit_client-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/bloom_remit_client-ruby/merges","archive_url":"[host]/repos/[org]/bloom_remit_client-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/bloom_remit_client-ruby/downloads","issues_url":"[host]/repos/[org]/bloom_remit_client-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/bloom_remit_client-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/bloom_remit_client-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/bloom_remit_client-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/bloom_remit_client-ruby/labels{/name}","releases_url":"[host]/repos/[org]/bloom_remit_client-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/bloom_remit_client-ruby/deployments","created_at":"2016-07-20T07:36:41Z","updated_at":"2016-07-20T07:37:00Z","pushed_at":"2017-04-26T09:28:30Z","git_url":"git://github.com/[org]/bloom_remit_client-ruby.git","ssh_url":"git@github.com:[org]/bloom_remit_client-ruby.git","clone_url":"https://github.com/[org]/bloom_remit_client-ruby.git","svn_url":"https://github.com/[org]/bloom_remit_client-ruby","homepage":null,"size":196,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":1,"mirror_url":null,"archived":false,"open_issues_count":2,"license":{"key":"mit","name":"MIT
106
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":1,"open_issues":2,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":64275917,"node_id":"MDEwOlJlcG9zaXRvcnk2NDI3NTkxNw==","name":"disposable","full_name":"[org]/disposable","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/disposable","description":"Decorators
107
+ on top of your ORM layer.","fork":true,"url":"[host]/repos/[org]/disposable","forks_url":"[host]/repos/[org]/disposable/forks","keys_url":"[host]/repos/[org]/disposable/keys{/key_id}","collaborators_url":"[host]/repos/[org]/disposable/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/disposable/teams","hooks_url":"[host]/repos/[org]/disposable/hooks","issue_events_url":"[host]/repos/[org]/disposable/issues/events{/number}","events_url":"[host]/repos/[org]/disposable/events","assignees_url":"[host]/repos/[org]/disposable/assignees{/user}","branches_url":"[host]/repos/[org]/disposable/branches{/branch}","tags_url":"[host]/repos/[org]/disposable/tags","blobs_url":"[host]/repos/[org]/disposable/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/disposable/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/disposable/git/refs{/sha}","trees_url":"[host]/repos/[org]/disposable/git/trees{/sha}","statuses_url":"[host]/repos/[org]/disposable/statuses/{sha}","languages_url":"[host]/repos/[org]/disposable/languages","stargazers_url":"[host]/repos/[org]/disposable/stargazers","contributors_url":"[host]/repos/[org]/disposable/contributors","subscribers_url":"[host]/repos/[org]/disposable/subscribers","subscription_url":"[host]/repos/[org]/disposable/subscription","commits_url":"[host]/repos/[org]/disposable/commits{/sha}","git_commits_url":"[host]/repos/[org]/disposable/git/commits{/sha}","comments_url":"[host]/repos/[org]/disposable/comments{/number}","issue_comment_url":"[host]/repos/[org]/disposable/issues/comments{/number}","contents_url":"[host]/repos/[org]/disposable/contents/{+path}","compare_url":"[host]/repos/[org]/disposable/compare/{base}...{head}","merges_url":"[host]/repos/[org]/disposable/merges","archive_url":"[host]/repos/[org]/disposable/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/disposable/downloads","issues_url":"[host]/repos/[org]/disposable/issues{/number}","pulls_url":"[host]/repos/[org]/disposable/pulls{/number}","milestones_url":"[host]/repos/[org]/disposable/milestones{/number}","notifications_url":"[host]/repos/[org]/disposable/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/disposable/labels{/name}","releases_url":"[host]/repos/[org]/disposable/releases{/id}","deployments_url":"[host]/repos/[org]/disposable/deployments","created_at":"2016-07-27T04:00:30Z","updated_at":"2016-07-27T04:00:31Z","pushed_at":"2016-07-27T04:03:32Z","git_url":"git://github.com/[org]/disposable.git","ssh_url":"git@github.com:[org]/disposable.git","clone_url":"https://github.com/[org]/disposable.git","svn_url":"https://github.com/[org]/disposable","homepage":"","size":559,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
108
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":65058837,"node_id":"MDEwOlJlcG9zaXRvcnk2NTA1ODgzNw==","name":"bitstamp","full_name":"[org]/bitstamp","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/bitstamp","description":"Bitstamp
109
+ Ruby API","fork":true,"url":"[host]/repos/[org]/bitstamp","forks_url":"[host]/repos/[org]/bitstamp/forks","keys_url":"[host]/repos/[org]/bitstamp/keys{/key_id}","collaborators_url":"[host]/repos/[org]/bitstamp/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/bitstamp/teams","hooks_url":"[host]/repos/[org]/bitstamp/hooks","issue_events_url":"[host]/repos/[org]/bitstamp/issues/events{/number}","events_url":"[host]/repos/[org]/bitstamp/events","assignees_url":"[host]/repos/[org]/bitstamp/assignees{/user}","branches_url":"[host]/repos/[org]/bitstamp/branches{/branch}","tags_url":"[host]/repos/[org]/bitstamp/tags","blobs_url":"[host]/repos/[org]/bitstamp/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/bitstamp/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/bitstamp/git/refs{/sha}","trees_url":"[host]/repos/[org]/bitstamp/git/trees{/sha}","statuses_url":"[host]/repos/[org]/bitstamp/statuses/{sha}","languages_url":"[host]/repos/[org]/bitstamp/languages","stargazers_url":"[host]/repos/[org]/bitstamp/stargazers","contributors_url":"[host]/repos/[org]/bitstamp/contributors","subscribers_url":"[host]/repos/[org]/bitstamp/subscribers","subscription_url":"[host]/repos/[org]/bitstamp/subscription","commits_url":"[host]/repos/[org]/bitstamp/commits{/sha}","git_commits_url":"[host]/repos/[org]/bitstamp/git/commits{/sha}","comments_url":"[host]/repos/[org]/bitstamp/comments{/number}","issue_comment_url":"[host]/repos/[org]/bitstamp/issues/comments{/number}","contents_url":"[host]/repos/[org]/bitstamp/contents/{+path}","compare_url":"[host]/repos/[org]/bitstamp/compare/{base}...{head}","merges_url":"[host]/repos/[org]/bitstamp/merges","archive_url":"[host]/repos/[org]/bitstamp/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/bitstamp/downloads","issues_url":"[host]/repos/[org]/bitstamp/issues{/number}","pulls_url":"[host]/repos/[org]/bitstamp/pulls{/number}","milestones_url":"[host]/repos/[org]/bitstamp/milestones{/number}","notifications_url":"[host]/repos/[org]/bitstamp/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/bitstamp/labels{/name}","releases_url":"[host]/repos/[org]/bitstamp/releases{/id}","deployments_url":"[host]/repos/[org]/bitstamp/deployments","created_at":"2016-08-06T01:21:57Z","updated_at":"2016-08-06T01:21:59Z","pushed_at":"2017-12-01T08:22:59Z","git_url":"git://github.com/[org]/bitstamp.git","ssh_url":"git@github.com:[org]/bitstamp.git","clone_url":"https://github.com/[org]/bitstamp.git","svn_url":"https://github.com/[org]/bitstamp","homepage":null,"size":139,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT
110
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}},{"id":65512978,"node_id":"MDEwOlJlcG9zaXRvcnk2NTUxMjk3OA==","name":"ezapi_client-ruby","full_name":"[org]/ezapi_client-ruby","private":false,"owner":{"login":"[org]","id":2975391,"node_id":"MDEyOk9yZ2FuaXphdGlvbjI5NzUzOTE=","avatar_url":"https://avatars0.githubusercontent.com/u/2975391?v=4","gravatar_id":"","url":"[host]/users/[org]","html_url":"https://github.com/[org]","followers_url":"[host]/users/[org]/followers","following_url":"[host]/users/[org]/following{/other_user}","gists_url":"[host]/users/[org]/gists{/gist_id}","starred_url":"[host]/users/[org]/starred{/owner}{/repo}","subscriptions_url":"[host]/users/[org]/subscriptions","organizations_url":"[host]/users/[org]/orgs","repos_url":"[host]/users/[org]/repos","events_url":"[host]/users/[org]/events{/privacy}","received_events_url":"[host]/users/[org]/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/[org]/ezapi_client-ruby","description":"Ruby
111
+ wrapper for EZAPI","fork":false,"url":"[host]/repos/[org]/ezapi_client-ruby","forks_url":"[host]/repos/[org]/ezapi_client-ruby/forks","keys_url":"[host]/repos/[org]/ezapi_client-ruby/keys{/key_id}","collaborators_url":"[host]/repos/[org]/ezapi_client-ruby/collaborators{/collaborator}","teams_url":"[host]/repos/[org]/ezapi_client-ruby/teams","hooks_url":"[host]/repos/[org]/ezapi_client-ruby/hooks","issue_events_url":"[host]/repos/[org]/ezapi_client-ruby/issues/events{/number}","events_url":"[host]/repos/[org]/ezapi_client-ruby/events","assignees_url":"[host]/repos/[org]/ezapi_client-ruby/assignees{/user}","branches_url":"[host]/repos/[org]/ezapi_client-ruby/branches{/branch}","tags_url":"[host]/repos/[org]/ezapi_client-ruby/tags","blobs_url":"[host]/repos/[org]/ezapi_client-ruby/git/blobs{/sha}","git_tags_url":"[host]/repos/[org]/ezapi_client-ruby/git/tags{/sha}","git_refs_url":"[host]/repos/[org]/ezapi_client-ruby/git/refs{/sha}","trees_url":"[host]/repos/[org]/ezapi_client-ruby/git/trees{/sha}","statuses_url":"[host]/repos/[org]/ezapi_client-ruby/statuses/{sha}","languages_url":"[host]/repos/[org]/ezapi_client-ruby/languages","stargazers_url":"[host]/repos/[org]/ezapi_client-ruby/stargazers","contributors_url":"[host]/repos/[org]/ezapi_client-ruby/contributors","subscribers_url":"[host]/repos/[org]/ezapi_client-ruby/subscribers","subscription_url":"[host]/repos/[org]/ezapi_client-ruby/subscription","commits_url":"[host]/repos/[org]/ezapi_client-ruby/commits{/sha}","git_commits_url":"[host]/repos/[org]/ezapi_client-ruby/git/commits{/sha}","comments_url":"[host]/repos/[org]/ezapi_client-ruby/comments{/number}","issue_comment_url":"[host]/repos/[org]/ezapi_client-ruby/issues/comments{/number}","contents_url":"[host]/repos/[org]/ezapi_client-ruby/contents/{+path}","compare_url":"[host]/repos/[org]/ezapi_client-ruby/compare/{base}...{head}","merges_url":"[host]/repos/[org]/ezapi_client-ruby/merges","archive_url":"[host]/repos/[org]/ezapi_client-ruby/{archive_format}{/ref}","downloads_url":"[host]/repos/[org]/ezapi_client-ruby/downloads","issues_url":"[host]/repos/[org]/ezapi_client-ruby/issues{/number}","pulls_url":"[host]/repos/[org]/ezapi_client-ruby/pulls{/number}","milestones_url":"[host]/repos/[org]/ezapi_client-ruby/milestones{/number}","notifications_url":"[host]/repos/[org]/ezapi_client-ruby/notifications{?since,all,participating}","labels_url":"[host]/repos/[org]/ezapi_client-ruby/labels{/name}","releases_url":"[host]/repos/[org]/ezapi_client-ruby/releases{/id}","deployments_url":"[host]/repos/[org]/ezapi_client-ruby/deployments","created_at":"2016-08-12T01:23:28Z","updated_at":"2019-02-01T15:43:50Z","pushed_at":"2019-02-01T15:43:54Z","git_url":"git://github.com/[org]/ezapi_client-ruby.git","ssh_url":"git@github.com:[org]/ezapi_client-ruby.git","clone_url":"https://github.com/[org]/ezapi_client-ruby.git","svn_url":"https://github.com/[org]/ezapi_client-ruby","homepage":null,"size":92,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"open_issues_count":1,"license":{"key":"mit","name":"MIT
112
+ License","spdx_id":"MIT","url":"[host]/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":1,"watchers":0,"default_branch":"master","permissions":{"admin":false,"push":false,"pull":true}}]'
113
+ http_version:
114
+ recorded_at: Sun, 03 Feb 2019 09:38:27 GMT
115
+ recorded_with: VCR 3.0.3