{"id":13463102,"url":"https://github.com/ruby-ore/ore","last_synced_at":"2025-03-25T06:31:31.590Z","repository":{"id":1140931,"uuid":"1021536","full_name":"ruby-ore/ore","owner":"ruby-ore","description":"Mine beautiful RubyGems from Ore","archived":false,"fork":false,"pushed_at":"2018-06-09T10:34:09.000Z","size":752,"stargazers_count":240,"open_issues_count":16,"forks_count":27,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-10-29T13:50:23.505Z","etag":null,"topics":[],"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/ruby-ore.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2010-10-25T06:42:54.000Z","updated_at":"2024-10-19T18:23:30.000Z","dependencies_parsed_at":"2022-08-06T10:15:32.814Z","dependency_job_id":null,"html_url":"https://github.com/ruby-ore/ore","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruby-ore%2Fore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruby-ore%2Fore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruby-ore%2Fore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ruby-ore%2Fore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ruby-ore","download_url":"https://codeload.github.com/ruby-ore/ore/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245413856,"owners_count":20611353,"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":[],"created_at":"2024-07-31T13:00:46.016Z","updated_at":"2025-03-25T06:31:31.234Z","avatar_url":"https://github.com/ruby-ore.png","language":"Ruby","funding_links":[],"categories":["Developer Tools","Ruby"],"sub_categories":["Gem Creation"],"readme":"# Ore\n\n* [Source](https://github.com/ruby-ore/ore)\n* [Issues](https://github.com/ruby-ore/ore/issues)\n* [Documentation](http://rubydoc.info/gems/ore/frames)\n* [Email](mailto:postmodern.mod3 at gmail.com)\n\n## Description\n\nOre is a fully configurable and customisable Ruby gem generator. With Ore, you\nspend less time editing files and more time writing code.\n\n## Features\n\n### SCMs\n\nOre supports generating [Git][git] (default), [Mercurial][hg] and using\n[SubVersion][svn] repositories:\n\n    $ mine my-project [--git | --hg]\n\n### Licenses\n\nOre supports generating MIT (default), BSD, Apache 2.0, GPLv3 or LGPLv3\nlicenses:\n\n    $ mine my-project [--mit | --bsd | --apache | --gpl | --lgpl]\n\n### Testing\n\nOre supports generating [RSpec][rspec] (default), [Minitest][minitest] or\n[Test::Unit][test_unit] tests:\n\n    $ mine my-project [--test-unit | --minitest | --rspec]\n\n### TravisCI\n\nOre also supports generating a [`.travis.yml`][travis.yml] file and README\nbadge:\n\n    $ mine my-project --travis\n\n### Code Climate\n\nOre also supports adds Code Climate GPA badges:\n\n    $ mine my-project --code-climate\n\n### Documentation\n\nOre supports generating projects with [RDoc][rdoc] (default) or [YARD][yard]\ndocumentation:\n\n    $ mine my-project [--rdoc | --yard]\n\nOre also supports [Markdown][markdown] (default), [Textile][textile] and\n[RDoc][rdoc] markups:\n\n    $ mine my-project --yard [--rdoc | --markdown | --textile]\n\n### Bundler\n\nOre supports [Bundler][bundler] by default. If you do not need bundler, you may\ndisable it:\n\n    $ mine my-project --no-bundler\n\n### Gem Tasks\n\nOre supports generating `Rakefile`s using [rubygems/tasks][rubygems_tasks]\n(default), [bundler/gem_tasks][bundler] or even\n[Gem::PackageTask][gem_package_task]:\n\n    $ mine my-project [--rubygems-tasks | --bundler-tasks  | --gem-package-task]\n\n### Gemspecs\n\nOre generates a minimal pure-Ruby gemspec by default:\n\n    $ mine my-project\n\nOre also supports generating a [gemspec.yml] file:\n\n    $ mine my-project --gemspec-yml\n\nGemspec files support listing files from Git, Hg and SubVersion. If the project\nuses Git submodules, the gemspecs will automatically include files from the\nsubmodules.\n\n### Custom Templates\n\nAdditional templates can also be installed from Git:\n\n    $ ore install git://github.com/ruby-ore/rbenv.git\n    $ mine my-project --rbenv\n\n## Requirements\n\n* [ruby] \u003e= 1.9.1\n* [thor] ~\u003e 0.15\n\n## Install\n\n    $ gem install ore\n\n## Synopsis\n\nGenerate a new project:\n\n    $ mine my_project\n\nGenerate a new customized project:\n\n    $ mine my_project --bundler --rspec --yard\n\nGenerate a new project using previously installed templates:\n\n    $ mine my_project --bundler --rspec --yard --templates rbenv\n\nSet your github username, so `mine` can generate GitHub project URLs:\n\n    $ git config github.user foobar\n    $ mine my_project\n\nInstall a custom template:\n\n    $ ore install git://github.com/ruby-ore/rbenv.git\n\nList installed templates:\n\n    $ ore list\n\nRemove a previously installed template:\n\n    $ ore remove rbenv\n\nAdd default generator options to `~/.ore/options.yml`:\n\n    gemspec_yml:    true\n    rubygems_tasks: true\n    rspec:          true\n    yard:           true\n    markdown:       true\n    authors:\n      - Alice\n    email: alice@example.com\n\n## License\n\nCopyright (c) 2010-2015 Hal Brodigan\n\nSee {file:LICENSE.txt} for license information.\n\n[git]: http://git-scm.com/\n[hg]: http://mercurial.selenic.com/\n[svn]: http://subversion.tigris.org/\n[gemspec.yml]: https://github.com/ruby-ore/ore/blob/master/gemspec.yml\n[rubygems_tasks]: https://github.com/postmodern/rubygems-tasks#readme\n[bundler]: http://gembundler.com/\n[gem_package_task]: http://rubygems.rubyforge.org/rubygems-update/Gem/PackageTask.html\n[rdoc]: http://rdoc.rubyforge.org/\n[markdown]: http://daringfireball.net/projects/markdown/\n[textile]: http://textile.sitemonks.com/\n[yard]: http://yardoc.org/\n[rspec]: http://rspec.info/\n[test_unit]: http://test-unit.rubyforge.org/\n[minitest]: https://github.com/seattlerb/minitest#readme\n[travis.yml]: http://docs.travis-ci.com/user/languages/ruby/\n\n[ruby]: https://www.ruby-lang.org/\n[thor]: https://github.com/wycats/thor#readme\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruby-ore%2Fore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fruby-ore%2Fore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fruby-ore%2Fore/lists"}