Skip to content

Commit 0bb3398

Browse files
committed
build using rails_apps_composer 3.0.20
1 parent ba70262 commit 0bb3398

18 files changed

+304
-51
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ db/*.sqlite3
2828
.redcar/
2929
.sass-cache
3030
/config/config.yml
31-
/config/database.yml
31+
# /config/database.yml
3232
/coverage.data
3333
/coverage/
3434
/db/*.javadb/

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.2
1+
2.1.3

Gemfile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
source 'https://rubygems.org'
2-
ruby '2.1.2'
3-
gem 'rails', '4.1.5'
4-
gem 'sqlite3'
2+
ruby '2.1.3'
3+
gem 'rails', '4.1.6'
54
gem 'sass-rails', '~> 4.0.3'
65
gem 'uglifier', '>= 1.3.0'
76
gem 'coffee-rails', '~> 4.0.0'
@@ -20,12 +19,17 @@ group :development do
2019
end
2120
group :development, :test do
2221
gem 'factory_girl_rails'
22+
gem 'faker'
2323
gem 'rspec-rails'
24+
gem 'sqlite3'
25+
end
26+
group :production do
27+
gem 'pg'
28+
gem 'rails_12factor'
2429
end
2530
group :test do
2631
gem 'capybara'
2732
gem 'database_cleaner'
28-
gem 'faker'
2933
gem 'launchy'
3034
gem 'selenium-webdriver'
3135
end

app.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
{
2-
"name": "RailsApps rails-bootstrap",
3-
"description": "Rails starter app with the Bootstrap front-end framework.",
2+
"name": "Rails Bootstrap",
3+
"description": "Starter application generated by Rails Composer",
4+
"logo": "https://avatars3.githubusercontent.com/u/788200",
5+
"repository": "https://github.com/RailsApps/rails-bootstrap",
46
"keywords": [
5-
"Ruby 2",
6-
"Rails 4",
7-
"Kehoe",
7+
"Rails Composer",
88
"RailsApps",
9-
"Example",
10-
"Starter",
11-
"Bootstrap"
9+
"starter",
10+
"RSpec",
11+
"Bootstrap",
12+
"Ruby",
13+
"Rails"
1214
],
13-
"website": "http://railsapps.github.io/rails-bootstrap/",
14-
"repository": "https://github.com/RailsApps/rails-bootstrap",
15-
"logo": "https://avatars3.githubusercontent.com/u/788200",
1615
"scripts": {},
1716
"env": {
1817
"RAILS_ENV": "production"

config/database.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ test:
2020
<<: *default
2121
database: db/test.sqlite3
2222

23+
2324
production:
2425
<<: *default
25-
database: db/production.sqlite3
26+
adapter: postgresql
27+
encoding: unicode

config/environments/production.rb

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# Generate digests for assets URLs.
3333
config.assets.digest = true
3434

35-
# `config.assets.precompile` has moved to config/initializers/assets.rb
35+
# `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
3636

3737
# Specifies the header that your server uses for sending files.
3838
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
@@ -56,10 +56,6 @@
5656
# Enable serving of images, stylesheets, and JavaScripts from an asset server.
5757
# config.action_controller.asset_host = "http://assets.example.com"
5858

59-
# Precompile additional assets.
60-
# application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
61-
# config.assets.precompile += %w( search.js )
62-
6359
# Ignore bad email addresses and do not raise email delivery errors.
6460
# Set this to true and configure the email server for immediate delivery to raise delivery errors.
6561
# config.action_mailer.raise_delivery_errors = false

config/secrets.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@
1111
# if you're sharing your code publicly.
1212

1313
development:
14-
secret_key_base: b93fc989c91073ee22a3c1d8569694de40356487b85f8cceb3e75609e7a83d1fca8e48361631f4f1db6d2b63b2949f10462096e3c3fa2cdf71f34df2080bb16f
14+
domain_name: example.com
15+
secret_key_base: 100ff202ff107851d657a68b3f8366cb9388ba2cd2aa7d2f3147bbb9d06b31ff7fc6bd8c23ea3a93bc3fbe847837c6e9bb17d88dc6ad1ddfd69acea0777f5282
1516

1617
test:
17-
secret_key_base: aa4cb4865eaf82069b6dbbe93170ea7188e5c1d0176de8690ab3b8f478c6bb8ce9f884f09ff2c5f3081328b677bf5d74e31e0f3b4f04efaeb3eb26397ddf736b
18+
secret_key_base: abdfb3b842b67c5e0ad6b9facd0b2487ea4072c5c20822e031c5e69faca41c01b3d616b84aeb6c062961b58268a91625c171185125700e4d04da28b0e78dfbc2
1819

1920
# Do not keep production secrets in the repository,
2021
# instead read values from the environment.
2122
production:
23+
domain_name: <%= ENV["DOMAIN_NAME"] %>
2224
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>

public/assets/application-f95dc92ece35c7142095d4f1a8674eef.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

public/assets/application-fee56159849262f12af05d7925326f48.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)