1
0
Fork 0
No description
Find a file
Andrew Tomaka 621a8cf7c4 Merge branch 'atomaka/feature/api' into 'master'
Match current API endpoints (/links, /characters)

There is a pull request that is currently active (within the last day) for Active Model Serializers that will allow for nested and inline Serializers.  This will allow `CardSerializer` to go from the complicated monstrosity that it is to a much simpler representation. For example

```
has_one :character
```

instead of:

```
def character
  Api::V1::CharacterSerializer.new(object.character)
end
```

follow this pull request at https://github.com/rails-api/active_model_serializers/pull/1225

See merge request !1
2015-10-08 14:26:06 -04:00
app Match current API endpoints (/links, /characters) 2015-10-08 14:20:56 -04:00
bin Initial rails new 2015-09-29 19:02:43 -04:00
config Match current API endpoints (/links, /characters) 2015-10-08 14:20:56 -04:00
db Rename prefix to title 2015-10-08 12:40:31 -04:00
lib Switch to bootstrap for now 2015-10-06 12:11:53 -04:00
log Initial rails new 2015-09-29 19:02:43 -04:00
public Initial rails new 2015-09-29 19:02:43 -04:00
vendor/assets Initial rails new 2015-09-29 19:02:43 -04:00
.env.sample Add Reddit login/logout 2015-09-29 21:21:27 -04:00
.gitignore Add all the basic models 2015-10-07 15:27:26 -04:00
config.ru Initial rails new 2015-09-29 19:02:43 -04:00
Gemfile Match current API endpoints (/links, /characters) 2015-10-08 14:20:56 -04:00
Gemfile.lock Match current API endpoints (/links, /characters) 2015-10-08 14:20:56 -04:00
Rakefile Initial rails new 2015-09-29 19:02:43 -04:00
README.rdoc Initial rails new 2015-09-29 19:02:43 -04:00

== README

This README would normally document whatever steps are necessary to get the
application up and running.

Things you may want to cover:

* Ruby version

* System dependencies

* Configuration

* Database creation

* Database initialization

* How to run the test suite

* Services (job queues, cache servers, search engines, etc.)

* Deployment instructions

* ...


Please feel free to use a different markup language if you do not plan to run
<tt>rake doc:app</tt>.