From 6b3f6e3528ef8fcab6693a5f4dd77c46f669ba09 Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Wed, 14 Dec 2022 10:09:06 +0530 Subject: [PATCH 1/9] a. Added more data for getting rubygems data from purl, users can now get package data for different versions too. b. Fixed 1 typo. Signed-off-by: Jay --- src/fetchcode/package.py | 39 +++++++++++++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/src/fetchcode/package.py b/src/fetchcode/package.py index e8603301..56ab1421 100644 --- a/src/fetchcode/package.py +++ b/src/fetchcode/package.py @@ -14,12 +14,10 @@ # CONDITIONS OF ANY KIND, either express or implied. See the License for the # specific language governing permissions and limitations under the License. -from attr import attrs, attrib - -from packageurl.contrib.route import NoRouteAvailable +import requests from packageurl import PackageURL +from packageurl.contrib.route import NoRouteAvailable from packageurl.contrib.route import Router -import requests from fetchcode.packagedcode_models import Package @@ -169,7 +167,7 @@ def get_npm_data_from_purl(purl): @router.route("pkg:pypi/.*") def get_pypi_data_from_purl(purl): """ - Generate `Package` object from the `purl` string of npm type + Generate `Package` object from the `purl` string of pypi type """ purl = PackageURL.from_string(purl) name = purl.name @@ -312,12 +310,19 @@ def get_rubygems_data_from_purl(purl): purl = PackageURL.from_string(purl) name = purl.name api_url = f"https://rubygems.org/api/v1/gems/{name}.json" + releases_url = f"https://rubygems.org/api/v1/versions/{name}.json" response = get_response(api_url) + releases = get_response(releases_url) declared_license = response.get("licenses") or None + version = response.get("version") + version_purl = PackageURL( + type=purl.type, name=name, version=version + ) homepage_url = response.get("homepage_uri") code_view_url = response.get("source_code_uri") bug_tracking_url = response.get("bug_tracker_uri") download_url = response.get("gem_uri") + release_date = response.get("version_created_at") yield Package( homepage_url=homepage_url, api_url=api_url, @@ -325,5 +330,27 @@ def get_rubygems_data_from_purl(purl): code_view_url=code_view_url, declared_license=declared_license, download_url=download_url, - **purl.to_dict(), + release_date=release_date, + **version_purl.to_dict() ) + for release in releases: + version = release.get("number") + release_date = release.get("created_at") + platform = release.get("platform") or "" + if platform: + download_url = f"https://rubygems.org/gems/{name}-{version}-{platform}.gem" + else: + download_url = f"https://rubygems.org/gems/{name}-{version}.gem" + version_purl = PackageURL( + type=purl.type, name=name, version=version + ) + yield Package( + homepage_url=homepage_url, + api_url=api_url, + bug_tracking_url=bug_tracking_url, + code_view_url=code_view_url, + declared_license=declared_license, + download_url=download_url, + release_date=release_date, + **version_purl.to_dict() + ) From d123de9afe74735bb376afe0853db728ee8eee59 Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Wed, 14 Dec 2022 14:01:28 +0530 Subject: [PATCH 2/9] Removed download_url. Signed-off-by: Jay --- src/fetchcode/package.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/fetchcode/package.py b/src/fetchcode/package.py index 56ab1421..62e64066 100644 --- a/src/fetchcode/package.py +++ b/src/fetchcode/package.py @@ -311,8 +311,8 @@ def get_rubygems_data_from_purl(purl): name = purl.name api_url = f"https://rubygems.org/api/v1/gems/{name}.json" releases_url = f"https://rubygems.org/api/v1/versions/{name}.json" - response = get_response(api_url) releases = get_response(releases_url) + response = get_response(api_url) declared_license = response.get("licenses") or None version = response.get("version") version_purl = PackageURL( @@ -336,11 +336,6 @@ def get_rubygems_data_from_purl(purl): for release in releases: version = release.get("number") release_date = release.get("created_at") - platform = release.get("platform") or "" - if platform: - download_url = f"https://rubygems.org/gems/{name}-{version}-{platform}.gem" - else: - download_url = f"https://rubygems.org/gems/{name}-{version}.gem" version_purl = PackageURL( type=purl.type, name=name, version=version ) @@ -350,7 +345,6 @@ def get_rubygems_data_from_purl(purl): bug_tracking_url=bug_tracking_url, code_view_url=code_view_url, declared_license=declared_license, - download_url=download_url, release_date=release_date, **version_purl.to_dict() ) From 621e4445c91f63e6f855d4b5d6621b82e1855050 Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 23 Dec 2022 18:18:10 +0530 Subject: [PATCH 3/9] Just a dummy commit wiyh changes in tests Signed-off-by: Jay --- src/fetchcode/package.py | 4 +- tests/data/rubygems.json | 41 ++++++++++++++- tests/data/rubygems_mock_data.json | 80 +++++++++++++++++++++++++++++- tests/test_package.py | 14 ++++-- 4 files changed, 132 insertions(+), 7 deletions(-) diff --git a/src/fetchcode/package.py b/src/fetchcode/package.py index 62e64066..7128f646 100644 --- a/src/fetchcode/package.py +++ b/src/fetchcode/package.py @@ -311,8 +311,10 @@ def get_rubygems_data_from_purl(purl): name = purl.name api_url = f"https://rubygems.org/api/v1/gems/{name}.json" releases_url = f"https://rubygems.org/api/v1/versions/{name}.json" - releases = get_response(releases_url) response = get_response(api_url) + releases = get_response(releases_url) + print(response) + # print(releases) declared_license = response.get("licenses") or None version = response.get("version") version_purl = PackageURL( diff --git a/tests/data/rubygems.json b/tests/data/rubygems.json index 77cfaf00..aed48bbe 100644 --- a/tests/data/rubygems.json +++ b/tests/data/rubygems.json @@ -1 +1,40 @@ -{"0": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": null, "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": null, "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": "https://rubygems.org/gems/rubocop-0.89.1.gem", "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop-hq/rubocop/issues", "code_view_url": "https://github.com/rubocop-hq/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}} \ No newline at end of file +{ + "0": { + "type": "rubygems", + "namespace": null, + "name": "rubocop", + "version": null, + "qualifiers": {}, + "subpath": null, + "primary_language": null, + "description": null, + "release_date": null, + "parties": [], + "keywords": [], + "homepage_url": "https://rubocop.org/", + "download_url": "https://rubygems.org/gems/rubocop-0.89.1.gem", + "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", + "size": null, + "sha1": null, + "md5": null, + "sha256": null, + "sha512": null, + "bug_tracking_url": "https://github.com/rubocop-hq/rubocop/issues", + "code_view_url": "https://github.com/rubocop-hq/rubocop/", + "vcs_url": null, + "copyright": null, + "license_expression": null, + "declared_license": [ + "MIT" + ], + "notice_text": null, + "root_path": null, + "dependencies": [], + "contains_source_code": null, + "source_packages": [], + "purl": "pkg:rubygems/rubocop", + "repository_homepage_url": null, + "repository_download_url": null, + "api_data_url": null + } +} \ No newline at end of file diff --git a/tests/data/rubygems_mock_data.json b/tests/data/rubygems_mock_data.json index 3a006f5b..e4c4ebca 100644 --- a/tests/data/rubygems_mock_data.json +++ b/tests/data/rubygems_mock_data.json @@ -1 +1,79 @@ -{"name":"rubocop","downloads":111809413,"version":"0.89.1","version_downloads":259770,"platform":"ruby","authors":"Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama","info":" RuboCop is a Ruby code style checking and code formatting tool.\n It aims to enforce the community-driven Ruby Style Guide.\n","licenses":["MIT"],"metadata":{"homepage_uri":"https://rubocop.org/","changelog_uri":"https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md","bug_tracker_uri":"https://github.com/rubocop-hq/rubocop/issues","source_code_uri":"https://github.com/rubocop-hq/rubocop/","documentation_uri":"https://docs.rubocop.org/"},"yanked":false,"sha":"30794116b2804aab1abc74780a201fae5160c1d6a21550ce9786abd3ca0e07fa","project_uri":"https://rubygems.org/gems/rubocop","gem_uri":"https://rubygems.org/gems/rubocop-0.89.1.gem","homepage_uri":"https://rubocop.org/","wiki_uri":null,"documentation_uri":"https://docs.rubocop.org/","mailing_list_uri":null,"source_code_uri":"https://github.com/rubocop-hq/rubocop/","bug_tracker_uri":"https://github.com/rubocop-hq/rubocop/issues","changelog_uri":"https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md","dependencies":{"development":[{"name":"bundler","requirements":"\u003e= 1.15.0, \u003c 3.0"}],"runtime":[{"name":"parallel","requirements":"~\u003e 1.10"},{"name":"parser","requirements":"\u003e= 2.7.1.1"},{"name":"rainbow","requirements":"\u003e= 2.2.2, \u003c 4.0"},{"name":"regexp_parser","requirements":"\u003e= 1.7"},{"name":"rexml","requirements":"\u003e= 0"},{"name":"rubocop-ast","requirements":"\u003e= 0.3.0, \u003c 1.0"},{"name":"ruby-progressbar","requirements":"~\u003e 1.7"},{"name":"unicode-display_width","requirements":"\u003e= 1.4.0, \u003c 2.0"}]}} \ No newline at end of file +{ + "name": "rubocop", + "downloads": 281548679, + "version": "1.40.0", + "version_created_at": "2022-12-08T07:50:52.498Z", + "version_downloads": 198668, + "platform": "ruby", + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "info": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "licenses": [ + "MIT" + ], + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.40/", + "rubygems_mfa_required": "true" + }, + "yanked": false, + "sha": "031881f824594fdb08713d5187c7bf07a11ff83fda869a7dd2d7765f92846a35", + "project_uri": "https://rubygems.org/gems/rubocop", + "gem_uri": "https://rubygems.org/gems/rubocop-1.40.0.gem", + "homepage_uri": "https://rubocop.org/", + "wiki_uri": null, + "documentation_uri": "https://docs.rubocop.org/rubocop/1.40/", + "mailing_list_uri": null, + "source_code_uri": "https://github.com/rubocop/rubocop/", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "funding_uri": null, + "dependencies": { + "development": [ + { + "name": "bundler", + "requirements": ">= 1.15.0, < 3.0" + } + ], + "runtime": [ + { + "name": "json", + "requirements": "~> 2.3" + }, + { + "name": "parallel", + "requirements": "~> 1.10" + }, + { + "name": "parser", + "requirements": ">= 3.1.2.1" + }, + { + "name": "rainbow", + "requirements": ">= 2.2.2, < 4.0" + }, + { + "name": "regexp_parser", + "requirements": ">= 1.8, < 3.0" + }, + { + "name": "rexml", + "requirements": ">= 3.2.5, < 4.0" + }, + { + "name": "rubocop-ast", + "requirements": ">= 1.23.0, < 2.0" + }, + { + "name": "ruby-progressbar", + "requirements": "~> 1.7" + }, + { + "name": "unicode-display_width", + "requirements": ">= 1.4.0, < 3.0" + } + ] + } +} \ No newline at end of file diff --git a/tests/test_package.py b/tests/test_package.py index dd639a88..03080b89 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -56,9 +56,9 @@ def test_npm_packages(mock_get): @mock.patch("fetchcode.package.get_response") def test_pypi_packages(mock_get): - side_effect = [file_data("tests/data/pypi_mock_data.json")] + side_effect = [file_data("./data/pypi_mock_data.json")] purl = "pkg:pypi/flask" - expected_data = file_data("tests/data/pypi.json") + expected_data = file_data("./data/pypi.json") mock_get.side_effect = side_effect packages = list(info(purl)) match_data(packages, expected_data) @@ -90,13 +90,19 @@ def test_bitbucket_packages(mock_get): match_data(packages, expected_data) +# @mock.patch("fetchcode.package.get_response") @mock.patch("fetchcode.package.get_response") def test_rubygems_packages(mock_get): - side_effect = [file_data("tests/data/rubygems_mock_data.json")] + # print(mock_get) + side_effect = [file_data("./data/rubygems_mock_data.json"), file_data("./data/rubygems_mock_data2.json")] + # side_effect2 = [file_data("./data/rubygems_mock_data2.json")] purl = "pkg:rubygems/rubocop" - expected_data = file_data("tests/data/rubygems.json") + expected_data = file_data("./data/rubygems.json") mock_get.side_effect = side_effect + # mock_get2.side_effect = side_effect packages = list(info(purl)) + # print(packages) + # print(packages, expected_data) match_data(packages, expected_data) From e2ee0902fb5ab5b8c56933d07ea73165db3a550f Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 23 Dec 2022 21:11:15 +0530 Subject: [PATCH 4/9] simple commit Signed-off-by: Jay --- src/fetchcode/package.py | 7 +++---- tests/test_package.py | 17 ++++++++--------- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/src/fetchcode/package.py b/src/fetchcode/package.py index 7128f646..75f4f75d 100644 --- a/src/fetchcode/package.py +++ b/src/fetchcode/package.py @@ -310,11 +310,7 @@ def get_rubygems_data_from_purl(purl): purl = PackageURL.from_string(purl) name = purl.name api_url = f"https://rubygems.org/api/v1/gems/{name}.json" - releases_url = f"https://rubygems.org/api/v1/versions/{name}.json" response = get_response(api_url) - releases = get_response(releases_url) - print(response) - # print(releases) declared_license = response.get("licenses") or None version = response.get("version") version_purl = PackageURL( @@ -335,6 +331,9 @@ def get_rubygems_data_from_purl(purl): release_date=release_date, **version_purl.to_dict() ) + + releases_url = f"https://rubygems.org/api/v1/versions/{name}.json" + releases = get_response(releases_url) for release in releases: version = release.get("number") release_date = release.get("created_at") diff --git a/tests/test_package.py b/tests/test_package.py index 03080b89..eb65f2e3 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -15,9 +15,10 @@ # specific language governing permissions and limitations under the License. import json -import pytest from unittest import mock +import pytest + from fetchcode.package import info @@ -93,21 +94,19 @@ def test_bitbucket_packages(mock_get): # @mock.patch("fetchcode.package.get_response") @mock.patch("fetchcode.package.get_response") def test_rubygems_packages(mock_get): - # print(mock_get) - side_effect = [file_data("./data/rubygems_mock_data.json"), file_data("./data/rubygems_mock_data2.json")] - # side_effect2 = [file_data("./data/rubygems_mock_data2.json")] + side_effect = [ + file_data("data/rubygems_mock_data.json"), + file_data("data/rubygems_mock_data_versions.json") + ] purl = "pkg:rubygems/rubocop" - expected_data = file_data("./data/rubygems.json") + expected_data = file_data("data/rubygems.json") mock_get.side_effect = side_effect - # mock_get2.side_effect = side_effect packages = list(info(purl)) - # print(packages) - # print(packages, expected_data) match_data(packages, expected_data) @mock.patch("fetchcode.package.get_response") -def test_tuby_package_with_invalid_url(mock_get): +def test_ruby_package_with_invalid_url(mock_get): with pytest.raises(Exception) as e_info: purl = "pkg:ruby/file" packages = list(info(purl)) From 762115aecc2272749f71f7bb11497e68bd0e569d Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Fri, 23 Dec 2022 22:50:48 +0530 Subject: [PATCH 5/9] Updated tests for ruby packages. Added a helper function for Creating new test files. Signed-off-by: Jay --- tests/data/rubygems.json | 41 +- tests/data/rubygems_mock_data_versions.json | 5071 +++++++++++++++++++ tests/test_package.py | 17 +- 3 files changed, 5088 insertions(+), 41 deletions(-) create mode 100644 tests/data/rubygems_mock_data_versions.json diff --git a/tests/data/rubygems.json b/tests/data/rubygems.json index aed48bbe..997665b3 100644 --- a/tests/data/rubygems.json +++ b/tests/data/rubygems.json @@ -1,40 +1 @@ -{ - "0": { - "type": "rubygems", - "namespace": null, - "name": "rubocop", - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": null, - "description": null, - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": "https://rubocop.org/", - "download_url": "https://rubygems.org/gems/rubocop-0.89.1.gem", - "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": "https://github.com/rubocop-hq/rubocop/issues", - "code_view_url": "https://github.com/rubocop-hq/rubocop/", - "vcs_url": null, - "copyright": null, - "license_expression": null, - "declared_license": [ - "MIT" - ], - "notice_text": null, - "root_path": null, - "dependencies": [], - "contains_source_code": null, - "source_packages": [], - "purl": "pkg:rubygems/rubocop", - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null - } -} \ No newline at end of file +{"0": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.40.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-12-08T07:50:52.498Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": "https://rubygems.org/gems/rubocop-1.40.0.gem", "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.40.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "1": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.40.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-12-08T07:50:52.498Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.40.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "2": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.39.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-11-14T06:09:18.582Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.39.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "3": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.38.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-11-01T07:26:18.895Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.38.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "4": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.37.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-10-24T06:34:17.041Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.37.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "5": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.37.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-10-20T07:55:22.076Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.37.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "6": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.36.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-09-01T07:59:06.750Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.36.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "7": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.35.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-08-22T05:48:01.573Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.35.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "8": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.35.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-08-12T12:50:07.105Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.35.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "9": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.34.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-08-09T12:00:48.363Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.34.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "10": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.34.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-08-09T05:25:37.049Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.34.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "11": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.33.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-08-04T09:25:43.239Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.33.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "12": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.32.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-07-21T10:33:44.211Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.32.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "13": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.31.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-07-07T08:04:49.754Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.31.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "14": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.31.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-06-29T06:55:06.791Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.31.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "15": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.31.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-06-27T06:28:07.483Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.31.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "16": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.30.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-06-06T07:58:39.398Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.30.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "17": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.30.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-05-26T06:05:15.705Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.30.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "18": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.29.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-05-12T11:19:28.982Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.29.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "19": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.29.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-05-06T15:51:42.728Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.29.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "20": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.28.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-04-25T06:44:26.428Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.28.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "21": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.28.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-04-21T12:36:57.304Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.28.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "22": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.28.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-04-21T08:07:06.255Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.28.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "23": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.27.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-04-08T06:05:25.410Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.27.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "24": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.26.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-03-22T11:02:36.495Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.26.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "25": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.26.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-03-09T16:40:38.227Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.26.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "26": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.25.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-02-03T06:44:47.250Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.25.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "27": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.25.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2022-01-18T07:45:28.499Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.25.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "28": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.24.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-12-31T10:33:10.186Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.24.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "29": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.24.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-12-23T11:06:39.276Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.24.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "30": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.23.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-11-15T08:10:45.792Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.23.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "31": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.22.3", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-10-27T13:02:09.306Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.22.3", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "32": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.22.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-10-22T05:45:22.726Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.22.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "33": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.22.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-10-04T03:20:23.304Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.22.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "34": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.22.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-09-29T07:26:49.236Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.22.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "35": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.21.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-09-13T13:09:37.203Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.21.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "36": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.20.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-08-26T07:51:17.209Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.20.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "37": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.19.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-08-19T06:55:01.167Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.19.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "38": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.19.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-08-12T10:31:19.249Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.19.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "39": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.18.4", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-07-23T06:12:42.555Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.18.4", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "40": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.18.3", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-07-06T09:15:19.404Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.18.3", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "41": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.18.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-07-02T12:18:10.848Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.18.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "42": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.18.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-06-30T05:26:23.167Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.18.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "43": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.18.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-06-29T05:37:50.088Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.18.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "44": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.17.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-06-15T10:36:25.983Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.17.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "45": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.16.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-06-09T10:46:29.434Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.16.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "46": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.16.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-06-01T07:05:05.867Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.16.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "47": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.15.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-05-17T07:17:56.288Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.15.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "48": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.14.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-05-05T07:54:36.043Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.14.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "49": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.13.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-04-20T08:04:40.949Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.13.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "50": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.12.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-04-04T13:59:28.208Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.12.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "51": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.12.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-03-24T13:37:11.465Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.12.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "52": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.11.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-03-01T07:52:18.929Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.11.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "53": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.10.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-02-15T13:10:10.167Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.10.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "54": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.9.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-02-01T07:37:07.234Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.9.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "55": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.9.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-01-28T08:18:31.958Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.9.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "56": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.8.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-01-11T11:18:45.376Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.8.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "57": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.8.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2021-01-07T08:56:11.791Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.8.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "58": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.7.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-12-25T07:22:09.105Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.7.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "59": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.6.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-12-10T07:36:17.340Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.6.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "60": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.6.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-12-09T12:10:09.487Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.6.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "61": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.5.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-12-04T08:48:50.982Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.5.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "62": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.5.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-12-02T16:00:42.960Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.5.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "63": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.5.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-12-01T17:18:15.865Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.5.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "64": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.4.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-11-25T08:13:43.899Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.4.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "65": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.4.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-11-23T15:47:06.586Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.4.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "66": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.4.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-11-23T09:00:24.039Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.4.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "67": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.3.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-11-16T08:54:41.526Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.3.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "68": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.3.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-11-12T08:03:01.026Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.3.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "69": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.2.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-11-05T07:35:20.077Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.2.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "70": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.1.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-10-29T15:18:10.951Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.1.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "71": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "1.0.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-10-21T11:02:00.444Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@1.0.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "72": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.93.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-10-12T07:04:17.359Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.93.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "73": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.93.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-10-08T14:53:41.340Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.93.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "74": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.92.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-09-25T08:12:20.931Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.92.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "75": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.91.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-09-23T09:46:14.960Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.91.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "76": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.91.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-09-15T05:45:14.063Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.91.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "77": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.90.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-09-01T06:44:59.545Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.90.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "78": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.89.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-08-10T12:17:06.265Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.89.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "79": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.89.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-08-05T19:05:18.634Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.89.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "80": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.88.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-07-13T12:22:19.339Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.88.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "81": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.87.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-07-07T19:14:41.214Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.87.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "82": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.87.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-07-06T16:12:40.171Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.87.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "83": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.86.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-06-22T07:29:21.381Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.86.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "84": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.85.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-06-07T15:40:00.351Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.85.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "85": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.85.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-06-01T15:47:28.436Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.85.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "86": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.84.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-05-21T06:57:11.953Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.84.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "87": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.83.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-05-11T12:28:44.160Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.83.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "88": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.82.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-04-16T08:19:59.835Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.82.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "89": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.81.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-04-01T07:55:38.383Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.81.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "90": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.80.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-02-29T18:05:39.532Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.80.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "91": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.80.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-02-18T11:59:08.971Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.80.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "92": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.79.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2020-01-06T09:57:25.274Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.79.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "93": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.78.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-12-18T20:51:20.075Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.78.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "94": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.77.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-11-27T18:03:03.812Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.77.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "95": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.76.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-10-28T14:54:29.237Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.76.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "96": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.75.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-10-14T16:58:16.713Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.75.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "97": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.75.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-09-30T17:05:51.523Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.75.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "98": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.74.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-07-31T19:12:04.545Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.74.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "99": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.73.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-07-16T08:57:10.832Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.73.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "100": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.72.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-06-25T14:36:09.976Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.72.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "101": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.71.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-05-30T13:53:44.134Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.71.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "102": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.70.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-05-21T10:26:46.421Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.70.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "103": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.69.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-05-13T08:57:55.837Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.69.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "104": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.68.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-04-30T19:46:32.378Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.68.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "105": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.68.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-04-29T13:53:42.552Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.68.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "106": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.67.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-04-05T07:54:59.405Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.67.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "107": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.67.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-04-04T17:13:15.415Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.67.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "108": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.67.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-04-04T15:23:11.383Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.67.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "109": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.66.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-03-18T09:27:01.934Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.66.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "110": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.65.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-02-19T08:43:14.568Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.65.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "111": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.64.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-02-10T13:54:58.751Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.64.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "112": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.63.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-01-22T03:02:01.872Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.63.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "113": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.63.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-01-16T16:32:03.430Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.63.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "114": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.62.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2019-01-01T08:40:22.886Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.62.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "115": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.61.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-12-06T08:18:53.311Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.61.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "116": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.61.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-12-05T12:42:54.009Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.61.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "117": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.60.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-10-26T10:41:04.209Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.60.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "118": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.59.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-09-24T05:19:49.887Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.59.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "119": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.59.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-09-15T07:45:31.993Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.59.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "120": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.59.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-09-09T16:24:47.204Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.59.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "121": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.58.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-07-23T18:01:18.681Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.58.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "122": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.58.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-07-10T07:31:15.576Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.58.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "123": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.58.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-07-07T12:38:26.296Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.58.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "124": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.57.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-06-12T09:05:03.272Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.57.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "125": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.57.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-06-06T22:57:40.803Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.57.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "126": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.57.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-06-06T00:53:30.394Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.57.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "127": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.56.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-05-14T15:17:56.916Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.56.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "128": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.55.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-04-16T09:20:00.851Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.55.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "129": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.54.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-03-21T03:01:01.664Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.54.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "130": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.53.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2018-03-05T01:51:12.010Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.53.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "131": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.52.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-12-27T13:31:06.690Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.52.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "132": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.52.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-12-12T13:56:04.078Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.52.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "133": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.51.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-10-18T19:13:19.013Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.51.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "134": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.50.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-09-14T18:13:15.476Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.50.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "135": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.49.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-05-29T12:34:28.077Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.49.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "136": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.49.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-05-24T05:33:44.287Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.49.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "137": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.48.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-04-03T11:29:58.977Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.48.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "138": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.48.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-03-26T09:53:19.789Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.48.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "139": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.47.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-01-18T02:22:18.664Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.47.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "140": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.47.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2017-01-16T01:37:21.113Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.47.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "141": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.46.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-11-30T06:56:04.929Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.46.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "142": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.45.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-10-31T09:31:11.908Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.45.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "143": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.44.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-10-13T14:55:04.417Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.44.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "144": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.44.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-10-13T14:05:27.902Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.44.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "145": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.43.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-09-19T08:02:45.931Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.43.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "146": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.42.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-07-25T09:16:51.982Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.42.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "147": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.41.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-07-07T11:55:00.995Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.41.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "148": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.41.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-06-26T08:50:26.134Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.41.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "149": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.41.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-06-25T17:50:26.038Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.41.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "150": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.40.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-05-09T17:45:53.078Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.40.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "151": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.39.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-03-27T11:16:21.158Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.39.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "152": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.38.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-03-09T15:10:05.281Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.38.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "153": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.37.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-02-11T12:50:57.031Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.37.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "154": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.37.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-02-09T16:45:33.535Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.37.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "155": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.37.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-02-04T06:37:12.148Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.37.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "156": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.36.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2016-01-14T18:22:21.651Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.36.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "157": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.35.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-11-10T17:09:13.947Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.35.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "158": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.35.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-11-07T06:46:41.231Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.35.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "159": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.34.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-09-21T14:50:42.260Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.34.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "160": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.34.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-09-09T11:29:19.149Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.34.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "161": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.34.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-09-05T05:06:00.263Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.34.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "162": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.33.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-08-05T12:17:28.842Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.33.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "163": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.32.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-06-24T06:17:18.900Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.32.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "164": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.32.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-06-06T09:02:54.433Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.32.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "165": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.31.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-05-05T17:06:13.868Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.31.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "166": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.30.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-04-21T11:54:36.285Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.30.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "167": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.30.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-04-06T15:38:28.162Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.30.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "168": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.29.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-02-13T09:44:57.178Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.29.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "169": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.29.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2015-02-05T20:28:53.282Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.29.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "170": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.28.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-12-10T17:17:29.029Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.28.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "171": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.27.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-11-08T11:26:10.904Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.27.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "172": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.27.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-10-30T16:43:32.213Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.27.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "173": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.26.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-09-18T12:10:31.079Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.26.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "174": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.26.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-09-03T12:35:37.840Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.26.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "175": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.25.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-08-15T11:19:31.470Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.25.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "176": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.24.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-07-03T11:40:30.994Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.24.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "177": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.24.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-06-25T06:50:13.105Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.24.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "178": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.23.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-06-02T12:19:23.545Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.23.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "179": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.22.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-05-20T14:36:31.896Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.22.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "180": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.21.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-04-24T09:41:19.853Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.21.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "181": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.20.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-04-05T12:16:27.467Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.20.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "182": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.20.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-04-02T14:03:48.747Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.20.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "183": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.19.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-03-17T15:57:49.176Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.19.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "184": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.19.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-03-13T16:07:32.092Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.19.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "185": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.18.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-02-02T10:11:48.216Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.18.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "186": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.18.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-01-30T16:11:12.247Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.18.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "187": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.17.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2014-01-23T15:44:06.875Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.17.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "188": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.16.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-12-25T18:01:42.589Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.16.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "189": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.15.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-11-06T14:55:07.694Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.15.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "190": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.14.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-10-10T09:22:35.405Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.14.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "191": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.14.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-10-07T11:55:17.164Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.14.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "192": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.13.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-09-19T11:17:32.222Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.13.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "193": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.13.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-09-13T14:12:11.377Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.13.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "194": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.12.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-08-23T08:20:14.993Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.12.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "195": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.11.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-08-12T08:41:14.761Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.11.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "196": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.11.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-08-09T14:44:40.288Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.11.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "197": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.10.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-07-17T18:38:32.352Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.10.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "198": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.9.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-07-05T15:13:09.528Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.9.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "199": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.9.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-07-01T12:57:41.924Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.9.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "200": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.8.3", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-06-18T12:41:29.955Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.8.3", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "201": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.8.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-06-05T11:46:36.612Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.8.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "202": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.8.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-05-30T08:11:17.673Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.8.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "203": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.8.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-05-28T09:06:01.240Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.8.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "204": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.7.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-05-13T07:00:10.330Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.7.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "205": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.7.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-05-11T12:01:12.103Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.7.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "206": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.7.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-05-11T05:40:16.929Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.7.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "207": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.6.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-28T12:44:09.481Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.6.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "208": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.6.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-23T11:23:04.364Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.6.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "209": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.5.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-17T15:09:32.991Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.5.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "210": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.4.6", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-15T13:21:26.422Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.4.6", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "211": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.4.5", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-15T13:18:31.196Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.4.5", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "212": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.4.4", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-14T14:26:04.168Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.4.4", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "213": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.4.3", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-14T06:10:31.699Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.4.3", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "214": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.4.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-13T19:20:43.281Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.4.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "215": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.4.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-13T11:20:04.189Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.4.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "216": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.4.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-11T09:45:55.167Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.4.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "217": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.3.2", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-04-06T17:24:51.540Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.3.2", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "218": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.3.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-02-28T20:45:07.073Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.3.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "219": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.3.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-02-11T15:55:45.093Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.3.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "220": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.2.1", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-01-12T15:56:50.441Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.2.1", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "221": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.2.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2013-01-02T19:42:27.672Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.2.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "222": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.1.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2012-12-20T09:56:20.974Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.1.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}, "223": {"type": "rubygems", "namespace": null, "name": "rubocop", "version": "0.0.0", "qualifiers": {}, "subpath": null, "primary_language": null, "description": null, "release_date": "2012-05-03T12:36:58.944Z", "parties": [], "keywords": [], "homepage_url": "https://rubocop.org/", "download_url": null, "api_url": "https://rubygems.org/api/v1/gems/rubocop.json", "size": null, "sha1": null, "md5": null, "sha256": null, "sha512": null, "bug_tracking_url": "https://github.com/rubocop/rubocop/issues", "code_view_url": "https://github.com/rubocop/rubocop/", "vcs_url": null, "copyright": null, "license_expression": null, "declared_license": ["MIT"], "notice_text": null, "root_path": null, "dependencies": [], "contains_source_code": null, "source_packages": [], "purl": "pkg:rubygems/rubocop@0.0.0", "repository_homepage_url": null, "repository_download_url": null, "api_data_url": null}} \ No newline at end of file diff --git a/tests/data/rubygems_mock_data_versions.json b/tests/data/rubygems_mock_data_versions.json new file mode 100644 index 00000000..8f3618dc --- /dev/null +++ b/tests/data/rubygems_mock_data_versions.json @@ -0,0 +1,5071 @@ +[ + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-12-08T00:00:00.000Z", + "created_at": "2022-12-08T07:50:52.498Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 194952, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.40/", + "rubygems_mfa_required": "true" + }, + "number": "1.40.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "031881f824594fdb08713d5187c7bf07a11ff83fda869a7dd2d7765f92846a35" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-11-14T00:00:00.000Z", + "created_at": "2022-11-14T06:09:18.582Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1150734, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.39/", + "rubygems_mfa_required": "true" + }, + "number": "1.39.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "7ce41a7778f3b65d3b8ca9d39ea360bbe58551fe3b7b2ab2f5b5b7860c9efd3d" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-11-01T00:00:00.000Z", + "created_at": "2022-11-01T07:26:18.895Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1258223, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.38/", + "rubygems_mfa_required": "true" + }, + "number": "1.38.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "64a64a66d746bd417224c0292d08d8bf5affcfe8fbfc3d50a36810ee8c8a1eba" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-10-24T00:00:00.000Z", + "created_at": "2022-10-24T06:34:17.041Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 603810, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.37/", + "rubygems_mfa_required": "true" + }, + "number": "1.37.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c1a5dc9b54913531ae03b6856216487734fba881d5673b77249fe8ff054215f6" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-10-20T00:00:00.000Z", + "created_at": "2022-10-20T07:55:22.076Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 222236, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.37/", + "rubygems_mfa_required": "true" + }, + "number": "1.37.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "285b6e8ac2ba7d7651122974669839cfd64b8a960d3ce29270bd1cb598be250f" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-09-01T00:00:00.000Z", + "created_at": "2022-09-01T07:59:06.750Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 5012527, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.36/", + "rubygems_mfa_required": "true" + }, + "number": "1.36.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "368e47dcab8417419949bbadb11ec41fd94e6b785f8bff4f9cc56a1ddf60ffac" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-08-22T00:00:00.000Z", + "created_at": "2022-08-22T05:48:01.573Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1195032, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.35/", + "rubygems_mfa_required": "true" + }, + "number": "1.35.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9d5cf370e27d5e44ed4cd6eeabd5224b21faafa677e6ec0cc0836c847ae3db8d" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-08-12T00:00:00.000Z", + "created_at": "2022-08-12T12:50:07.105Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 579716, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.35/", + "rubygems_mfa_required": "true" + }, + "number": "1.35.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "7fdcffa6eff2272e0e31993743caec05d1d48e9e6de8d0f6c1a57b4e849183f1" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-08-09T00:00:00.000Z", + "created_at": "2022-08-09T12:00:48.363Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 295868, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.34/", + "rubygems_mfa_required": "true" + }, + "number": "1.34.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "eed2747f54da1414f6a163442ad9c02d07b93c8b3d5a571e52b22b7cb4e508d8" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-08-09T00:00:00.000Z", + "created_at": "2022-08-09T05:25:37.049Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 41076, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.34/", + "rubygems_mfa_required": "true" + }, + "number": "1.34.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c794b2713af8017c3e17941ae42c99000d4188fdfc164fb033c67f8dec1e3f0a" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-08-04T00:00:00.000Z", + "created_at": "2022-08-04T09:25:43.239Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 375325, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.33/", + "rubygems_mfa_required": "true" + }, + "number": "1.33.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "7613b5d7bced82209ec8d8455f9f0910732dc623e6717a6c21aec45e6f3a389a" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-07-21T00:00:00.000Z", + "created_at": "2022-07-21T10:33:44.211Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1427804, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.32/", + "rubygems_mfa_required": "true" + }, + "number": "1.32.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "82d2a9c2995324ee0d27b75f4396d30a021e965c0e82c39162e7041a6a386326" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-07-07T00:00:00.000Z", + "created_at": "2022-07-07T08:04:49.754Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1105061, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.31/", + "rubygems_mfa_required": "true" + }, + "number": "1.31.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "641f15809e4850d86fc9337f8b783b1accd23c16f19e347608ff35fa270dd2f2" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-06-29T00:00:00.000Z", + "created_at": "2022-06-29T06:55:06.791Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 575839, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.31/", + "rubygems_mfa_required": "true" + }, + "number": "1.31.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "bc8cbc2ca284d31785e3379bad610447e4cb43688a6db38c0c4f50c0c3afca19" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-06-27T00:00:00.000Z", + "created_at": "2022-06-27T06:28:07.483Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 280996, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.31/", + "rubygems_mfa_required": "true" + }, + "number": "1.31.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a20b666d1702649efff1d27f95cf6fbb412a8d162441afce2def2276b7a104f4" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-06-06T00:00:00.000Z", + "created_at": "2022-06-06T07:58:39.398Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1457493, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.30/", + "rubygems_mfa_required": "true" + }, + "number": "1.30.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "e1fcbed368d823ff8bbda00819f0abf0d522a914dfe62499884fcb6df0ff1d21" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-05-26T00:00:00.000Z", + "created_at": "2022-05-26T06:05:15.705Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 823717, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.30/", + "rubygems_mfa_required": "true" + }, + "number": "1.30.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "665a7539677efb17bd644106a463047bd4c6a38963fca98fe50189de504109a2" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-05-12T00:00:00.000Z", + "created_at": "2022-05-12T11:19:28.982Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1406172, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.29/", + "rubygems_mfa_required": "true" + }, + "number": "1.29.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "2880817bba3d1f7f3418a8f50f12de84580f34750aa33b4560be5ddc75ba5c4c" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-05-06T00:00:00.000Z", + "created_at": "2022-05-06T15:51:42.728Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 478244, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.29/", + "rubygems_mfa_required": "true" + }, + "number": "1.29.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.6.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "eb47f76dbc87b5b6eb449ace51a6f2819df2f1ee49734a866554ef80b8f478cc" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-04-25T00:00:00.000Z", + "created_at": "2022-04-25T06:44:26.428Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2804237, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.28/", + "rubygems_mfa_required": "true" + }, + "number": "1.28.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "0d9bf4108fd86ede43c6cf30adcb3dd2e0c6750941c5ec2a00621478157cb377" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-04-21T00:00:00.000Z", + "created_at": "2022-04-21T12:36:57.304Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 268676, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.28/", + "rubygems_mfa_required": "true" + }, + "number": "1.28.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "d608991e7f0038b0bd3012ba5c6e59aba587dc0451a36ee3f970330c380b59c4" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-04-21T00:00:00.000Z", + "created_at": "2022-04-21T08:07:06.255Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 35944, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.28/", + "rubygems_mfa_required": "true" + }, + "number": "1.28.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "40934c4b94f39b9cd1108b4ace5e39584971bd47ab2fe8a806da08d5078f553d" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-04-08T00:00:00.000Z", + "created_at": "2022-04-08T06:05:25.410Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1068530, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.27/", + "rubygems_mfa_required": "true" + }, + "number": "1.27.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "936a444b2915697e8f1f0e97d92e1682260d15cb6209e5279623f765e9b7a901" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-03-22T00:00:00.000Z", + "created_at": "2022-03-22T11:02:36.495Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2157730, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.26/", + "rubygems_mfa_required": "true" + }, + "number": "1.26.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "f4c91b087a10596529fb82146f214824f952e6b2e15977002df54a85b32f2018" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-03-09T00:00:00.000Z", + "created_at": "2022-03-09T16:40:38.227Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1356438, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.26/", + "rubygems_mfa_required": "true" + }, + "number": "1.26.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9939f5ded335c505b4f34d856dbbc11138a74ed7c045a09add8837ec96d9860d" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-02-03T00:00:00.000Z", + "created_at": "2022-02-03T06:44:47.250Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3528839, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.25/", + "rubygems_mfa_required": "true" + }, + "number": "1.25.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "330b7674fd5242a8f10beaebe91098b7f766b3abbbd34000fda57f44a34978d0" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2022-01-18T00:00:00.000Z", + "created_at": "2022-01-18T07:45:28.499Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1756204, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.25/", + "rubygems_mfa_required": "true" + }, + "number": "1.25.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "723149a1d1809a13e61e7352f59b98ecd0f8219b88630030b20a45dc6a712e90" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-12-31T00:00:00.000Z", + "created_at": "2021-12-31T10:33:10.186Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2732400, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.24/", + "rubygems_mfa_required": "true" + }, + "number": "1.24.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "e01ede58cb413c08e6e5b8c6f4b92ec282e646158774b3f98595ae92c453c7ea" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-12-23T00:00:00.000Z", + "created_at": "2021-12-23T11:06:39.276Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 463045, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.24/", + "rubygems_mfa_required": "true" + }, + "number": "1.24.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "104848c84b18417e0c0e7c96670320d028a15a918fe2327ffc86d3c1b83be2c3" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-11-15T00:00:00.000Z", + "created_at": "2021-11-15T08:10:45.792Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3858559, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.23/", + "rubygems_mfa_required": "true" + }, + "number": "1.23.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "0b0b110eb9309a750d02f4549dfdc5399d3384ddfd6758cb3e4bd3551a5e3b0e" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-10-27T00:00:00.000Z", + "created_at": "2021-10-27T13:02:09.306Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1822607, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.22/" + }, + "number": "1.22.3", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "5e10a1a63db9028b173f2b65549477d087a9a23de4d94eb1b89d79db31ee306b" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-10-22T00:00:00.000Z", + "created_at": "2021-10-22T05:45:22.726Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 462659, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.22/" + }, + "number": "1.22.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "bb760c298b15e5dc1bbbb4e0fb225abf2598b5b30a0c059e805370ce586d0b67" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-10-04T00:00:00.000Z", + "created_at": "2021-10-04T03:20:23.304Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1669233, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.22/" + }, + "number": "1.22.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9171b4a7cea4fc98cb7053df4467ec2ae0bac03e1b6b65802404c84e6a154fa6" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-09-29T00:00:00.000Z", + "created_at": "2021-09-29T07:26:49.236Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 414171, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.22/" + }, + "number": "1.22.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "2784830587b80e019661015ee5c9e030248985dabc590ddd84d7aca0ddc26a81" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-09-13T00:00:00.000Z", + "created_at": "2021-09-13T13:09:37.203Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1308464, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.21/" + }, + "number": "1.21.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9501707e5d72476e72843242fcd29332a1ccb656a163042462d4b18f2f531abf" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-08-26T00:00:00.000Z", + "created_at": "2021-08-26T07:51:17.209Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1527985, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.20/" + }, + "number": "1.20.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "46f6c5d45a25f2c75cf8c92149e91e8680dac7f6056ebb92d979f36ff890d17f" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-08-19T00:00:00.000Z", + "created_at": "2021-08-19T06:55:01.167Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 823403, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.19/" + }, + "number": "1.19.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "8c4f8cd8abfd8bb24f4f30a9d9d70118b3bc64a455750c742414b6b540acacbe" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-08-12T00:00:00.000Z", + "created_at": "2021-08-12T10:31:19.249Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 464235, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.19/" + }, + "number": "1.19.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "4ea67b3e0581623e40cfcb58cdb946d11d2aa92b78d42cd050ab6d786d36a716" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-07-23T00:00:00.000Z", + "created_at": "2021-07-23T06:12:42.555Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2048505, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.18/" + }, + "number": "1.18.4", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "12c63a283dc90816072392118f7dbfc358febc0648655abd23690905ecbd68d2" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-07-06T00:00:00.000Z", + "created_at": "2021-07-06T09:15:19.404Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1833526, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.18/" + }, + "number": "1.18.3", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "3d68b45c160faab94cc544f94d31c0625305ee5faf49415c49edfaa9a9cab110" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-07-02T00:00:00.000Z", + "created_at": "2021-07-02T12:18:10.848Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 341323, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.18/" + }, + "number": "1.18.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "6b45980977a3adf83ebea10ed31b81611db4713c910b9d4f37144d7e6cff25c2" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-06-30T00:00:00.000Z", + "created_at": "2021-06-30T05:26:23.167Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 297947, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.18/" + }, + "number": "1.18.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "33ae45f78d826a5ef9613eebe354a841cee55eb02b826daa4ba7af1fb7d6689c" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-06-29T00:00:00.000Z", + "created_at": "2021-06-29T05:37:50.088Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 97390, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.18/" + }, + "number": "1.18.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "b5de58755d97ca72d25a3cd057cd61ac519a9021787da927f20337ef6676b130" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-06-15T00:00:00.000Z", + "created_at": "2021-06-15T10:36:25.983Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1246676, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.17/" + }, + "number": "1.17.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "e69e12da57c04241dd7978b43e570e1eed589d486271842b10d9c921a330d052" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-06-09T00:00:00.000Z", + "created_at": "2021-06-09T10:46:29.434Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 409714, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.16/" + }, + "number": "1.16.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "fd0feb97e7249b890af0d5bf1078d94ac587741a2c88dd0ddfc959b3aa35729a" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-06-01T00:00:00.000Z", + "created_at": "2021-06-01T07:05:05.867Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1018575, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.16/" + }, + "number": "1.16.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "223c4d1187f34a224ab38e1f180cb390d9209191d268d9040b6315c0bbe65746" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-05-17T00:00:00.000Z", + "created_at": "2021-05-17T07:17:56.288Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1610005, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.15/" + }, + "number": "1.15.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "3c783af32a3950d5b5d7b3a59d2517bccc2fce80df44d4cd1baedc6131f20af6" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-05-05T00:00:00.000Z", + "created_at": "2021-05-05T07:54:36.043Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1427543, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.14/" + }, + "number": "1.14.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "f73a95a3aa4999d617678fd5c3559b531d77ef408d44d8ce5dd99d07a2c91232" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-04-20T00:00:00.000Z", + "created_at": "2021-04-20T08:04:40.949Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1465582, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.13/" + }, + "number": "1.13.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.5.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "4d24d2557ad91ebf0c316c7da4e4b96c2e293ae32ab6760510bc650e8e91f931" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-04-04T00:00:00.000Z", + "created_at": "2021-04-04T13:59:28.208Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2946162, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.12/" + }, + "number": "1.12.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "2963dc4b3b8e9b2b2d39e8986e5bacbb0246bfb439da03ba4fca5365d4602242" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-03-24T00:00:00.000Z", + "created_at": "2021-03-24T13:37:11.465Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1058922, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.12/" + }, + "number": "1.12.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "dc9150badc782e37fbf572357b132ad3db2a11485635595b269d7bae0c047ec4" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-03-01T00:00:00.000Z", + "created_at": "2021-03-01T07:52:18.929Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2174265, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop/rubocop/issues", + "source_code_uri": "https://github.com/rubocop/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.11/" + }, + "number": "1.11.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "f954e6889e6a5e0b64e973b531e673ec597ff430ddbf50584099d532fad33f7f" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-02-15T00:00:00.000Z", + "created_at": "2021-02-15T13:10:10.167Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1356069, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.10/" + }, + "number": "1.10.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9fe2014e760ddef3ba9f822a8b6643d175ea8ee622c8240d922204a609378dd9" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-02-01T00:00:00.000Z", + "created_at": "2021-02-01T07:37:07.234Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1150043, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.9/" + }, + "number": "1.9.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "42a43aeea3d87ea429b897c3f18d8b6fddcf99c37d47f413f859f7ebe5f2d71a" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-01-28T00:00:00.000Z", + "created_at": "2021-01-28T08:18:31.958Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 186005, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.9/" + }, + "number": "1.9.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a99ce92e7b5b2050b75a8885b1ca2a32f7c690222bba3357d566f4495ebee0f3" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-01-11T00:00:00.000Z", + "created_at": "2021-01-11T11:18:45.376Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1600383, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.8/" + }, + "number": "1.8.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "bffc58b0a398bd3fd46ad6f6310befb981e5cd1d706a8f8de18251e981620299" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2021-01-07T00:00:00.000Z", + "created_at": "2021-01-07T08:56:11.791Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 184774, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.8/" + }, + "number": "1.8.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "2d7a5c2eacd9e1b322a8b910acc1f16c109e793b76f56af435228821b5755989" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-12-25T00:00:00.000Z", + "created_at": "2020-12-25T07:22:09.105Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1971494, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.7/" + }, + "number": "1.7.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "343c1b2ebf906a0e889c5135a65227548538e50d8c8aa27b8a150cf8fdf7738a" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-12-10T00:00:00.000Z", + "created_at": "2020-12-10T07:36:17.340Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1315282, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.6/" + }, + "number": "1.6.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "89b638e3975463d2b0749617ec7a372f3a597bfa2465e1e396aee82824839626" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-12-09T00:00:00.000Z", + "created_at": "2020-12-09T12:10:09.487Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 68631, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.6/" + }, + "number": "1.6.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "de769122490a39a283aa99519e54358a4ae84b5a3773d4ed135da750f59dbdef" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-12-04T00:00:00.000Z", + "created_at": "2020-12-04T08:48:50.982Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 415929, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.5/" + }, + "number": "1.5.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "e552e6c2a0765a5faea5b0def4c13a6004bcdd2e947eb5693ee3900c5535444c" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-12-02T00:00:00.000Z", + "created_at": "2020-12-02T16:00:42.960Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 134457, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.5/" + }, + "number": "1.5.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "481149f40d9e4b45e81ba9df462d943fb1dddadc60b88bf5632e1dcb5278168d" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-12-01T00:00:00.000Z", + "created_at": "2020-12-01T17:18:15.865Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 41490, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.5/" + }, + "number": "1.5.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "2b1c5101afc230126dc5be1d9a8afa5deda2e9b6a8eb87f032863ab195113ad2" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-11-25T00:00:00.000Z", + "created_at": "2020-11-25T08:13:43.899Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1889430, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.4/" + }, + "number": "1.4.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "5e58c81eb570336047380f2cc179b412eb50ee7560d128395ea535f6e1877fcf" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-11-23T00:00:00.000Z", + "created_at": "2020-11-23T15:47:06.586Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 272536, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.4/" + }, + "number": "1.4.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c502ab34cfdffafca465b8ab4338209eaf86f3ac2a015e87caeb49b69e0979f6" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-11-23T00:00:00.000Z", + "created_at": "2020-11-23T09:00:24.039Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 25055, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.4/" + }, + "number": "1.4.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c01c4658123427d9198c3d20e6fede1d0be555703a84bd8023efdf91dd8a6187" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-11-16T00:00:00.000Z", + "created_at": "2020-11-16T08:54:41.526Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 649285, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.3/" + }, + "number": "1.3.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "4054ee99368d9e479ef82869e731eccde3055b1a5bcdba02ea077f2411b3eab1" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-11-12T00:00:00.000Z", + "created_at": "2020-11-12T08:03:01.026Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 228320, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.3/" + }, + "number": "1.3.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "7cf281b5e63b87b6caf26a0fc44f98af32b0507898e360ac3a0d8fd824a947ef" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-11-05T00:00:00.000Z", + "created_at": "2020-11-05T07:35:20.077Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 544966, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.2/" + }, + "number": "1.2.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "599bb8a001cd4cb0195b8b0b8f055158b93f7bd77fc3a232e5adbdf3bca28715" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-10-29T00:00:00.000Z", + "created_at": "2020-10-29T15:18:10.951Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1021088, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.1/" + }, + "number": "1.1.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "146a44a1d0baba33cac6274c0be6a98098cabe38684dff6e1b3929c29f3d88db" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-10-21T00:00:00.000Z", + "created_at": "2020-10-21T11:02:00.444Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 914943, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/1.0/" + }, + "number": "1.0.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c16df6a0a14e370a64ac7de209bba6e8466a0283761373c82b9eff9d0bf988b5" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-10-12T00:00:00.000Z", + "created_at": "2020-10-12T07:04:17.359Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 15160701, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/0.93/" + }, + "number": "0.93.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "73b44fbbe872edbd3f14487175b6369a0f48e952c155f305896ffa56c48b195e" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-10-08T00:00:00.000Z", + "created_at": "2020-10-08T14:53:41.340Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 218455, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/0.93/" + }, + "number": "0.93.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "6a3c6b8e5287ea7b7c729ab51406a163a9894fe0f925f0626b2a9112503c3bdb" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-09-25T00:00:00.000Z", + "created_at": "2020-09-25T08:12:20.931Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2295649, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/rubocop/0.92/" + }, + "number": "0.92.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "3653dec299db6290c1f4dd3c4afd47ef76c484185f3642605552547c74672e4b" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-09-23T00:00:00.000Z", + "created_at": "2020-09-23T09:46:14.960Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1841881, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.91.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "06b08219c476a9507eb8a7f6b026d33f5d463d2a32488a3b80aab06a3e6fd5a6" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-09-15T00:00:00.000Z", + "created_at": "2020-09-15T05:45:14.063Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 7116681, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.91.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "0a836a303d959ba4d35b9c3eb848e4ed54952a4d0037874f0c1067da4721781d" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-09-01T00:00:00.000Z", + "created_at": "2020-09-01T06:44:59.545Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1539340, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.90.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9d3d3acf7dde11cea1c7c18c1baf8cc80124ad02db802eee2a96e03f38c58cf0" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-08-10T00:00:00.000Z", + "created_at": "2020-08-10T12:17:06.265Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 5649602, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.89.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "30794116b2804aab1abc74780a201fae5160c1d6a21550ce9786abd3ca0e07fa" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-08-05T00:00:00.000Z", + "created_at": "2020-08-05T19:05:18.634Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 262806, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.89.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "ef1aba0c16b4610bfc8e9fdd233707719872b387f4bc9d3fc66829572a9008c2" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-07-13T00:00:00.000Z", + "created_at": "2020-07-13T12:22:19.339Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3532365, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.88.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "8d7da9340fce8b64be15077e6ba1f7c60b5b5999901ce2eda9837f9ca08b2fe4" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-07-07T00:00:00.000Z", + "created_at": "2020-07-07T19:14:41.214Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 587671, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.87.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "3df1a0c641feed9004d0dd787e220283cf8a82f8ba24a04a284c4f841dad6029" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-07-06T00:00:00.000Z", + "created_at": "2020-07-06T16:12:40.171Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1769534, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.87.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a928b5acff012d15df735ef34978bc099397b12fcaa4025e46c565397e179430" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-06-22T00:00:00.000Z", + "created_at": "2020-06-22T07:29:21.381Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 9631672, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.86.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "babe641b554e28d53bad32fd94f90e6d65410fa06fe8a2c511f2aec03b7c83ca" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-06-07T00:00:00.000Z", + "created_at": "2020-06-07T15:40:00.351Z", + "description": " RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1857362, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.85.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "d0a0b8a7cf84ed0c5f3a305a48c738b1b8ec8a08affd19e7c5986fd6d5a21bbe" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-06-01T00:00:00.000Z", + "created_at": "2020-06-01T15:47:28.436Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 390091, + "metadata": { + "homepage_uri": "https://rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.85.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "3963352c8187a06dbf3f65358ab91eff3502792da8dbb0e8329eeb7fb74715bc" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-05-21T00:00:00.000Z", + "created_at": "2020-05-21T06:57:11.953Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1696034, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.84.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "069f1497ef67aefa360a80aef66375fab2941b85dd09a2a68dcaab3d17a4e5c6" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-05-11T00:00:00.000Z", + "created_at": "2020-05-11T12:28:44.160Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1393953, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.83.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "3397a3778ed0fa4d43e69b19f9c421da1925e7a85acc07f5b852aafc7a3c7224" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-04-16T00:00:00.000Z", + "created_at": "2020-04-16T08:19:59.835Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 5263811, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.82.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.4.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "2d6c5bc7d9b9c1ac1e8bb8a724ea761d724661ebec143eb0b92345b5a8e8d25f" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-04-01T00:00:00.000Z", + "created_at": "2020-04-01T07:55:38.383Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 4087397, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.81.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "3d1ff65d3acf3a4ef1babb4624255268460f5d56ddb8f9c985a731d8ebe80d32" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-02-29T00:00:00.000Z", + "created_at": "2020-02-29T18:05:39.532Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3892844, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.80.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "485291465f908c08de184932a6ae7a796c8a37dd46020dd5ed21cc46eee117c5" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-02-18T00:00:00.000Z", + "created_at": "2020-02-18T11:59:08.971Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1613396, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.80.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "cb7ec63f27324162a4d2021104b2d94ea611e7c47995cc8b6f65436ecebeae29" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2020-01-06T00:00:00.000Z", + "created_at": "2020-01-06T09:57:25.274Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3684969, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.79.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "325b331102897bd19d08f4e4d18dde806f24cbf5768110663ae16fab1f17a792" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-12-18T00:00:00.000Z", + "created_at": "2019-12-18T20:51:20.075Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1864673, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.78.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a013cddb1b1292833fada241aea59b450c2a51d730c556e829572ba69d862bdc" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-11-27T00:00:00.000Z", + "created_at": "2019-11-27T18:03:03.812Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2407855, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.77.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a95b032eeeb52bfd83db802d992a2e98484023b06677f16d5bb5c2f556580855" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-10-28T00:00:00.000Z", + "created_at": "2019-10-28T14:54:29.237Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3103110, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.76.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "00837450d0eb3d85c7eb32afe909f9536135172df06bdd490ade9c4e7b0ca51f" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-10-14T00:00:00.000Z", + "created_at": "2019-10-14T16:58:16.713Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2009070, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.75.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "360c1d4941881064611feae6b3b9f1535a5e455dd174ced9a4d39b734e0cb868" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-09-30T00:00:00.000Z", + "created_at": "2019-09-30T17:05:51.523Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1060449, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.75.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "4be504c51e6bfbce5070bc853d9bd770a273600eca31820ca1aa3695d66010f4" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-07-31T00:00:00.000Z", + "created_at": "2019-07-31T19:12:04.545Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 9305914, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.74.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "d3abbf59133f5fce2bea961bb363a3c2f7d2e36ffc30fd11de5c2c9cb456fe72" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-07-16T00:00:00.000Z", + "created_at": "2019-07-16T08:57:10.832Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1210066, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.73.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "0ed89317eba64db6327896303dafad5c1520983e12cb2c21cbb32cac3a62bfac" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-06-25T00:00:00.000Z", + "created_at": "2019-06-25T14:36:09.976Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2937665, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.72.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a20e5b9fe52b337b491d77faea871fe90f8bf2fd5a71b594e76419a852ad5ba4" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-05-30T00:00:00.000Z", + "created_at": "2019-05-30T13:53:44.134Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2503097, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.71.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "cb40a9fb646368c867dd3a41753169dee24aa4b819e91f0189a8b8da82cb5e56" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-05-21T00:00:00.000Z", + "created_at": "2019-05-21T10:26:46.421Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1312643, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.70.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9c938c50fe39ed55458ecf600f316ccbaf51cf5584d1aa83b621ba27ba94f86c" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-05-13T00:00:00.000Z", + "created_at": "2019-05-13T08:57:55.837Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2816316, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.69.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.3.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "b1ccb922caf3eb21a97a92fe8cbf62950e4adc215052cde4cfbbc5a8a442bcb2" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-04-30T00:00:00.000Z", + "created_at": "2019-04-30T19:46:32.378Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2354825, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.68.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "af830b7ddf6459700b35225db789e828015df5d96ca40ee438da1115383a39d4" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-04-29T00:00:00.000Z", + "created_at": "2019-04-29T13:53:42.552Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 422421, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.68.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "8a1d642e344ef81164915cf00f021724a2ff1b17ff552369f8be36a7dc672b9c" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-04-05T00:00:00.000Z", + "created_at": "2019-04-05T07:54:59.405Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1401098, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.67.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "0029e66eb5c02fca2befdcba5c12c81ca83620c4ad5e1d197fcd35f7a549efb1" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-04-04T00:00:00.000Z", + "created_at": "2019-04-04T17:13:15.415Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 104608, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.67.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c1e929a0aae8b28d75c8ca093a4401e66c2fc91e84f6a8ccb8ad5f22016fd7a2" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-04-04T00:00:00.000Z", + "created_at": "2019-04-04T15:23:11.383Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 68744, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.67.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "fe1d716afc92a59180e30e9d62b398a3c069c4ae5bca97b5de6e4d65c6cf9f8c" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-03-18T00:00:00.000Z", + "created_at": "2019-03-18T09:27:01.934Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2401473, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.66.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "f05a6896f367765b3f0fba663d0add120444f8de604dada405662b10a0860f5a" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-02-19T00:00:00.000Z", + "created_at": "2019-02-19T08:43:14.568Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2454323, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.65.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c6ffcb57bab1cecbcd0240948c2bba65f422abc1e72bef461fb4f31cd9bbd19a" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-02-10T00:00:00.000Z", + "created_at": "2019-02-10T13:54:58.751Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3515379, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.64.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "726debef2d860b3855f683c5051121046b99197b39459620dd137266a789501f" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-01-22T00:00:00.000Z", + "created_at": "2019-01-22T03:02:01.872Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2165420, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.63.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "5e8a8fadbe248ff9c3727b603d66f23658fe1e1965ae07571365b34a390600df" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-01-16T00:00:00.000Z", + "created_at": "2019-01-16T16:32:03.430Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 424448, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.63.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "81b091cf498be83ecb01be8ea5c265c0231eed14d9ee00b872cd10859dca8d65" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2019-01-01T00:00:00.000Z", + "created_at": "2019-01-01T08:40:22.886Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1110760, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.62.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "73bb7e9b97e35444c37a9164e5a644518807fba613a790e1e234ae9b7fcfca0e" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-12-06T00:00:00.000Z", + "created_at": "2018-12-06T08:18:53.311Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1883202, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.61.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "8650301567ee5a4867dbb9ba9ca9987d7dc8a9166ee3136c41c03906cc935ada" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-12-05T00:00:00.000Z", + "created_at": "2018-12-05T12:42:54.009Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 114321, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.61.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "18a30bb68d42e8cc3fd1a0aac37c86db46c99fae2edae7bb9dc49eed8f41864c" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-10-26T00:00:00.000Z", + "created_at": "2018-10-26T10:41:04.209Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2185716, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.60.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "31d8b34585456ce0f0e79d6411c3b7e705ac571996876d9815e1d6f1130173c7" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-09-24T00:00:00.000Z", + "created_at": "2018-09-24T05:19:49.887Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2765860, + "metadata": { + "homepage_uri": "https://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://docs.rubocop.org/" + }, + "number": "0.59.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a6888aef273e586226013355db553bca6c7acd81ca5771d749d69a883dc92004" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-09-15T00:00:00.000Z", + "created_at": "2018-09-15T07:45:31.993Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 808130, + "metadata": { + "homepage_uri": "http://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "http://docs.rubocop.org/" + }, + "number": "0.59.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "4b449177a369193559dabbbbd4fff967c1b2bd817bd78134b6082f1d1dd5e443" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-09-09T00:00:00.000Z", + "created_at": "2018-09-09T16:24:47.204Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 808087, + "metadata": { + "homepage_uri": "http://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "http://docs.rubocop.org/" + }, + "number": "0.59.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "455597f026940948d5c46a84660a0a944f07d6cf27f497d7147bc49626ced183" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-07-23T00:00:00.000Z", + "created_at": "2018-07-23T18:01:18.681Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 5702132, + "metadata": { + "homepage_uri": "http://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "http://docs.rubocop.org/" + }, + "number": "0.58.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "43dab6c9d6c72844cbd028140ee7c60190c5ee6e30417d63480da3f413778139" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-07-10T00:00:00.000Z", + "created_at": "2018-07-10T07:31:15.576Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 835001, + "metadata": { + "homepage_uri": "http://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "http://docs.rubocop.org/" + }, + "number": "0.58.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "26ca690212ae00b00435e767f9b3f46ffb1f1143a5f25fe728e638d15ba65868" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-07-07T00:00:00.000Z", + "created_at": "2018-07-07T12:38:26.296Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 185564, + "metadata": { + "homepage_uri": "http://www.rubocop.org/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "http://docs.rubocop.org/" + }, + "number": "0.58.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.2.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "e3b24a143239f4752f4a4e5e09ebb6ff41bb302db34771489db6ef4b728d3a24" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-06-12T00:00:00.000Z", + "created_at": "2018-06-12T09:05:03.272Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2219606, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.57.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "468ca03be186a4c39f75535ad445bb073408cf2c75035105ac6b91dc04d9cbac" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-06-06T00:00:00.000Z", + "created_at": "2018-06-06T22:57:40.803Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 261465, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.57.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "ad25fe52d9be12bb0662dd32e84cc72067f2ab516a14bb5d557dfec15a74a2e6" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-06-06T00:00:00.000Z", + "created_at": "2018-06-06T00:53:30.394Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 106842, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/rubocop-hq/rubocop/issues", + "source_code_uri": "https://github.com/rubocop-hq/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.57.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "cbce208bac27d4368ebe1a7892b37674399ad274b18888259be8b305a368e644" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-05-14T00:00:00.000Z", + "created_at": "2018-05-14T15:17:56.916Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1704546, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/bbatsov/rubocop/issues", + "source_code_uri": "https://github.com/bbatsov/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.56.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "687f9418a1475911fdd0cf7c57009620daef2caffe5692b621dc6d1abfb04212" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-04-16T00:00:00.000Z", + "created_at": "2018-04-16T09:20:00.851Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2678395, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/bbatsov/rubocop/issues", + "source_code_uri": "https://github.com/bbatsov/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.55.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "21fc1b25eee37a6b601144b02f2b90d608555aa09aafbf57f03636828d99169f" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-03-21T00:00:00.000Z", + "created_at": "2018-03-21T03:01:01.664Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 4579601, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/bbatsov/rubocop/issues", + "source_code_uri": "https://github.com/bbatsov/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.54.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "3a2208fe1166b22e109b3a184aa0bd26e04d16e78587b9c714e63980694ade80" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2018-03-05T00:00:00.000Z", + "created_at": "2018-03-05T01:51:12.010Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1117392, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/bbatsov/rubocop/issues", + "source_code_uri": "https://github.com/bbatsov/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.53.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "ce9862b128c49183b2bf2b3416825557ca99bddd504eb1a9f815e8039f201b28" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-12-27T00:00:00.000Z", + "created_at": "2017-12-27T13:31:06.690Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 5695439, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/bbatsov/rubocop/issues", + "source_code_uri": "https://github.com/bbatsov/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.52.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "4ec659892e86c64ec25e7a543b4a717f9ee6e9450bdb9541e0d3492b43ce4234" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-12-12T00:00:00.000Z", + "created_at": "2017-12-12T13:56:04.078Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 940445, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/bbatsov/rubocop/issues", + "source_code_uri": "https://github.com/bbatsov/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.52.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "291bcca376e76b5bada3ee91c938a4354e384d3d87278ab54b22bde660b520bd" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-10-18T00:00:00.000Z", + "created_at": "2017-10-18T19:13:19.013Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3280556, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/bbatsov/rubocop/issues", + "source_code_uri": "https://github.com/bbatsov/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.51.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.1.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c131a5c063600cd31cf49c69130c16b94a6bd7d6a35f6f00c587ac6330bdc233" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-09-14T00:00:00.000Z", + "created_at": "2017-09-14T18:13:15.476Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3006897, + "metadata": { + "homepage_uri": "https://rubocop.readthedocs.io/", + "changelog_uri": "https://github.com/bbatsov/rubocop/blob/master/CHANGELOG.md", + "bug_tracker_uri": "https://github.com/bbatsov/rubocop/issues", + "source_code_uri": "https://github.com/bbatsov/rubocop/", + "documentation_uri": "https://rubocop.readthedocs.io/" + }, + "number": "0.50.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9f7610b37b6746609c932ec8ac5b1a9b4b56f7526018c941393e79b2d93fedc2" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-05-29T00:00:00.000Z", + "created_at": "2017-05-29T12:34:28.077Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 10513027, + "metadata": {}, + "number": "0.49.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "bcb37220633a570611b68bf8d4649414624d90fad83a7bf8310940f61df51ed7" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-05-24T00:00:00.000Z", + "created_at": "2017-05-24T05:33:44.287Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 332524, + "metadata": {}, + "number": "0.49.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "3af20292590127c5e5a67a08e84642bb9d1f555cb8ed16717980c8b524ed038f" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-04-03T00:00:00.000Z", + "created_at": "2017-04-03T11:29:58.977Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 2525047, + "metadata": {}, + "number": "0.48.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "002f6b49013abdc05c68ae75433c48d3ee7f1baa70674d60bf1cc310e210fbd7" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-03-26T00:00:00.000Z", + "created_at": "2017-03-26T09:53:19.789Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 196400, + "metadata": {}, + "number": "0.48.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "cca38e2b3ba3496fa63dbe747baa9eff7f9717631df1221467618b54773fd690" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-01-18T00:00:00.000Z", + "created_at": "2017-01-18T02:22:18.664Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3089631, + "metadata": {}, + "number": "0.47.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a7066a0c553e3bad1f118062deef5f05d050a6cf11cb9c9cda067b2a891a7916" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2017-01-16T00:00:00.000Z", + "created_at": "2017-01-16T01:37:21.113Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 94724, + "metadata": {}, + "number": "0.47.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "55d32c0b5b42f7ac5b6ede9ef4f6a1e6605bc28f8cb38db1c796042ad71f5bd3" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-11-30T00:00:00.000Z", + "created_at": "2016-11-30T06:56:04.929Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1995245, + "metadata": {}, + "number": "0.46.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "0c5087c157b6070319d06cab7594f9f72b5478344a2568b7029875a081c20418" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-10-31T00:00:00.000Z", + "created_at": "2016-10-31T09:31:11.908Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 908256, + "metadata": {}, + "number": "0.45.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c579b99be005868127c26d18d8ebfc2e71ed4ebacf781896a837cac6f128248f" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-10-13T00:00:00.000Z", + "created_at": "2016-10-13T14:55:04.417Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 449120, + "metadata": {}, + "number": "0.44.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "2f702937dce43bed412c186dadd3727a769e837bd82263ee7687f37050c324ec" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-10-13T00:00:00.000Z", + "created_at": "2016-10-13T14:05:27.902Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 5702, + "metadata": {}, + "number": "0.44.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "b124c8255b6570964a53e9d17d3861970d71788f8caa7819335cfac291eb8093" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-09-19T00:00:00.000Z", + "created_at": "2016-09-19T08:02:45.931Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 926688, + "metadata": {}, + "number": "0.43.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "125e352d5ad65cae73f33572fde0f4793ca8ef7823263935e93ff0c2cd265764" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-07-25T00:00:00.000Z", + "created_at": "2016-07-25T09:16:51.982Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1756918, + "metadata": {}, + "number": "0.42.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 2.0.0", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "1bfd76aa1f6e266d459a7776e5de13956595aca4718758f593b5800c9d809918" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-07-07T00:00:00.000Z", + "created_at": "2016-07-07T11:55:00.995Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1529413, + "metadata": {}, + "number": "0.41.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9ef6e6a8de0ee0f45305beaae85645bb050e443c237ce91ab488268540ca4d09" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-06-26T00:00:00.000Z", + "created_at": "2016-06-26T08:50:26.134Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 376170, + "metadata": {}, + "number": "0.41.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "7f6c7d8a9a9b4fecbe89a851c38bc549c8d1d4744f57bde383aa33884d4ef661" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-06-25T00:00:00.000Z", + "created_at": "2016-06-25T17:50:26.038Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 43920, + "metadata": {}, + "number": "0.41.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "9580eb20ce098b7a0c06730f92e07ff71da25b803b5a28580ea571b17422e008" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-05-09T00:00:00.000Z", + "created_at": "2016-05-09T17:45:53.078Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1467529, + "metadata": {}, + "number": "0.40.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "ddca83f353721240eb3563c2d9b5fb7e9928845058a6a49f23aab79d25ca83f6" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-03-27T00:00:00.000Z", + "created_at": "2016-03-27T11:16:21.158Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1640389, + "metadata": {}, + "number": "0.39.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "5600c0f7268778520598394cc9ceed69ca3df2a874f2881dfd1d17ba336427bb" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-03-09T00:00:00.000Z", + "created_at": "2016-03-09T15:10:05.281Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 642096, + "metadata": {}, + "number": "0.38.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "4094e2c4b9e0827191c55ab59fd8813e41f40f5c83717b5a143f108b4ac1fc61" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-02-11T00:00:00.000Z", + "created_at": "2016-02-11T12:50:57.031Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 879346, + "metadata": {}, + "number": "0.37.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "d65255d1f072bf737cef74c0cfca50de448bd8428644fa3c4e8880698856be2a" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-02-09T00:00:00.000Z", + "created_at": "2016-02-09T16:45:33.535Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 63285, + "metadata": {}, + "number": "0.37.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a1dbc993cd8c0f1afb90a913b4ef6fa83400809d2b30079a877f52358e498bcc" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-02-04T00:00:00.000Z", + "created_at": "2016-02-04T06:37:12.148Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 109834, + "metadata": {}, + "number": "0.37.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c8979d3c94088d7e7f38f412efb91a74b2b0c97b3eadf35d7d2645b676508ae1" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2016-01-14T00:00:00.000Z", + "created_at": "2016-01-14T18:22:21.651Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1273869, + "metadata": {}, + "number": "0.36.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "e613b68a72930726a8aab8fba7afffef0b162edaa67b271b491fd18c6c350fec" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-11-10T00:00:00.000Z", + "created_at": "2015-11-10T17:09:13.947Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1581127, + "metadata": {}, + "number": "0.35.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "4f0b3ce1e3f9e6bb2b1409a3c49dbf7e4a682b7b083ee5ff20d5cee6846a38bf" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-11-07T00:00:00.000Z", + "created_at": "2015-11-07T06:46:41.231Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 251983, + "metadata": {}, + "number": "0.35.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c7b4d9f1bfd1dfb4730519979f6fb283518b945ebe3bb7fc21b2a89ecb7979ff" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-09-21T00:00:00.000Z", + "created_at": "2015-09-21T14:50:42.260Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 1217737, + "metadata": {}, + "number": "0.34.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "d387d22b07c8ba54043d742ee7738dd31440808e371e86502e6d06fbf5d22b7a" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-09-09T00:00:00.000Z", + "created_at": "2015-09-09T11:29:19.149Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 143521, + "metadata": {}, + "number": "0.34.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "0d904489dca12ab4005c358d74057e197266a2571c9feafc15a37bbe3c3b13f8" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-09-05T00:00:00.000Z", + "created_at": "2015-09-05T05:06:00.263Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 60452, + "metadata": {}, + "number": "0.34.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "e704f43bc99114ca93d78cef7937d5a7aebde105613bf82ec86612a8efb44bc3" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-08-05T00:00:00.000Z", + "created_at": "2015-08-05T12:17:28.842Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 548358, + "metadata": {}, + "number": "0.33.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "8910c66466538d01d0abbf21aa099b15901e4fc9c20394cf1ba9ef9f357b4a8c" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-06-24T00:00:00.000Z", + "created_at": "2015-06-24T06:17:18.900Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 561841, + "metadata": {}, + "number": "0.32.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "fa2a1ea1a069436b991ce4d4c4c45682d1e9e83cc9e609dc181eb786e93641d5" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-06-06T00:00:00.000Z", + "created_at": "2015-06-06T09:02:54.433Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 209219, + "metadata": {}, + "number": "0.32.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "091830914416431bd8217855ccf2e23a82865519e97dbe309501184529efe25e" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-05-05T00:00:00.000Z", + "created_at": "2015-05-05T17:06:13.868Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 456628, + "metadata": {}, + "number": "0.31.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "f44b741edaa71337b8bce7a08e966630035a178034a4308de483e92cb02989e3" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-04-21T00:00:00.000Z", + "created_at": "2015-04-21T11:54:36.285Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 401984, + "metadata": {}, + "number": "0.30.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "f6fbe1c3236e4472365a7c726c2bf4c0f066b241dbecd274a3b296cc19dfbe50" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-04-06T00:00:00.000Z", + "created_at": "2015-04-06T15:38:28.162Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 262449, + "metadata": {}, + "number": "0.30.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "ac19d6befb873d5b16dd10f8000ed5b579708e3a883ba5140bc4c21ae5a93923" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-02-13T00:00:00.000Z", + "created_at": "2015-02-13T09:44:57.178Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 742162, + "metadata": {}, + "number": "0.29.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "fdef20af47f52e8130d39665fb5770fdc7cb72d9c5a5ba56078e0fe2c325f50c" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2015-02-05T00:00:00.000Z", + "created_at": "2015-02-05T20:28:53.282Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 68004, + "metadata": {}, + "number": "0.29.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "ed2b625e9884ff66a606f60d4b725f5bba747c05591c3dca0e426afd35f8135e" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2014-12-10T00:00:00.000Z", + "created_at": "2014-12-10T17:17:29.029Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 834333, + "metadata": {}, + "number": "0.28.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "8db05151c0af7fbb334d0326c587f6515380122a17ed726d0936dc16147cc41e" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2014-11-08T00:00:00.000Z", + "created_at": "2014-11-08T11:26:10.904Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 538084, + "metadata": {}, + "number": "0.27.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "e0f5190a96b82917bd2a15de027d252218830efdfee98bcca3cd3fd8a0e38d24" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2014-10-30T00:00:00.000Z", + "created_at": "2014-10-30T16:43:32.213Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 43545, + "metadata": {}, + "number": "0.27.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "5729bcce45721e6c9a9139e44df8c26872ff97927fa0df382ed82d1b932593e4" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2014-09-18T00:00:00.000Z", + "created_at": "2014-09-18T12:10:31.079Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 682520, + "metadata": {}, + "number": "0.26.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c49f376e77808c8b07578c3d4cdfb6c73f1fd530941ba724303a354498d2cabb" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2014-09-03T00:00:00.000Z", + "created_at": "2014-09-03T12:35:37.840Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 104118, + "metadata": {}, + "number": "0.26.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "773ed161beab33976b5760a2f5db27db3447726dd1389212c60668889f9e6091" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2014-08-15T00:00:00.000Z", + "created_at": "2014-08-15T11:19:31.470Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 83832, + "metadata": {}, + "number": "0.25.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.3", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "8ec2267e73031a0056e3cda5332d81774c3102acb8afb0ec5131f28de26dd662" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2014-07-03T00:00:00.000Z", + "created_at": "2014-07-03T11:40:30.994Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 242728, + "metadata": {}, + "number": "0.24.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "1c58201dcd9e9cb364a5865b71d29c1371379c3c6c6896d6aaef292d0468bc54" + }, + { + "authors": "Bozhidar Batsov, Jonas Arvidsson, Yuji Nakayama", + "built_at": "2014-06-25T00:00:00.000Z", + "created_at": "2014-06-25T06:50:13.105Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 39835, + "metadata": {}, + "number": "0.24.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "d27a16864c907fd7a1ea463c6cc4ccbda6671b12255e497fceaa080315f0c90d" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-06-02T00:00:00.000Z", + "created_at": "2014-06-02T12:19:23.545Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 220640, + "metadata": {}, + "number": "0.23.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "82de5ffe9e7acd0a4d5846fbad8805303cf7764955ccba375640ff9d6871a2f1" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-05-20T00:00:00.000Z", + "created_at": "2014-05-20T14:36:31.896Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 39153, + "metadata": {}, + "number": "0.22.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "888b5a1aba5991169ccb8ba81b9880ef1a190f431252c4174dbcd05c366dcb15" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-04-24T00:00:00.000Z", + "created_at": "2014-04-24T09:41:19.853Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 142745, + "metadata": {}, + "number": "0.21.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "93667e72149fd96897c5e410827dab5b260a95666549b7885d5b334b1eaadd1e" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-04-05T00:00:00.000Z", + "created_at": "2014-04-05T12:16:27.467Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 86007, + "metadata": {}, + "number": "0.20.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "42577cc435ac444c8f9fb8659c99721416b6046a3db499f6434464cd7cb09aa5" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-04-02T00:00:00.000Z", + "created_at": "2014-04-02T14:03:48.747Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 18550, + "metadata": {}, + "number": "0.20.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "1d9bf34022495497bafc86d30443ba5d9732553d3e966c26250956dc33431627" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-03-17T00:00:00.000Z", + "created_at": "2014-03-17T15:57:49.176Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 151169, + "metadata": {}, + "number": "0.19.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "271e424a97876d4c94ba07f8b65fc56356d19f1ae8b2c0ef4e767e970dafb352" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-03-13T00:00:00.000Z", + "created_at": "2014-03-13T16:07:32.092Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 11012, + "metadata": {}, + "number": "0.19.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "37f30df2bfabf7d2e66b6efcbbc6d646db9389c26e94bbc2fa86c1d8e62e563f" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-02-02T00:00:00.000Z", + "created_at": "2014-02-02T10:11:48.216Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 192852, + "metadata": {}, + "number": "0.18.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "a8e35b2f2b25cf5306866b821002f35b2c35d221598c1d376df8d497940ba253" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-01-30T00:00:00.000Z", + "created_at": "2014-01-30T16:11:12.247Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 15225, + "metadata": {}, + "number": "0.18.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "4b0e26be25eb9154938b665685aec57fc1b6956d825e7a05d17373bb4b729681" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2014-01-23T00:00:00.000Z", + "created_at": "2014-01-23T15:44:06.875Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 29793, + "metadata": {}, + "number": "0.17.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "529e1af94a20544424c6d7603ca62459acdfe10466503416a6eae5c0d3fb67e3" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-12-25T00:00:00.000Z", + "created_at": "2013-12-25T18:01:42.589Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 58430, + "metadata": {}, + "number": "0.16.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "c14fd2a1f918227e105be122e2500b62b94ef9ac454b2e01fc528bbd4da66aa0" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-11-06T00:00:00.000Z", + "created_at": "2013-11-06T14:55:07.694Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 58692, + "metadata": {}, + "number": "0.15.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "794a5f1839bac8bf728a44291598ba4040a90dd164878adb0d82c192dcd10279" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-10-10T00:00:00.000Z", + "created_at": "2013-10-10T09:22:35.405Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 62863, + "metadata": {}, + "number": "0.14.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "6e164c3d0a55e543012eb814e11b25c431d32a04393b6f86ebbad6d21a493f2c" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-10-07T00:00:00.000Z", + "created_at": "2013-10-07T11:55:17.164Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 7935, + "metadata": {}, + "number": "0.14.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "f5d16dd4e7e012b4414afc57691e6ae4902a96cd63f2a3462ac5ca5423a6c78e" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-09-19T00:00:00.000Z", + "created_at": "2013-09-19T11:17:32.222Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 30766, + "metadata": {}, + "number": "0.13.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "53a38480d2217ea4f0076485cc3eddb3baece8e69179e144177af38ab860e4f0" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-09-13T00:00:00.000Z", + "created_at": "2013-09-13T14:12:11.377Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 10433, + "metadata": {}, + "number": "0.13.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "693f24feec332394ff817e95c1d27000ab843802de02ee232c47711e497bddd2" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-08-23T00:00:00.000Z", + "created_at": "2013-08-23T08:20:14.993Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 23188, + "metadata": {}, + "number": "0.12.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "6935abc7d1cc704bf2c96646b1441270c3415ab8be1a7776686ff36ad3cd38bc" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-08-12T00:00:00.000Z", + "created_at": "2013-08-12T08:41:14.761Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 16191, + "metadata": {}, + "number": "0.11.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "8b8155e9b786c8e2bb8699875c4351e50b093b9dced4097d1be176b426306981" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-08-09T00:00:00.000Z", + "created_at": "2013-08-09T14:44:40.288Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 4866, + "metadata": {}, + "number": "0.11.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": [], + "sha": "edf8fcf8682ccdbf9ff65e4365fcba0f203777471f6afdb58f31a5327881636d" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-07-17T00:00:00.000Z", + "created_at": "2013-07-17T18:38:32.352Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 15120, + "metadata": {}, + "number": "0.10.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "5542215006b235d0ade4dda74b23d5d22d47cad02100a0e31bb097d80d7c8431" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-07-05T00:00:00.000Z", + "created_at": "2013-07-05T15:13:09.528Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 9832, + "metadata": {}, + "number": "0.9.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "cea12e9561a37ca065cd05c613735406fe8ff86d9015cc80cb02d8f9fc4c3131" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-07-01T00:00:00.000Z", + "created_at": "2013-07-01T12:57:41.924Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 13512, + "metadata": {}, + "number": "0.9.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "846a289554c4716fd4ff3f890a954ecce2895a9a6e913d4617f21dea5f522361" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-06-18T12:41:29.955Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 9589, + "metadata": {}, + "number": "0.8.3", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "30178ff21ee90e5e760c7ea40f448c46efab17c5ab9263e4f9df470d8ef008e3" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-06-05T11:46:36.612Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 6282, + "metadata": {}, + "number": "0.8.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "a853697357734fa301a3594bcc457b068be4056fe19cc420abe68531a771936c" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-05-30T08:11:17.673Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 5210, + "metadata": {}, + "number": "0.8.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "7d008670bf5a3aa378e78ea78024670bd83f38b188c82b1b64d1858ab5d6cf29" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-05-28T09:06:01.240Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 5239, + "metadata": {}, + "number": "0.8.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "2e7d746c66b0c8d3ab9d1ed9c3ccb827b8c4325cb8ea835d8becec870be2b70f" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-05-13T07:00:10.330Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 10079, + "metadata": {}, + "number": "0.7.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "36c0574cc728e120e593fcf84fa0a01a36aa948096cdccdbd9f3eb3f9a0d3011" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-05-11T12:01:12.103Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3841, + "metadata": {}, + "number": "0.7.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "5a8fb4c2cb9270b9fc5c325d8bb7f556233e472a82d1b02ab8501041c7c35d16" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-05-11T05:40:16.929Z", + "description": " Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide. ", + "downloads_count": 3824, + "metadata": {}, + "number": "0.7.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "3a9096d62151fb4dffebc3fd2f672b238172af945890156923ffc60ebe1eef7a" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-04-28T12:44:09.481Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 5232, + "metadata": {}, + "number": "0.6.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "2cc2d86791a143c791ac99b566d99e920873d086e7b7a9daed69fe5546d4dad6" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-04-23T11:23:04.364Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 4740, + "metadata": {}, + "number": "0.6.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": ">= 1.9.2", + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "53702a3cd38c916ab3b57e2a84a5a1af68350dedd83e1b5f5a2dfd786612789a" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-17T00:00:00.000Z", + "created_at": "2013-04-17T15:09:32.991Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 10704, + "metadata": {}, + "number": "0.5.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "3ba57b2986af5eb7521aa4f5b4fbc2b6b9b5177b398eecee02bbb1411983d7a6" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-15T00:00:00.000Z", + "created_at": "2013-04-15T13:21:26.422Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 4654, + "metadata": {}, + "number": "0.4.6", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "714b451a1e3cdc7e11e407c06028e3cad0d77c74aa5f1ba623029d2d12c1eca7" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-15T00:00:00.000Z", + "created_at": "2013-04-15T13:18:31.196Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 3670, + "metadata": {}, + "number": "0.4.5", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "e95b05fa17998d7eb195244d8be36d836f28b60d23cd754349684309a5cd7999" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-14T00:00:00.000Z", + "created_at": "2013-04-14T14:26:04.168Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 3806, + "metadata": {}, + "number": "0.4.4", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "aeacff29f694b02465fbff9c089f3bb57c2f27d15734935764e14d3beadfce7b" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-14T00:00:00.000Z", + "created_at": "2013-04-14T06:10:31.699Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 3777, + "metadata": {}, + "number": "0.4.3", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "81c55e8dae6e379f92ea47898daf0e138ba9d84102225e26a82fa9d51f75e4ec" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-13T00:00:00.000Z", + "created_at": "2013-04-13T19:20:43.281Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 3725, + "metadata": {}, + "number": "0.4.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "a4086d3db38c363a0143a8d4ff7b00f03eb91ddc01081604b9812524d50d5991" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-13T00:00:00.000Z", + "created_at": "2013-04-13T11:20:04.189Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 3694, + "metadata": {}, + "number": "0.4.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "7173b29a39b02640c4ce5d9b285527978b5f256056b3f85c0f33c894ad476570" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-11T00:00:00.000Z", + "created_at": "2013-04-11T09:45:55.167Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 4244, + "metadata": {}, + "number": "0.4.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "ce4270b896e61800e286def6324c8d471cc13185cc9270ebe98b9390da0ba480" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-04-06T00:00:00.000Z", + "created_at": "2013-04-06T17:24:51.540Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 3761, + "metadata": {}, + "number": "0.3.2", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "d3c2ae557b75d78c05624c51fc2ce6e42e41102da11323f164f25581f82a5d4b" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-02-28T00:00:00.000Z", + "created_at": "2013-02-28T20:45:07.073Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 10188, + "metadata": {}, + "number": "0.3.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "10be88926012cf90ecb86e1289252fd0cd4fd7973e7c34854d03ced3f219f68e" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-02-11T00:00:00.000Z", + "created_at": "2013-02-11T15:55:45.093Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 4112, + "metadata": {}, + "number": "0.3.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "a54c7d286347e81af34c0381aa41bd5bfeba13f19d27fdd7b6fc9d81a18faf65" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-01-12T00:00:00.000Z", + "created_at": "2013-01-12T15:56:50.441Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 4080, + "metadata": {}, + "number": "0.2.1", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "7c6fb4f739334b6ab3312b8efe99dc8e8c4ec4965657146287d25f82f4e0459e" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2013-01-02T00:00:00.000Z", + "created_at": "2013-01-02T19:42:27.672Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 3869, + "metadata": {}, + "number": "0.2.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "b4f367fbe644fc6947c07172b7a0a022c726efb5efcfa3390dd1c69e6ee808cc" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2012-12-20T00:00:00.000Z", + "created_at": "2012-12-20T09:56:20.974Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 11113, + "metadata": {}, + "number": "0.1.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": [ + "MIT" + ], + "requirements": null, + "sha": "68930de9ca68b1efbe8c39c7835b818bfed303c0b13fdd9682b5d2b0f170310c" + }, + { + "authors": "Bozhidar Batsov", + "built_at": "2012-05-03T00:00:00.000Z", + "created_at": "2012-05-03T12:36:58.944Z", + "description": "Automatic Ruby code style checking tool. Aims to enforce the community-driven Ruby Style Guide.", + "downloads_count": 4130, + "metadata": {}, + "number": "0.0.0", + "summary": "Automatic Ruby code style checking tool.", + "platform": "ruby", + "rubygems_version": ">= 0", + "ruby_version": null, + "prerelease": false, + "licenses": null, + "requirements": null, + "sha": "4d4405e8735e7cc4f310c02eb0085f394f5c235ff6777dfd4cc0e36ba1e5b94f" + } +] \ No newline at end of file diff --git a/tests/test_package.py b/tests/test_package.py index eb65f2e3..d55b9bce 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -28,10 +28,26 @@ def file_data(file_name): return json.loads(data) +def create_tests(packages, path): + """ + Helper function for Creating test files. + Takes in list(info(purl)) and path of the test_file. + """ + test_data = {} + index = 0 + test_file = open(path, "w") + for package in packages: + test_data[index] = dict(package.to_dict()) + index += 1 + test_file.write(json.dumps(test_data)) + test_file.close() + + def match_data(packages, expected_data): data = [dict(p.to_dict()) for p in packages] expected_data_dict = dict(expected_data) expected_data = [dict(expected_data_dict[p]) for p in expected_data_dict] + print(p for p in expected_data_dict) assert expected_data == data @@ -91,7 +107,6 @@ def test_bitbucket_packages(mock_get): match_data(packages, expected_data) -# @mock.patch("fetchcode.package.get_response") @mock.patch("fetchcode.package.get_response") def test_rubygems_packages(mock_get): side_effect = [ From a3d617a1afd400c0c4cb1587c6ea66afca2fb7c9 Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 23 Dec 2022 22:53:50 +0530 Subject: [PATCH 6/9] Test files path rollback. Signed-off-by: Jay --- tests/test_package.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_package.py b/tests/test_package.py index d55b9bce..03190932 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -73,9 +73,9 @@ def test_npm_packages(mock_get): @mock.patch("fetchcode.package.get_response") def test_pypi_packages(mock_get): - side_effect = [file_data("./data/pypi_mock_data.json")] + side_effect = [file_data("test/data/pypi_mock_data.json")] purl = "pkg:pypi/flask" - expected_data = file_data("./data/pypi.json") + expected_data = file_data("test/data/pypi.json") mock_get.side_effect = side_effect packages = list(info(purl)) match_data(packages, expected_data) @@ -110,11 +110,11 @@ def test_bitbucket_packages(mock_get): @mock.patch("fetchcode.package.get_response") def test_rubygems_packages(mock_get): side_effect = [ - file_data("data/rubygems_mock_data.json"), - file_data("data/rubygems_mock_data_versions.json") + file_data("tests/data/rubygems_mock_data.json"), + file_data("tests/data/rubygems_mock_data_versions.json") ] purl = "pkg:rubygems/rubocop" - expected_data = file_data("data/rubygems.json") + expected_data = file_data("tests/data/rubygems.json") mock_get.side_effect = side_effect packages = list(info(purl)) match_data(packages, expected_data) From 071fb34b3843872fb4ee7698cbbee04ec8a26096 Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 23 Dec 2022 22:58:49 +0530 Subject: [PATCH 7/9] Test files path rollback. Signed-off-by: Jay --- tests/test_package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_package.py b/tests/test_package.py index 03190932..2c1e9650 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -73,9 +73,9 @@ def test_npm_packages(mock_get): @mock.patch("fetchcode.package.get_response") def test_pypi_packages(mock_get): - side_effect = [file_data("test/data/pypi_mock_data.json")] + side_effect = [file_data("tests/data/pypi_mock_data.json")] purl = "pkg:pypi/flask" - expected_data = file_data("test/data/pypi.json") + expected_data = file_data("tests/data/pypi.json") mock_get.side_effect = side_effect packages = list(info(purl)) match_data(packages, expected_data) From a35b4307cb5d09187407b9e197d7eb6d775b8e7f Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Tue, 3 Jan 2023 12:09:47 +0530 Subject: [PATCH 8/9] Renaming variables to avoid confusion. Signed-off-by: Jay --- src/fetchcode/package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fetchcode/package.py b/src/fetchcode/package.py index 75f4f75d..c07744d0 100644 --- a/src/fetchcode/package.py +++ b/src/fetchcode/package.py @@ -313,7 +313,7 @@ def get_rubygems_data_from_purl(purl): response = get_response(api_url) declared_license = response.get("licenses") or None version = response.get("version") - version_purl = PackageURL( + new_purl = PackageURL( type=purl.type, name=name, version=version ) homepage_url = response.get("homepage_uri") @@ -329,7 +329,7 @@ def get_rubygems_data_from_purl(purl): declared_license=declared_license, download_url=download_url, release_date=release_date, - **version_purl.to_dict() + **new_purl.to_dict() ) releases_url = f"https://rubygems.org/api/v1/versions/{name}.json" From c2bb0b3a650cdeff06098e058482ef245ec18264 Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Mon, 16 Jan 2023 18:48:56 +0530 Subject: [PATCH 9/9] Removed print statements Signed-off-by: Jay --- tests/test_package.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_package.py b/tests/test_package.py index 2c1e9650..636893a1 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -47,7 +47,6 @@ def match_data(packages, expected_data): data = [dict(p.to_dict()) for p in packages] expected_data_dict = dict(expected_data) expected_data = [dict(expected_data_dict[p]) for p in expected_data_dict] - print(p for p in expected_data_dict) assert expected_data == data