diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9ce2718..fd72216 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,20 +1,20 @@ # Contributing to Grape-Swagger -This project is work of [many contributors](https://github.com/jrhe/grape-active_model_serializers/graphs/contributors). -You're encouraged to submit [pull requests](https://github.com/jrhe/grape-active_model_serializers/pulls), -[propose features and discuss issues](https://github.com/jrhe/grape-active_model_serializers/issues). +This project is work of [many contributors](https://github.com/ruby-grape/grape-active_model_serializers/graphs/contributors). +You're encouraged to submit [pull requests](https://github.com/ruby-grape/grape-active_model_serializers/pulls), +[propose features and discuss issues](https://github.com/ruby-grape/grape-active_model_serializers/issues). When in doubt, ask a question in the [Grape Google Group](http://groups.google.com/group/ruby-grape). In the examples below, substitute your Github username for `contributor` in URLs. ## Fork the Project -Fork the [project on Github](https://github.com/jrhe/grape-active_model_serializers) and check out your copy. +Fork the [project on Github](https://github.com/ruby-grape/grape-active_model_serializers) and check out your copy. ``` git clone https://github.com/contributor/grape-active_model_serializers.git cd grape-active_model_serializers -git remote add upstream https://github.com/jrhe/grape-active_model_serializers.git +git remote add upstream https://github.com/ruby-grape/grape-active_model_serializers.git ``` ## Create a Topic Branch @@ -103,7 +103,7 @@ git push origin my-feature-branch -f Update the [CHANGELOG](CHANGELOG.md) with the pull request number. A typical entry looks as follows. ``` -* [#123](https://github.com/jrhe/grape-active_model_serializers/pull/123): Reticulated splines - [@contributor](https://github.com/contributor). +* [#123](https://github.com/ruby-grape/grape-active_model_serializers/pull/123): Reticulated splines - [@contributor](https://github.com/contributor). ``` Amend your previous commit and force push the changes. diff --git a/README.md b/README.md index cc56d79..f30186f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Use [active_model_serializers](https://github.com/rails-api/active_model_serializers) with [Grape](https://github.com/intridea/grape)! -[![Build Status](https://api.travis-ci.org/jrhe/grape-active_model_serializers.svg)](http://travis-ci.org/jrhe/grape-active_model_serializers) [![Dependency Status](https://gemnasium.com/jrhe/grape-active_model_serializers.svg)](https://gemnasium.com/jrhe/grape-active_model_serializers) [![Code Climate](https://codeclimate.com/github/jrhe/grape-active_model_serializers.svg)](https://codeclimate.com/github/jrhe/grape-active_model_serializers) +[![Build Status](https://api.travis-ci.org/ruby-grape/grape-active_model_serializers.svg)](http://travis-ci.org/ruby-grape/grape-active_model_serializers) [![Dependency Status](https://gemnasium.com/ruby-grape/grape-active_model_serializers.svg)](https://gemnasium.com/ruby-grape/grape-active_model_serializers) [![Code Climate](https://codeclimate.com/github/jrhe/grape-active_model_serializers.svg)](https://codeclimate.com/github/jrhe/grape-active_model_serializers) ## Installation diff --git a/grape-active_model_serializers.gemspec b/grape-active_model_serializers.gemspec index 471ecad..9ec4580 100644 --- a/grape-active_model_serializers.gemspec +++ b/grape-active_model_serializers.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |gem| gem.email = ['contact@jrhe.co.uk'] gem.summary = 'Use active_model_serializer in grape' gem.description = 'Provides a Formatter for the Grape API DSL to emit objects serialized with active_model_serializers.' - gem.homepage = 'https://github.com/jrhe/grape-active_model_serializers' + gem.homepage = 'https://github.com/ruby-grape/grape-active_model_serializers' gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } gem.files = `git ls-files`.split("\n")