-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4653ef4
Showing
228 changed files
with
5,859 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# See https://help.github.com/articles/ignoring-files for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile '~/.gitignore_global' | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
|
||
# Ignore the default SQLite database. | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
|
||
# Ignore all paperclip uploads | ||
/public/system | ||
|
||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Load DSL and set up stages | ||
require "capistrano/setup" | ||
|
||
# Include default deployment tasks | ||
require "capistrano/deploy" | ||
|
||
# Load the SCM plugin appropriate to your project: | ||
# | ||
# require "capistrano/scm/hg" | ||
# install_plugin Capistrano::SCM::Hg | ||
# or | ||
# require "capistrano/scm/svn" | ||
# install_plugin Capistrano::SCM::Svn | ||
# or | ||
require "capistrano/scm/git" | ||
install_plugin Capistrano::SCM::Git | ||
|
||
# Include tasks from other gems included in your Gemfile | ||
# | ||
# For documentation on these, see for example: | ||
# | ||
# https://github.com/capistrano/rvm | ||
# https://github.com/capistrano/rbenv | ||
# https://github.com/capistrano/chruby | ||
# https://github.com/capistrano/bundler | ||
# https://github.com/capistrano/rails | ||
# https://github.com/capistrano/passenger | ||
# | ||
|
||
require 'capistrano/rails' | ||
require 'capistrano/passenger' | ||
|
||
require 'capistrano/rbenv' | ||
set :rbenv_type, :user | ||
set :rbenv_ruby, '2.4.0' | ||
|
||
# Load custom tasks from `lib/capistrano/tasks` if you have any defined | ||
Dir.glob("lib/capistrano/tasks/*.rake").each { |r| import r } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
source 'https://rubygems.org' | ||
|
||
git_source(:github) do |repo_name| | ||
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") | ||
"https://github.com/#{repo_name}.git" | ||
end | ||
|
||
gem 'rails', '~> 5.0.1' | ||
gem 'puma', '~> 3.0' | ||
gem 'sass-rails', '~> 5.0' | ||
gem 'uglifier', '>= 1.3.0' | ||
gem 'coffee-rails', '~> 4.2' | ||
gem 'jquery-rails' | ||
gem 'jbuilder', '~> 2.5' | ||
gem 'redis', '~> 3.0' | ||
|
||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | ||
|
||
group :development do | ||
gem 'sqlite3' | ||
gem 'meta_request' | ||
gem 'web-console' | ||
gem "awesome_print", require:"ap" | ||
end | ||
group :production do | ||
gem 'pg' | ||
end | ||
|
||
gem 'haml' | ||
gem 'paperclip' | ||
gem 'simple_form' | ||
gem 'bootstrap-sass' | ||
gem 'devise' | ||
gem 'acts_as_votable' | ||
gem 'kaminari' | ||
|
||
gem 'rails_admin' | ||
|
||
gem 'remotipart', '~> 1.2' | ||
|
||
gem 'capistrano', '~> 3.7', '>= 3.7.1' | ||
gem 'capistrano-rails', '~> 1.2' | ||
gem 'capistrano-passenger', '~> 0.2.0' | ||
gem 'capistrano-rbenv', '~> 2.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,266 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
actioncable (5.0.1) | ||
actionpack (= 5.0.1) | ||
nio4r (~> 1.2) | ||
websocket-driver (~> 0.6.1) | ||
actionmailer (5.0.1) | ||
actionpack (= 5.0.1) | ||
actionview (= 5.0.1) | ||
activejob (= 5.0.1) | ||
mail (~> 2.5, >= 2.5.4) | ||
rails-dom-testing (~> 2.0) | ||
actionpack (5.0.1) | ||
actionview (= 5.0.1) | ||
activesupport (= 5.0.1) | ||
rack (~> 2.0) | ||
rack-test (~> 0.6.3) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
actionview (5.0.1) | ||
activesupport (= 5.0.1) | ||
builder (~> 3.1) | ||
erubis (~> 2.7.0) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
activejob (5.0.1) | ||
activesupport (= 5.0.1) | ||
globalid (>= 0.3.6) | ||
activemodel (5.0.1) | ||
activesupport (= 5.0.1) | ||
activerecord (5.0.1) | ||
activemodel (= 5.0.1) | ||
activesupport (= 5.0.1) | ||
arel (~> 7.0) | ||
activesupport (5.0.1) | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
i18n (~> 0.7) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
acts_as_votable (0.10.0) | ||
airbrussh (1.1.2) | ||
sshkit (>= 1.6.1, != 1.7.0) | ||
arel (7.1.4) | ||
autoprefixer-rails (6.6.1) | ||
execjs | ||
awesome_print (1.7.0) | ||
bcrypt (3.1.11-x86-mingw32) | ||
bootstrap-sass (3.3.7) | ||
autoprefixer-rails (>= 5.2.1) | ||
sass (>= 3.3.4) | ||
builder (3.2.2) | ||
callsite (0.0.11) | ||
capistrano (3.7.1) | ||
airbrussh (>= 1.0.0) | ||
capistrano-harrow | ||
i18n | ||
rake (>= 10.0.0) | ||
sshkit (>= 1.9.0) | ||
capistrano-bundler (1.2.0) | ||
capistrano (~> 3.1) | ||
sshkit (~> 1.2) | ||
capistrano-harrow (0.5.3) | ||
capistrano-passenger (0.2.0) | ||
capistrano (~> 3.0) | ||
capistrano-rails (1.2.2) | ||
capistrano (~> 3.1) | ||
capistrano-bundler (~> 1.1) | ||
capistrano-rbenv (2.1.0) | ||
capistrano (~> 3.1) | ||
sshkit (~> 1.3) | ||
climate_control (0.1.0) | ||
cocaine (0.5.8) | ||
climate_control (>= 0.0.3, < 1.0) | ||
coffee-rails (4.2.1) | ||
coffee-script (>= 2.2.0) | ||
railties (>= 4.0.0, < 5.2.x) | ||
coffee-script (2.4.1) | ||
coffee-script-source | ||
execjs | ||
coffee-script-source (1.12.2) | ||
concurrent-ruby (1.0.4) | ||
debug_inspector (0.0.2) | ||
devise (4.2.0) | ||
bcrypt (~> 3.0) | ||
orm_adapter (~> 0.1) | ||
railties (>= 4.1.0, < 5.1) | ||
responders | ||
warden (~> 1.2.3) | ||
erubis (2.7.0) | ||
execjs (2.7.0) | ||
font-awesome-rails (4.7.0.1) | ||
railties (>= 3.2, < 5.1) | ||
globalid (0.3.7) | ||
activesupport (>= 4.1.0) | ||
haml (4.0.7) | ||
tilt | ||
i18n (0.7.0) | ||
jbuilder (2.6.1) | ||
activesupport (>= 3.0.0, < 5.1) | ||
multi_json (~> 1.2) | ||
jquery-rails (4.2.2) | ||
rails-dom-testing (>= 1, < 3) | ||
railties (>= 4.2.0) | ||
thor (>= 0.14, < 2.0) | ||
jquery-ui-rails (5.0.5) | ||
railties (>= 3.2.16) | ||
kaminari (0.17.0) | ||
actionpack (>= 3.0.0) | ||
activesupport (>= 3.0.0) | ||
loofah (2.0.3) | ||
nokogiri (>= 1.5.9) | ||
mail (2.6.4) | ||
mime-types (>= 1.16, < 4) | ||
meta_request (0.4.0) | ||
callsite (~> 0.0, >= 0.0.11) | ||
rack-contrib (~> 1.1) | ||
railties (>= 3.0.0, < 5.1.0) | ||
method_source (0.8.2) | ||
mime-types (3.1) | ||
mime-types-data (~> 3.2015) | ||
mime-types-data (3.2016.0521) | ||
mimemagic (0.3.2) | ||
mini_portile2 (2.1.0) | ||
minitest (5.10.1) | ||
multi_json (1.12.1) | ||
nested_form (0.3.2) | ||
net-scp (1.2.1) | ||
net-ssh (>= 2.6.5) | ||
net-ssh (4.0.1) | ||
nio4r (1.2.1) | ||
nokogiri (1.7.0.1-x86-mingw32) | ||
mini_portile2 (~> 2.1.0) | ||
orm_adapter (0.5.0) | ||
paperclip (5.1.0) | ||
activemodel (>= 4.2.0) | ||
activesupport (>= 4.2.0) | ||
cocaine (~> 0.5.5) | ||
mime-types | ||
mimemagic (~> 0.3.0) | ||
pg (0.19.0-x86-mingw32) | ||
puma (3.6.2) | ||
rack (2.0.1) | ||
rack-contrib (1.2.0) | ||
rack (>= 0.9.1) | ||
rack-pjax (1.0.0) | ||
nokogiri (~> 1.5) | ||
rack (>= 1.1) | ||
rack-test (0.6.3) | ||
rack (>= 1.0) | ||
rails (5.0.1) | ||
actioncable (= 5.0.1) | ||
actionmailer (= 5.0.1) | ||
actionpack (= 5.0.1) | ||
actionview (= 5.0.1) | ||
activejob (= 5.0.1) | ||
activemodel (= 5.0.1) | ||
activerecord (= 5.0.1) | ||
activesupport (= 5.0.1) | ||
bundler (>= 1.3.0, < 2.0) | ||
railties (= 5.0.1) | ||
sprockets-rails (>= 2.0.0) | ||
rails-dom-testing (2.0.2) | ||
activesupport (>= 4.2.0, < 6.0) | ||
nokogiri (~> 1.6) | ||
rails-html-sanitizer (1.0.3) | ||
loofah (~> 2.0) | ||
rails_admin (1.1.1) | ||
builder (~> 3.1) | ||
coffee-rails (~> 4.0) | ||
font-awesome-rails (>= 3.0, < 5) | ||
haml (~> 4.0) | ||
jquery-rails (>= 3.0, < 5) | ||
jquery-ui-rails (~> 5.0) | ||
kaminari (~> 0.14) | ||
nested_form (~> 0.3) | ||
rack-pjax (>= 0.7) | ||
rails (>= 4.0, < 6) | ||
remotipart (~> 1.3) | ||
sass-rails (>= 4.0, < 6) | ||
railties (5.0.1) | ||
actionpack (= 5.0.1) | ||
activesupport (= 5.0.1) | ||
method_source | ||
rake (>= 0.8.7) | ||
thor (>= 0.18.1, < 2.0) | ||
rake (12.0.0) | ||
redis (3.3.2) | ||
remotipart (1.3.1) | ||
responders (2.3.0) | ||
railties (>= 4.2.0, < 5.1) | ||
sass (3.4.23) | ||
sass-rails (5.0.6) | ||
railties (>= 4.0.0, < 6) | ||
sass (~> 3.1) | ||
sprockets (>= 2.8, < 4.0) | ||
sprockets-rails (>= 2.0, < 4.0) | ||
tilt (>= 1.1, < 3) | ||
simple_form (3.4.0) | ||
actionpack (> 4, < 5.1) | ||
activemodel (> 4, < 5.1) | ||
sprockets (3.7.1) | ||
concurrent-ruby (~> 1.0) | ||
rack (> 1, < 3) | ||
sprockets-rails (3.2.0) | ||
actionpack (>= 4.0) | ||
activesupport (>= 4.0) | ||
sprockets (>= 3.0.0) | ||
sqlite3 (1.3.13-x86-mingw32) | ||
sshkit (1.11.5) | ||
net-scp (>= 1.1.2) | ||
net-ssh (>= 2.8.0) | ||
thor (0.19.4) | ||
thread_safe (0.3.5) | ||
tilt (2.0.5) | ||
tzinfo (1.2.2) | ||
thread_safe (~> 0.1) | ||
tzinfo-data (1.2016.10) | ||
tzinfo (>= 1.0.0) | ||
uglifier (3.0.4) | ||
execjs (>= 0.3.0, < 3) | ||
warden (1.2.6) | ||
rack (>= 1.0) | ||
web-console (3.4.0) | ||
actionview (>= 5.0) | ||
activemodel (>= 5.0) | ||
debug_inspector | ||
railties (>= 5.0) | ||
websocket-driver (0.6.4) | ||
websocket-extensions (>= 0.1.0) | ||
websocket-extensions (0.1.2) | ||
|
||
PLATFORMS | ||
x86-mingw32 | ||
|
||
DEPENDENCIES | ||
acts_as_votable | ||
awesome_print | ||
bootstrap-sass | ||
capistrano (~> 3.7, >= 3.7.1) | ||
capistrano-passenger (~> 0.2.0) | ||
capistrano-rails (~> 1.2) | ||
capistrano-rbenv (~> 2.1) | ||
coffee-rails (~> 4.2) | ||
devise | ||
haml | ||
jbuilder (~> 2.5) | ||
jquery-rails | ||
kaminari | ||
meta_request | ||
paperclip | ||
pg | ||
puma (~> 3.0) | ||
rails (~> 5.0.1) | ||
rails_admin | ||
redis (~> 3.0) | ||
remotipart (~> 1.2) | ||
sass-rails (~> 5.0) | ||
simple_form | ||
sqlite3 | ||
tzinfo-data | ||
uglifier (>= 1.3.0) | ||
web-console | ||
|
||
BUNDLED WITH | ||
1.13.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Add your own tasks in files placed in lib/tasks ending in .rake, | ||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. | ||
|
||
require_relative 'config/application' | ||
|
||
Rails.application.load_tasks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
//= link_tree ../images | ||
//= link_directory ../javascripts .js | ||
//= link_directory ../stylesheets .css |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.