Skip to content

Commit 4f9d162

Browse files
committed
Removed references to bodyimage
1 parent aa59b48 commit 4f9d162

12 files changed

+23
-24
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This project includes a Rails + Postgres RESTful API to store your data.
1818

1919
### Status
2020

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)
2222

2323
### License
2424

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
require File.expand_path('../config/application', __FILE__)
66

7-
Bodyimage::Application.load_tasks
7+
Quantify::Application.load_tasks

config.ru

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# This file is used by Rack-based servers to start the application.
22

33
require ::File.expand_path('../config/environment', __FILE__)
4-
run Bodyimage::Application
4+
run Quantify::Application

config/application.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# you've limited to :test, :development, or :production.
77
Bundler.require(:default, Rails.env)
88

9-
module Bodyimage
9+
module Quantify
1010
class Application < Rails::Application
1111
VERSION = "0.0.11"
1212
# Settings in config/environments/* take precedence over those specified here.

config/database.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
development:
1616
adapter: postgresql
1717
encoding: unicode
18-
database: bodyimage_development
18+
database: quantify_development
1919
pool: 5
20-
username: bodyimage
20+
username: quantify
2121
password:
2222
host: localhost
2323

@@ -43,18 +43,18 @@ test:
4343
adapter: postgresql
4444
encoding: unicode
4545
reconnect: false
46-
database: bodyimage_test
46+
database: quantify_test
4747
pool: 5
48-
username: bodyimage
48+
username: quantify
4949
password:
5050
host: localhost
5151

5252
production:
5353
adapter: postgresql
5454
encoding: unicode
5555
reconnect: false
56-
database: bodyimage
56+
database: quantify
5757
pool: 5
58-
username: bodyimage
58+
username: quantify
5959
password:
6060
host: localhost

config/environment.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
require File.expand_path('../application', __FILE__)
33

44
# Initialize the rails application
5-
Bodyimage::Application.initialize!
5+
Quantify::Application.initialize!

config/environments/development.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Bodyimage::Application.configure do
1+
Quantify::Application.configure do
22
# Settings specified here will take precedence over those in config/application.rb
33

44
# In the development environment your application's code is reloaded on
@@ -31,7 +31,7 @@
3131
config.active_record.mass_assignment_sanitizer = :strict
3232

3333
# Expands the lines which load the assets
34-
config.assets.debug = true
34+
config.assets.debug = false
3535

3636
config.action_mailer.delivery_method = :smtp
3737

config/environments/production.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Bodyimage::Application.configure do
1+
Quantify::Application.configure do
22
# Settings specified here will take precedence over those in config/application.rb
33

44
# Code is not reloaded between requests

config/environments/test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Bodyimage::Application.configure do
1+
Quantify::Application.configure do
22
# Settings specified here will take precedence over those in config/application.rb
33

44
# The test environment is used exclusively to run your application's

config/initializers/secret_token.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
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"
44
else
55
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
88
end

config/initializers/session_store.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Be sure to restart your server when you modify this file.
22

3-
Bodyimage::Application.config.session_store :cookie_store, key: '_bodyimage_session'
3+
Quantify::Application.config.session_store :cookie_store, key: '_quantify_session'
44

55
# Use the database for sessions instead of the cookie-based default,
66
# which shouldn't be used to store highly confidential information
77
# (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

config/routes.rb

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
Bodyimage::Application.routes.draw do
1+
Quantify::Application.routes.draw do
22

33
authenticated :user do
44
get '/', to: "dashboard#index"
55
end
66

7-
87
get '/', to: 'home#index'
98

109
devise_for :users, controllers: {
@@ -15,7 +14,7 @@
1514
resources :dashboard, only: [:index]
1615
resources :home, only: [:index]
1716

18-
resources :users
17+
resources :users, only: [:show]
1918
resources :places
2019
resources :weights
2120
resources :meals

0 commit comments

Comments
 (0)