-
Notifications
You must be signed in to change notification settings - Fork 87
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 b1d7ddc
Showing
354 changed files
with
24,526 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,100 @@ | ||
#---------------------------------------------------------------------------- | ||
# Ignore these files when commiting to a git repository. | ||
# | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
# | ||
# The original version of this file is found here: | ||
# https://github.com/RailsApps/rails-composer/blob/master/files/gitignore.txt | ||
# | ||
# Corrections? Improvements? Create a GitHub issue: | ||
# http://github.com/RailsApps/rails-composer/issues | ||
#---------------------------------------------------------------------------- | ||
|
||
# bundler state | ||
/.bundle | ||
/vendor/bundle/ | ||
/vendor/ruby/ | ||
|
||
# minimal Rails specific artifacts | ||
db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
/log/* | ||
/tmp/* | ||
|
||
# various artifacts | ||
.overcommit.yml | ||
**.war | ||
*.rbc | ||
*.sassc | ||
.redcar/ | ||
.sass-cache | ||
/config/deploy/ | ||
/coverage.data | ||
/coverage/ | ||
/db/*.javadb/ | ||
/db/*.sqlite3 | ||
/db/*.sql | ||
/doc/api/ | ||
/doc/app/ | ||
/doc/features.html | ||
/doc/specs.html | ||
/public/cache | ||
/public/stylesheets/compiled | ||
/public/system/* | ||
/spec/tmp/* | ||
/cache | ||
/capybara* | ||
/capybara-*.html | ||
/gems | ||
/specifications | ||
rerun.txt | ||
pickle-email-*.html | ||
.zeus.sock | ||
|
||
# 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 | ||
# | ||
# Here are some files you may want to ignore globally: | ||
|
||
# scm revert files | ||
**.orig | ||
|
||
# Mac finder artifacts | ||
.DS_Store | ||
|
||
# Netbeans project directory | ||
/nbproject/ | ||
|
||
# RubyMine project files | ||
.idea | ||
|
||
# Textmate project files | ||
/*.tmproj | ||
|
||
# vim artifacts | ||
**.swp | ||
|
||
# Environment files that may contain sensitive data | ||
.env | ||
.powenv | ||
|
||
tags | ||
Session.vim | ||
Capfile | ||
|
||
.rvmrc | ||
.screenrc | ||
.ackrc | ||
.irb_history | ||
**.dump | ||
config/loms_configuration.yml | ||
config/hbw.yml | ||
config/sources.yml | ||
config/activiti.yml | ||
config/database.yml | ||
config/secrets.yml | ||
config/homs_configuration.yml | ||
config/deploy.rb | ||
|
||
lib/capistrano/ |
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,4 @@ | ||
--color | ||
--format documentation | ||
--require spec_helper | ||
--require rails_helper |
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,12 @@ | ||
AllCops: | ||
RunRailsCops: true | ||
Exclude: | ||
- db/schema.rb | ||
- db/seeds.rb | ||
- db/migrate/*.rb | ||
- bin/**/* | ||
- vendor/bundle/**/* | ||
Style/Documentation: | ||
Enabled: false | ||
Metrics/AbcSize: | ||
Max: 16 |
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,81 @@ | ||
source 'https://rubygems.org' | ||
ruby '2.2.4' | ||
gem 'rails', '~> 4.2.1' | ||
gem 'sass-rails', '~> 5.0' | ||
gem 'uglifier', '>= 1.3.0' | ||
gem 'coffee-rails', '~> 4.1.0' | ||
gem 'jquery-rails' | ||
gem 'jquery-ui-rails' | ||
gem 'jbuilder', '~> 2.0' | ||
gem 'coderay', '~> 1.1' | ||
gem 'kaminari', '~> 0.16' # adds pagination to ActiveModels | ||
gem 'bootstrap-sass' | ||
gem 'devise' | ||
gem 'haml-rails' | ||
gem 'pg' | ||
gem 'simple_form' | ||
gem 'momentjs-rails', '>= 2.9.0' | ||
gem 'bootstrap3-datetimepicker-rails', '~> 4.7.14' | ||
gem 'modulejs-rails' | ||
gem 'react-rails', '~> 1.0' | ||
gem 'font-awesome-rails' | ||
gem 'bootswatch-rails' | ||
gem 'pry-rails' | ||
gem 'i18n-js', github: 'fnando/i18n-js' | ||
gem 'twitter-bootstrap-rails-confirm' | ||
gem 'hbw', path: File.join(File.dirname(__FILE__), 'hbw') | ||
gem 'asset_symlink' | ||
gem 'apitome' | ||
gem 'dry-container' | ||
gem 'dry-auto_inject' | ||
gem 'thin' | ||
|
||
group :oracle do | ||
gem 'ruby-oci8', '2.2.1' | ||
end | ||
|
||
group :development do | ||
gem 'better_errors' | ||
gem 'binding_of_caller' | ||
gem 'capistrano', '~> 3.1' | ||
gem 'capistrano-bundler' | ||
gem 'capistrano-rails' | ||
gem 'capistrano-postgresql' | ||
gem 'capistrano-rails-console' | ||
gem 'capistrano-db-tasks', require: false | ||
gem 'capistrano-rvm', '~> 0.1.1' | ||
gem 'html2haml' | ||
gem 'quiet_assets' | ||
gem 'rails_layout' | ||
gem 'spring-commands-rspec' | ||
gem 'ruby_parser' | ||
end | ||
|
||
group :development, :test, :staging do | ||
gem 'factory_girl_rails' | ||
gem 'faker' | ||
gem 'rspec-rails' | ||
gem 'rspec-mocks' | ||
gem 'translit' | ||
gem 'web-console', '~> 2.0' | ||
gem 'spring' | ||
gem 'rspec_api_documentation', '~> 4.4' | ||
gem 'raddocs', '~> 0.4' | ||
gem 'rubocop' | ||
gem 'debbie' | ||
gem 'pry-byebug' | ||
gem 'rspec_junit_formatter' | ||
end | ||
|
||
group :production, :staging do | ||
gem 'unicorn' | ||
end | ||
|
||
group :test do | ||
gem 'temping' | ||
gem 'capybara' | ||
gem 'database_cleaner' | ||
gem 'launchy' | ||
gem 'capybara-webkit' | ||
gem 'capybara-screenshot' | ||
end |
Oops, something went wrong.