├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile └── docs ├── assignments.md ├── forks.md ├── index.md ├── private_repos.md ├── repository_setup.md └── sandboxing.md /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.0.0 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/Rakefile -------------------------------------------------------------------------------- /docs/assignments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/docs/assignments.md -------------------------------------------------------------------------------- /docs/forks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/docs/forks.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/private_repos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/docs/private_repos.md -------------------------------------------------------------------------------- /docs/repository_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/docs/repository_setup.md -------------------------------------------------------------------------------- /docs/sandboxing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github-education-resources/guide/HEAD/docs/sandboxing.md --------------------------------------------------------------------------------