File tree 12 files changed +23
-24
lines changed
12 files changed +23
-24
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ This project includes a Rails + Postgres RESTful API to store your data.
18
18
19
19
### Status
20
20
21
- [ ![ Codeship Status for jdjkelly/bodyimage ] ( https://www.codeship.io/projects/09ef6f10-81d4-0130-00e5-12313d26400d/status?branch=master )] ( https://www.codeship.io/projects/2416 )
21
+ [ ![ Codeship Status for jdjkelly/quantify ] ( https://www.codeship.io/projects/09ef6f10-81d4-0130-00e5-12313d26400d/status?branch=master )] ( https://www.codeship.io/projects/2416 )
22
22
23
23
### License
24
24
Original file line number Diff line number Diff line change 4
4
5
5
require File . expand_path ( '../config/application' , __FILE__ )
6
6
7
- Bodyimage ::Application . load_tasks
7
+ Quantify ::Application . load_tasks
Original file line number Diff line number Diff line change 1
1
# This file is used by Rack-based servers to start the application.
2
2
3
3
require ::File . expand_path ( '../config/environment' , __FILE__ )
4
- run Bodyimage ::Application
4
+ run Quantify ::Application
Original file line number Diff line number Diff line change 6
6
# you've limited to :test, :development, or :production.
7
7
Bundler . require ( :default , Rails . env )
8
8
9
- module Bodyimage
9
+ module Quantify
10
10
class Application < Rails ::Application
11
11
VERSION = "0.0.11"
12
12
# Settings in config/environments/* take precedence over those specified here.
Original file line number Diff line number Diff line change 15
15
development :
16
16
adapter : postgresql
17
17
encoding : unicode
18
- database : bodyimage_development
18
+ database : quantify_development
19
19
pool : 5
20
- username : bodyimage
20
+ username : quantify
21
21
password :
22
22
host : localhost
23
23
@@ -43,18 +43,18 @@ test:
43
43
adapter : postgresql
44
44
encoding : unicode
45
45
reconnect : false
46
- database : bodyimage_test
46
+ database : quantify_test
47
47
pool : 5
48
- username : bodyimage
48
+ username : quantify
49
49
password :
50
50
host : localhost
51
51
52
52
production :
53
53
adapter : postgresql
54
54
encoding : unicode
55
55
reconnect : false
56
- database : bodyimage
56
+ database : quantify
57
57
pool : 5
58
- username : bodyimage
58
+ username : quantify
59
59
password :
60
60
host : localhost
Original file line number Diff line number Diff line change 2
2
require File . expand_path ( '../application' , __FILE__ )
3
3
4
4
# Initialize the rails application
5
- Bodyimage ::Application . initialize!
5
+ Quantify ::Application . initialize!
Original file line number Diff line number Diff line change 1
- Bodyimage ::Application . configure do
1
+ Quantify ::Application . configure do
2
2
# Settings specified here will take precedence over those in config/application.rb
3
3
4
4
# In the development environment your application's code is reloaded on
31
31
config . active_record . mass_assignment_sanitizer = :strict
32
32
33
33
# Expands the lines which load the assets
34
- config . assets . debug = true
34
+ config . assets . debug = false
35
35
36
36
config . action_mailer . delivery_method = :smtp
37
37
Original file line number Diff line number Diff line change 1
- Bodyimage ::Application . configure do
1
+ Quantify ::Application . configure do
2
2
# Settings specified here will take precedence over those in config/application.rb
3
3
4
4
# Code is not reloaded between requests
Original file line number Diff line number Diff line change 1
- Bodyimage ::Application . configure do
1
+ Quantify ::Application . configure do
2
2
# Settings specified here will take precedence over those in config/application.rb
3
3
4
4
# The test environment is used exclusively to run your application's
Original file line number Diff line number Diff line change 1
1
if Rails . env . test? || Rails . env . development? || Rails . env == "profile"
2
- Bodyimage ::Application . config . secret_token = "8ae1beeb1dbcda5851624d6dbf1c6656827e54d81c025501a7a23e09801ec2eee0f05625218ec45479bb28eb23c60fd73a89ae0e3e6cf5fbce0c2c13da6fd89b"
3
- Bodyimage ::Application . config . secret_key_base = "c6e66601cd5d4b6183ac99d88421f303b8bda479dfc6f8bcb5a89c6ed7c54bf62ee26ba9c49de98608d0209549ba1e666ed87dcf0ec988146af628efc13e7c2f"
2
+ Quantify ::Application . config . secret_token = "8ae1beeb1dbcda5851624d6dbf1c6656827e54d81c025501a7a23e09801ec2eee0f05625218ec45479bb28eb23c60fd73a89ae0e3e6cf5fbce0c2c13da6fd89b"
3
+ Quantify ::Application . config . secret_key_base = "c6e66601cd5d4b6183ac99d88421f303b8bda479dfc6f8bcb5a89c6ed7c54bf62ee26ba9c49de98608d0209549ba1e666ed87dcf0ec988146af628efc13e7c2f"
4
4
else
5
5
raise "You must set a secret token in ENV['SECRET_TOKEN'] or in config/initializers/secret_token.rb" if !Settings . secret_token
6
- Bodyimage ::Application . config . secret_token = Settings . secret_token
7
- Bodyimage ::Application . config . secret_key_base = Settings . secret_key_base
6
+ Quantify ::Application . config . secret_token = Settings . secret_token
7
+ Quantify ::Application . config . secret_key_base = Settings . secret_key_base
8
8
end
Original file line number Diff line number Diff line change 1
1
# Be sure to restart your server when you modify this file.
2
2
3
- Bodyimage ::Application . config . session_store :cookie_store , key : '_bodyimage_session '
3
+ Quantify ::Application . config . session_store :cookie_store , key : '_quantify_session '
4
4
5
5
# Use the database for sessions instead of the cookie-based default,
6
6
# which shouldn't be used to store highly confidential information
7
7
# (create the session table with "rails generate session_migration")
8
- # Bodyimage ::Application.config.session_store :active_record_store
8
+ # Quantify ::Application.config.session_store :active_record_store
Original file line number Diff line number Diff line change 1
- Bodyimage ::Application . routes . draw do
1
+ Quantify ::Application . routes . draw do
2
2
3
3
authenticated :user do
4
4
get '/' , to : "dashboard#index"
5
5
end
6
6
7
-
8
7
get '/' , to : 'home#index'
9
8
10
9
devise_for :users , controllers : {
15
14
resources :dashboard , only : [ :index ]
16
15
resources :home , only : [ :index ]
17
16
18
- resources :users
17
+ resources :users , only : [ :show ]
19
18
resources :places
20
19
resources :weights
21
20
resources :meals
You can’t perform that action at this time.
0 commit comments