Skip to content

Commit 1bbab2f

Browse files
author
Andreas Knöpfle
committed
settings included
1 parent 5a313be commit 1bbab2f

7 files changed

Lines changed: 16 additions & 1 deletion

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ capybara-*.html
1616
rerun.txt
1717
.project
1818
pickle-email-*.html
19+
20+
config/settings.local.yml
21+
config/settings/*.local.yml
22+
config/environments/*.local.yml

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ gem 'async_partial'
2020
# Model
2121

2222
gem 'acts-as-taggable-on'
23-
23+
gem "rails_config"
2424
# Controller
2525

2626
gem 'inherited_resources'

Gemfile.lock

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ GEM
103103
activesupport (= 3.2.13)
104104
bundler (~> 1.0)
105105
railties (= 3.2.13)
106+
rails_config (0.3.3)
107+
activesupport (>= 3.0)
106108
railties (3.2.13)
107109
actionpack (= 3.2.13)
108110
activesupport (= 3.2.13)
@@ -158,6 +160,7 @@ DEPENDENCIES
158160
jquery-rails
159161
octokit
160162
rails (= 3.2.13)
163+
rails_config
161164
sass-rails (~> 3.2.3)
162165
sqlite3
163166
susy

config/settings.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
apis:
2+
github: githubtoken

config/settings/development.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
apis:
2+
github:

config/settings/production.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
apis:
2+
github:

config/settings/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
apis:
2+
github:

0 commit comments

Comments
 (0)