All Projects → 24pullrequests → 24pullrequests

24pullrequests / 24pullrequests

Licence: mit
🎄 Giving back to open source for the holidays

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to 24pullrequests

Mergify Engine
Engine for Mergify
Stars: ✭ 189 (-85.35%)
Mutual labels:  pull-requests, opensource
hacktoberfest20
Participate in Hacktoberfest by contributing to any Open Source project on GitHub! Here is a starter project for first-time contributors. #hacktoberfest20. Don’t forget to read the README.md for guidance.
Stars: ✭ 18 (-98.6%)
Mutual labels:  opensource, pull-requests
Hacktoberfest2020
Make your first Pull Request and earn a free tee from GitHub!
Stars: ✭ 1,141 (-11.55%)
Mutual labels:  pull-requests, opensource
Kit
Stars: ✭ 73 (-94.34%)
Mutual labels:  opensource
Insert
A (potentially) great code editor for iOS, targeting the iPad. Likely written in Swift.
Stars: ✭ 74 (-94.26%)
Mutual labels:  opensource
Ritchie Formulas
This repository contains the community formulas that can be executed through Ritchie CLI once imported. This tool is an open source product that allows you to create, store and share any kind of automations, executing them through command lines, to run operations or start workflows ⚙️ 🖥 💡
Stars: ✭ 84 (-93.49%)
Mutual labels:  opensource
Vkbot
Простой разговорный бот на PHP
Stars: ✭ 88 (-93.18%)
Mutual labels:  opensource
Taskell
Command-line Kanban board/task manager with support for Trello boards and GitHub projects
Stars: ✭ 1,175 (-8.91%)
Mutual labels:  opensource
Cidram
CIDRAM: Classless Inter-Domain Routing Access Manager.
Stars: ✭ 86 (-93.33%)
Mutual labels:  opensource
Google cursor
🍭 Cursor theme inspired on Google
Stars: ✭ 78 (-93.95%)
Mutual labels:  opensource
Baralga
Baralga open-source time tracker for the desktop.
Stars: ✭ 77 (-94.03%)
Mutual labels:  opensource
Shodanz
🔭 A modern, async Ruby gem for Shodan, the world's first search engine for Internet-connected devices.
Stars: ✭ 74 (-94.26%)
Mutual labels:  opensource
It resource exchange app
IT换换官方客户端
Stars: ✭ 84 (-93.49%)
Mutual labels:  opensource
Plass
Protein-Level ASSembler (PLASS): sensitive and precise protein assembler
Stars: ✭ 74 (-94.26%)
Mutual labels:  opensource
Flutter Gitconnect
A Github mobile app built in flutter
Stars: ✭ 87 (-93.26%)
Mutual labels:  opensource
Botwiki.org
Tutorials, articles, datasets and other resources for creating useful, interesting, artistic and friendly online bots.
Stars: ✭ 72 (-94.42%)
Mutual labels:  opensource
Opencode Collaborative
Best place to start Open Source and learn development.
Stars: ✭ 85 (-93.41%)
Mutual labels:  opensource
Rduinoscope
rDUINOScope - Arduino based telescope control system (GOTO)
Stars: ✭ 75 (-94.19%)
Mutual labels:  opensource
Image To Xls
A simple tool to make ascii art from an image using excel colored cells.
Stars: ✭ 75 (-94.19%)
Mutual labels:  opensource
Jbpm
a Business Process Management (BPM) Suite
Stars: ✭ 1,226 (-4.96%)
Mutual labels:  opensource

24 Pull Requests

Build Status Gitter chat

🎄 Giving back little gifts of code

24 Pull Requests is a yearly initiative to encourage contributors around the world to send 24 pull requests between December 1st and December 24th.

This is the site to help promote the project, highlighting why, how and where to send your pull requests.

Table of Contents

Get started

Contributors

Over 180 different people have contributed to the project, you can see them all here: https://github.com/24pullrequests/24pullrequests/graphs/contributors

Development

The source is hosted at GitHub. You can report issues/feature requests on GitHub Issues. Follow the project on Twitter @24pullrequests. People from this community also often hangout on Gitter.

These instructions are for working on the the 24pullrequests.com website. If you just want to be a developer who contributes PRs during the holidays, you don't need to follow these instructions! Go to https://24pullrequests.com and get involved there.

Getting Started

Want to hack on the website? Awesome!

New to Ruby? No worries! You can follow these instructions to install a local server, or you can use the included Vagrant setup.

Installing a Local Server

First things first, you'll need to install Ruby 2.7.2. I recommend using the excellent rbenv, and ruby-build.

rbenv install 2.7.2
rbenv global 2.7.2

Next, you'll need to make sure that you have PostgreSQL installed. This can be done easily on OSX using Homebrew or by using http://postgresapp.com. Please see these further instructions for installing Postgres via Homebrew.

brew install postgres
brew cask install phantomjs

On Debian-based Linux distributions you can use apt-get to install Postgres:

sudo apt-get install postgresql postgresql-contrib libpq-dev

On Windows, you can use the Chocolatey package manager to install Postgres:

choco install postgresql

Clone this repository:

git clone [email protected]:24pullrequests/24pullrequests.git

Now, let's install the gems from the Gemfile ("Gems" are synonymous with libraries in other languages).

gem install bundler && rbenv rehash
bundle install

Once all the gems are installed, we'll need to create the databases and tables. Rails makes this easy through the use of "Rake" tasks.

bundle exec rake db:create:all
bundle exec rake db:migrate

And we can also add some sample data with the seed task.

bundle exec rake db:seed

If you are working on anything related to the email-generation code, you can use MailCatcher. Since we use Bundler, please read the following before using MailCatcher.

Almost there! Now all we have to do is start up the Rails server and point our browser to http://localhost:3000

bundle exec rails s

Tests

Standard RSpec/Capybara tests are used for testing the application. The tests can be run with bundle exec rake.

You can set up the test environment with bundle exec rake db:test:prepare, which will create the test DB and populate its schema automatically. You don't need to do this for every test run, but it will let you easily keep up with migrations. If you find a large number of tests are failing you should probably run this.

If you are using the omniauth environment variables (GITHUB_KEY, GITHUB_SECRET, TWITTER_KEY, TWITTER_SECRET) for another project, you will need to either

  • unset them before running your tests or
  • reset the omniauth environment variables after creating a GitHub (omniauth) application for this project

as it will use it to learn more about the contributors and for pull requests.

Contributing

We are always looking for people to contribute! To find out how to help out, have a look at our Contributing Guide.

Translations

24 Pull Requests is available in twenty languages. Translations are managed on Transifex. Authentication is required to use Transifex. If you prefer to edit the translations directly you can use the standard Rails i18n framework. To get started:

  • Fork the project.
  • Create a copy of config/locales/en.yml within the locales folder.
  • Amend the first line with the correct character set you'll be translating to.
  • Translate the strings and submit a pull request for the new translation.

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

Copyright

Copyright MIT © 2018 Andrew Nesbitt. See LICENSE for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].