1

Этап 1

Chapter 1: Ruby on Rails, the framework

07 сентября—10 сентября

2

Этап 2

Chapter 2: Testing saves your bacon

11 сентября—12 сентября

3

Этап 3

Chapter 3: Developing a real Rails application

13 сентября—17 сентября

4

Этап 4

Chapter 4: Oh CRUD!

18 сентября—21 сентября

5

Этап 5

Chapter 5: Nested resources

21 сентября—24 сентября

6

Этап 6

Chapter 6: Authetication

24 сентября—28 сентября

7

Этап 7

Chapter 7: Basic access control

28 сентября—02 октября

8

Этап 8

Chapter 8: Fine-grained access control

02 октября—08 октября

9

Этап 9

Chapter 9: File uploading

08 октября—11 октября

10

Этап 10

Chapter 10: Tracking state

12 октября—17 октября

11

Этап 11

Chapter 11: Tagging

18 октября—22 октября

12

Этап 12

Chapter 12: Sending Email

23 октября—25 октября

13

Этап 13

Chapter 13: Designing an API

26 октября—29 октября

14

Этап 14

Chapter 14: Deployment

30 октября—03 ноября

15

Этап 15

Chapter 15: Alternative Authentication

04 ноября—07 ноября

16

Этап 16

Chapter 16: Basic performance enhancements

08 ноября—11 ноября

17

Этап 17

Chapter 17: Rack-based applications

12 ноября—15 ноября

1

Этап 1

Chapter 1: Ruby on Rails, the framework

07 сентября—10 сентября

2

Этап 2

Chapter 2: Testing saves your bacon

11 сентября—12 сентября

3

Этап 3

Chapter 3: Developing a real Rails application

13 сентября—17 сентября

4

Этап 4

Chapter 4: Oh CRUD!

18 сентября—21 сентября

5

Этап 5

Chapter 5: Nested resources

21 сентября—24 сентября

6

Этап 6

Chapter 6: Authetication

24 сентября—28 сентября

7

Этап 7

Chapter 7: Basic access control

28 сентября—02 октября

8

Этап 8

Chapter 8: Fine-grained access control

02 октября—08 октября

9

Этап 9

Chapter 9: File uploading

08 октября—11 октября

10

Этап 10

Chapter 10: Tracking state

12 октября—17 октября

11

Этап 11

Chapter 11: Tagging

18 октября—22 октября

12

Этап 12

Chapter 12: Sending Email

23 октября—25 октября

13

Этап 13

Chapter 13: Designing an API

26 октября—29 октября

14

Этап 14

Chapter 14: Deployment

30 октября—03 ноября

15

Этап 15

Chapter 15: Alternative Authentication

04 ноября—07 ноября

16

Этап 16

Chapter 16: Basic performance enhancements

08 ноября—11 ноября

17

Этап 17

Chapter 17: Rack-based applications

12 ноября—15 ноября

07 сентября 2015

Цель заброшена

Автор не отписывался в цели 10 лет 1 месяц 15 дней

Общая

Read Rails 4 in Action

I want to get better in Rails development and to attain this goal I'm going to start off from reading this book.

 Критерий завершения

I've read 731 pages of the book

  1. Chapter 1: Ruby on Rails, the framework

    1. 1.1 Ruby on Rails Overview

    2. 1.2 Developing your first application

  2. Chapter 2: Testing saves your bacon

    1. 2.1 Test-driven development basics

    2. 2.2 Behavior-driven development basics

  3. Chapter 3: Developing a real Rails application

    1. 3.1 First steps

    2. 3.2 Version control

    3. 3.3 Application configuration

    4. 3.4 Beginning your first feature

  4. Chapter 4: Oh CRUD!

    1. 4.1 Viewing projects

    2. 4.2 Editing projects

    3. 4.3 Deleting projects

    4. 4.4 What happens when things can't be found

  5. Chapter 5: Nested resources

    1. 5.1 Creating tickets

    2. 5.2 Viewing tickets

    3. 5.3 Editing tickets

    4. 5.4 Deleting tickets

  6. Chapter 6: Authetication

    1. 6.1 Authentication basics

    2. 6.2 Signing up

    3. 6.3 Signing in

    4. 6.4 Linking tickets to users

    5. 6.5 Attributing tickets to users

    6. 6.6 You broke something!

    7. 6.7 Fixing the Viewing Tickets feature

    8. 6.8 Fixing the Editing Tickets feature

    9. 6.9 Fixing the Deleting Tickets feature

  7. Chapter 7: Basic access control

    1. 7.1 Turning users into admins

    2. 7.2 Restricting actions to admins only

    3. 7.3 Hiding links

    4. 7.4 Namespace routing

    5. 7.5 Namespace-based CRUD

  8. Chapter 8: Fine-grained access control

    1. 8.1 Restricting read access

    2. 8.2 Restricting by scope

    3. 8.3 Fixing what you broke

    4. 8.4 Blocking access to tickets

    5. 8.5 Restricting write access

    6. 8.6 Restricting update access

    7. 8.7 Restricting delete access

    8. 8.8 Hiding links based on permission

    9. 8.9 Assigning permissions

  9. Chapter 9: File uploading

    1. 9.1 Attaching a file

    2. 9.2 Attaching many files

    3. 9.3 Serving files through a controller

    4. 9.4 Using JavaScript

  10. Chapter 10: Tracking state

    1. 10.1 Leaving a comment

    2. 10.2 The comment form

    3. 10.3 The comment model

    4. 10.4 The comments controller

    5. 10.5 Changing a ticket’s state

    6. 10.6 Tracking changes

    7. 10.7 Managing states

    8. 10.8 Locking down states

  11. Chapter 11: Tagging

    1. 11.1 Creating tags

    2. 11.2 Adding more tags

    3. 11.3 Tag restriction

    4. 11.4 Deleting a tag

    5. 11.5 Finding tags

  12. Chapter 12: Sending Email

    1. 12.1 Sending ticket notifications

    2. 12.2 Subscribing to updates

    3. 12.3 Real world email

    4. 12.4 Receiving emails

  13. Chapter 13: Designing an API

    1. 13.1 The projects API

    2. 13.2 Beginning the Tickets API

    3. 13.3 Rate limiting

    4. 13.4 Versioning an API

  14. Chapter 14: Deployment

    1. 14.1 Server setup

    2. 14.2 RVM and Ruby

    3. 14.3 Creating a user for the app

    4. 14.4 The database server

    5. 14.5 Deploy away!

    6. 14.6 Serving requests

  15. Chapter 15: Alternative Authentication

    1. 15.1 How OAuth Works

    2. 15.2 Twitter Authentication

    3. 15.3 GitHub Authentication

  16. Chapter 16: Basic performance enhancements

    1. 16.1 Pagination

    2. 16.2 Database query enhancements

    3. 16.3 Page and action caching

    4. 16.4 Background workers

  17. Chapter 17: Rack-based applications

    1. 17.1 Building Rack applications

    2. 17.2 Building bigger Rack applications

    3. 17.3 Mounting a Rack application with Rails

    4. 17.4 Middleware

  • 987
  • 07 сентября 2015, 12:28
Регистрация

Регистрация

Уже зарегистрированы?
Быстрая регистрация через соцсети
Вход на сайт

Входите.
Открыто.

Еще не зарегистрированы?
 
Войти через соцсети
Забыли пароль?