{"id":13819187,"url":"https://github.com/rubymonsters/diversity_ticketing","last_synced_at":"2026-02-07T13:03:52.642Z","repository":{"id":34663273,"uuid":"38634836","full_name":"rubymonsters/diversity_ticketing","owner":"rubymonsters","description":"An app to make diversifying conferences easier!","archived":false,"fork":false,"pushed_at":"2023-01-19T11:01:20.000Z","size":4169,"stargazers_count":49,"open_issues_count":38,"forks_count":25,"subscribers_count":23,"default_branch":"master","last_synced_at":"2024-08-05T08:07:48.437Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://diversitytickets.org","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/rubymonsters.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-06T17:34:30.000Z","updated_at":"2024-01-24T23:38:37.000Z","dependencies_parsed_at":"2023-02-10T22:45:35.189Z","dependency_job_id":null,"html_url":"https://github.com/rubymonsters/diversity_ticketing","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/rubymonsters%2Fdiversity_ticketing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubymonsters%2Fdiversity_ticketing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubymonsters%2Fdiversity_ticketing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubymonsters%2Fdiversity_ticketing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rubymonsters","download_url":"https://codeload.github.com/rubymonsters/diversity_ticketing/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225405559,"owners_count":17469369,"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-08-04T08:00:41.915Z","updated_at":"2026-02-07T13:03:52.616Z","avatar_url":"https://github.com/rubymonsters.png","language":"Ruby","funding_links":[],"categories":["Happy Exploring 🤘"],"sub_categories":[],"readme":"[Travis says](https://travis-ci.org/rubymonsters/diversity_ticketing): [![Build Status](https://travis-ci.org/rubymonsters/diversity_ticketing.svg?branch=master)](https://travis-ci.org/rubymonsters/diversity_ticketing)\n\nThis is a Ruby on Rails app made by the RubyMonstas (a RailsGirls study group based in Berlin), to make diversifying conferences easier.\n\nSupported by the [Travis Foundation](http://foundation.travis-ci.org/).\n\n## Contributing workflow\nIf you want to contribute, you can look at the [open issues](https://github.com/rubymonsters/diversity_ticketing/issues). We are happy to answer your questions if you consider to help.\n\nIf you have other ideas to enhance the site, or if you've found a bug, feel free to open an [issue](https://github.com/rubymonsters/diversity_ticketing/issues)!\n\nHere’s how we suggest you go about proposing a change to this project:\n\n1. [Fork this project][fork] to your account.\n2. [Create a branch][branch] for the change you intend to make.\n3. Make your changes to your fork.\n4. Test your changes. To run the tests `bundle exec rake`\n5. [Send a pull request][pr] from your fork’s branch to our `master` (or `staging`) branch.\n  (We created a `staging` branch that contains latest updates in order to keep the `master` branch clean and up to date with production. The `staging` branch can then be merged to `master` for deployment. Therefore, ideally your pull request merges to staging first.)\n    - For bonus points, include screenshots in the description.\n\nUsing the web-based interface to make changes is fine too, and will help you\nby automatically forking the project and prompting to send a pull request.\n\n[fork]: https://help.github.com/articles/fork-a-repo/\n[branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository\n[pr]: https://help.github.com/articles/using-pull-requests/\n\n## Build setup\nThis following text describes how to set up your workstation to develop for [diversity tickets](https://diversitytickets.org).\n\n1. Check that you have the correct ruby version:\n  1. open a new Terminal window\n  1. `ruby --version  # --\u003e ruby 2.4.3`\n1. Install bundler by running `gem install bundler`\n1. Run `bundle install` to install the dependencies specified in your Gemfile\n1. Postgresql setup\n  1. for OS X:\n    1. in your terminal, run:\n      1. `createuser -s pguser`\n      1. `psql postgres`\n      1. postgresql console is now opened.\n        1. Enter `\\password pguser`\n        1. Enter the password `pguser_password` (twice)\n    1. when done, quit the postgresql console with `\\q`\n  1. for Ubuntu:\n    1. in your terminal, run:\n      1. `sudo -u postgres createuser -s pguser`\n      1. `sudo -u postgres psql`\n      1. postgresql console is now opened.\n        1. Enter `\\password pguser`\n        1. Enter the password `pguser_password` (twice)\n    1. when done, quit the postgresql console with `\\q`\n1. Update the config/database.yml\n  1. add this to the default group: \u003cbr\u003e\n        host: localhost \u003cbr\u003e\n        username: pguser \u003cbr\u003e\n        password: pguser_password \u003cbr\u003e\n  1. Change the names of the databases to: \u003cbr\u003e\n        diversity_ticketing_development \u003cbr\u003e\n        diversity_ticketing_test \u003cbr\u003e\n        diversity_ticketing_production \u003cbr\u003e\n1. Run `rake db:create` to create the database.\n\n## Translate the app\nIf you want to contribute to Diversity Tickets by translating the app into your language, [here are some indications on how to proceed](https://github.com/rubymonsters/diversity_ticketing/wiki/Do-you-want-to-translate-Diversity-Tickets-to-your-own-language%3F-Here-are-some-indications:)\n\n## License\n[MIT](https://github.com/rubymonsters/diversity_ticketing/blob/master/LICENSE.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubymonsters%2Fdiversity_ticketing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubymonsters%2Fdiversity_ticketing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubymonsters%2Fdiversity_ticketing/lists"}