{"id":15998432,"url":"https://github.com/kazucocoa/anticuado","last_synced_at":"2025-03-18T01:31:32.078Z","repository":{"id":62553326,"uuid":"69475501","full_name":"KazuCocoa/anticuado","owner":"KazuCocoa","description":"Collect and arrange outdated libraries for various platforms such as Ruby/iOS/Android/Elixir","archived":false,"fork":false,"pushed_at":"2020-08-01T14:43:08.000Z","size":109,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-16T12:16:42.453Z","etag":null,"topics":["android","cocoapods","elixir","gradle","ios","outdated-libraries","ruby"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KazuCocoa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-09-28T15:10:02.000Z","updated_at":"2020-08-01T14:43:10.000Z","dependencies_parsed_at":"2022-11-03T04:30:32.266Z","dependency_job_id":null,"html_url":"https://github.com/KazuCocoa/anticuado","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KazuCocoa%2Fanticuado","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KazuCocoa%2Fanticuado/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KazuCocoa%2Fanticuado/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KazuCocoa%2Fanticuado/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KazuCocoa","download_url":"https://codeload.github.com/KazuCocoa/anticuado/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244139215,"owners_count":20404474,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","cocoapods","elixir","gradle","ios","outdated-libraries","ruby"],"created_at":"2024-10-08T08:08:46.694Z","updated_at":"2025-03-18T01:31:31.760Z","avatar_url":"https://github.com/KazuCocoa.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Anticuado\n\nThis library collect __outdated__ libraries for each platforms. [Here](https://github.com/KazuCocoa/anticuado-example) is example how to use this library.\nAnd [this travis project](https://travis-ci.org/KazuCocoa/anticuado-example) is just sample how to run this and the output.\n\n\n## Support\n- Java\n    - Gradle\n- iOS\n    - CocoaPods\n    - Carthage\n- Ruby\n    - Bundler\n- Elixir\n    - Hex\n- JavaScript\n    - npm\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'anticuado'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install anticuado\n\n## Usage\n\nThis library's results are like the following format:\n\n```ruby\n[\n  {\n    library_name: \"AFNetworking\",\n    current_version: \"2.5.0\",\n    available_version: \"3.1.0\",\n    latest_version: \"3.1.0\"\n  },\n  {\n    library_name: \"OHHTTPStubs\",\n    current_version: \"4.1.0\",\n    available_version: \"5.0.0\",\n    latest_version: \"5.0.0\"\n  }\n]\n```\n\n### iOS\n#### CocoaPods\n1. install `cocoadpos`. Read [official document](https://cocoapods.org/).\n2. Run as the following script.\n\n```ruby\nrequire \"anticuado\"\n\ncocoadpos = ::Anticuado::IOS::CocoaPods.new \"path/to/project\"\noutdated = cocoadpos.outdated \ncocoadpos.format outdated\n```\n\n#### Carthage\n1. install `carthage`. Read [official document](https://github.com/Carthage/Carthage).\n2. Run as the following script.\n\n```ruby\nrequire \"anticuado\"\n\ncarthage = ::Anticuado::IOS::Carthage.new \"path/to/project\"\noutdated = carthage.outdated\ncarthage.format outdated\n```\n\n### Android\n#### Gradle\n\nThis library require the following plugin to collect library versions.\nhttps://github.com/ben-manes/gradle-versions-plugin\n\n1. install `gradle` or set gradle wrapper, `gradlew`. Read [official document](https://gradle.org/).\n2. Run as the following script.\n\n```ruby\nrequire \"anticuado\"\n\ngradle = ::Anticuado::Java::Gradle.new \"path/to/project\" \ngradle.outdated # Writes the result to \"build/dependencyUpdates\" by defaylt\noutdated = gradle.parse_json \"build/dependencyUpdates\"\ngradle.format outdated\n```\n\n### Elixir\n#### Hex\n1. install `mix`. Read [official document](http://elixir-lang.org/install.html).\n2. Run as the following script.\n\n```ruby\nrequire \"anticuado\"\n\nhex = ::Anticuado::Elixir::Hex.new \"path/to/project\"\noutdated = hex.outdated \nhex.format outdated\n```\n\n### Ruby\n#### Bundler\n1. install `bundler`. Read [official document](http://bundler.io/).\n2. Run as the following script.\n\n```ruby\nrequire \"anticuado\"\n\nbundler = ::Anticuado::Ruby::Bundler.new \"path/to/project\"\noutdated = bundler.outdated \nbundler.format outdated\n```\n\n## In advance\n- Create a PR automatically to update libraries\n    - See test/anticuado/git_test.rb\n\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/Kazu_cocoa/anticuado. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.\n\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkazucocoa%2Fanticuado","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkazucocoa%2Fanticuado","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkazucocoa%2Fanticuado/lists"}