Skip to content

Commit ebbc95e

Browse files
author
Magdalena Waligórska
committed
first version
0 parents  commit ebbc95e

File tree

1,979 files changed

+3577
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,979 files changed

+3577
-0
lines changed

.env.sample

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
REWARDTHEM_DEVISE_SECRET_KEY=asdfghjkl
2+
REWARDTHEM_SECRET_KEY_BASE=qwertyuiop
3+
REWARDTHEM_SMTP_ADDRESS=example.com
4+
REWARDTHEM_SMTP_PORT=123
5+
REWARDTHEM_SMTP_DOMAIN=example.com
6+
REWARDTHEM_SMTP_USER_NAME=[email protected]
7+
REWARDTHEM_SMTP_PASSWORD=zxcvbnm
8+
REWARDTHEM_SMTP_AUTHENTICATION=plain
9+
REWARDTHEM_SMTP_ENABLE_STARTTLS_AUTO=true
10+
REWARDTHEM_ADMIN_EMAIL=[email protected]
11+
REWARDTHEM_ADMIN_PASSWORD=secret_password
12+
REWARDTHEM_EMAIL_ADDRESS=[email protected]
13+
REWARDTHEM_DEFAULT_HOST=rewardthem.example.com

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*.log
16+
/tmp
17+
/config/database.yml
18+
.dokkurc
19+
/coverage/
20+
21+
# Ignore vim artifacts
22+
**.swp
23+
**.swo

.haml-lint.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
linters:
2+
LineLength:
3+
max: 150

.overcommit.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PreCommit:
2+
Rubocop:
3+
enabled: true

.rubocop.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
AllCops:
2+
Exclude:
3+
- bin/*
4+
- config/**/*
5+
- coverage/**/*
6+
- db/**/*
7+
- doc/**/*
8+
- log/**/*
9+
- public/**/*
10+
- script/**/*
11+
- tmp/**/*
12+
- vendor/**/*
13+
RunRailsCops: true
14+
15+
MethodCalledOnDoEndBlock:
16+
Enabled: true
17+
18+
Documentation:
19+
Exclude:
20+
- app/api/**/*
21+
- app/controllers/**/*
22+
- app/helpers/**/*
23+
24+
ClassAndModuleChildren:
25+
Enabled: false
26+
27+
Style/DotPosition:
28+
EnforcedStyle: trailing

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.1.2

Gemfile

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
source ENV.fetch('GEM_SOURCE', 'https://rubygems.org')
2+
3+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
4+
#gem 'rails', '4.1.0'
5+
gem 'rails', '4.1.6'
6+
7+
gem 'pg'
8+
9+
# Use SCSS for stylesheets
10+
gem 'sass-rails', '~> 4.0.3'
11+
12+
# Use Uglifier as compressor for JavaScript assets
13+
gem 'uglifier', '>= 1.3.0'
14+
15+
# Use CoffeeScript for .js.coffee assets and views
16+
gem 'coffee-rails', '~> 4.0.1'
17+
18+
# Use jquery as the JavaScript library
19+
gem 'jquery-rails'
20+
#gem 'jquery-ui-rails'
21+
22+
gem 'bootstrap-sass'
23+
gem 'haml', '>=3.1.6'
24+
25+
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
26+
gem 'turbolinks'
27+
gem 'jquery-turbolinks'
28+
29+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
30+
#gem 'jbuilder', '~> 1.2'
31+
32+
gem 'inherited_resources'
33+
gem 'devise'
34+
gem 'omniauth-google-oauth2'
35+
gem 'simple_form'
36+
gem 'gemoji'
37+
gem 'activeadmin', github: 'gregbell/active_admin'
38+
gem 'kaminari'
39+
gem 'whenever'
40+
gem 'rails-settings-cached'
41+
gem 'rb-readline'
42+
43+
group :test do
44+
gem 'minitest-rails-capybara'
45+
gem 'poltergeist'
46+
gem 'database_cleaner'
47+
gem 'simplecov', '~> 0.9.0', require: false
48+
end
49+
50+
group :development, :test do
51+
gem 'minitest-rails'
52+
gem 'factory_girl_rails'
53+
end
54+
55+
group :development do
56+
gem 'annotate'
57+
end
58+
59+
group :doc do
60+
gem 'sdoc', require: false
61+
end
62+
63+
group :production do
64+
gem 'unicorn'
65+
gem 'rails_12factor'
66+
end
67+
68+
69+
ruby "2.1.2"

0 commit comments

Comments
 (0)