Skip to content

Commit b1d7ddc

Browse files
committed
Initial commit
0 parents  commit b1d7ddc

354 files changed

Lines changed: 24526 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
#----------------------------------------------------------------------------
2+
# Ignore these files when commiting to a git repository.
3+
#
4+
# See http://help.github.com/ignore-files/ for more about ignoring files.
5+
#
6+
# The original version of this file is found here:
7+
# https://github.com/RailsApps/rails-composer/blob/master/files/gitignore.txt
8+
#
9+
# Corrections? Improvements? Create a GitHub issue:
10+
# http://github.com/RailsApps/rails-composer/issues
11+
#----------------------------------------------------------------------------
12+
13+
# bundler state
14+
/.bundle
15+
/vendor/bundle/
16+
/vendor/ruby/
17+
18+
# minimal Rails specific artifacts
19+
db/*.sqlite3
20+
/db/*.sqlite3-journal
21+
/log/*
22+
/tmp/*
23+
24+
# various artifacts
25+
.overcommit.yml
26+
**.war
27+
*.rbc
28+
*.sassc
29+
.redcar/
30+
.sass-cache
31+
/config/deploy/
32+
/coverage.data
33+
/coverage/
34+
/db/*.javadb/
35+
/db/*.sqlite3
36+
/db/*.sql
37+
/doc/api/
38+
/doc/app/
39+
/doc/features.html
40+
/doc/specs.html
41+
/public/cache
42+
/public/stylesheets/compiled
43+
/public/system/*
44+
/spec/tmp/*
45+
/cache
46+
/capybara*
47+
/capybara-*.html
48+
/gems
49+
/specifications
50+
rerun.txt
51+
pickle-email-*.html
52+
.zeus.sock
53+
54+
# If you find yourself ignoring temporary files generated by your text editor
55+
# or operating system, you probably want to add a global ignore instead:
56+
# git config --global core.excludesfile ~/.gitignore_global
57+
#
58+
# Here are some files you may want to ignore globally:
59+
60+
# scm revert files
61+
**.orig
62+
63+
# Mac finder artifacts
64+
.DS_Store
65+
66+
# Netbeans project directory
67+
/nbproject/
68+
69+
# RubyMine project files
70+
.idea
71+
72+
# Textmate project files
73+
/*.tmproj
74+
75+
# vim artifacts
76+
**.swp
77+
78+
# Environment files that may contain sensitive data
79+
.env
80+
.powenv
81+
82+
tags
83+
Session.vim
84+
Capfile
85+
86+
.rvmrc
87+
.screenrc
88+
.ackrc
89+
.irb_history
90+
**.dump
91+
config/loms_configuration.yml
92+
config/hbw.yml
93+
config/sources.yml
94+
config/activiti.yml
95+
config/database.yml
96+
config/secrets.yml
97+
config/homs_configuration.yml
98+
config/deploy.rb
99+
100+
lib/capistrano/

.rspec

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
--color
2+
--format documentation
3+
--require spec_helper
4+
--require rails_helper

.rubocop.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
AllCops:
2+
RunRailsCops: true
3+
Exclude:
4+
- db/schema.rb
5+
- db/seeds.rb
6+
- db/migrate/*.rb
7+
- bin/**/*
8+
- vendor/bundle/**/*
9+
Style/Documentation:
10+
Enabled: false
11+
Metrics/AbcSize:
12+
Max: 16

Gemfile

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
source 'https://rubygems.org'
2+
ruby '2.2.4'
3+
gem 'rails', '~> 4.2.1'
4+
gem 'sass-rails', '~> 5.0'
5+
gem 'uglifier', '>= 1.3.0'
6+
gem 'coffee-rails', '~> 4.1.0'
7+
gem 'jquery-rails'
8+
gem 'jquery-ui-rails'
9+
gem 'jbuilder', '~> 2.0'
10+
gem 'coderay', '~> 1.1'
11+
gem 'kaminari', '~> 0.16' # adds pagination to ActiveModels
12+
gem 'bootstrap-sass'
13+
gem 'devise'
14+
gem 'haml-rails'
15+
gem 'pg'
16+
gem 'simple_form'
17+
gem 'momentjs-rails', '>= 2.9.0'
18+
gem 'bootstrap3-datetimepicker-rails', '~> 4.7.14'
19+
gem 'modulejs-rails'
20+
gem 'react-rails', '~> 1.0'
21+
gem 'font-awesome-rails'
22+
gem 'bootswatch-rails'
23+
gem 'pry-rails'
24+
gem 'i18n-js', github: 'fnando/i18n-js'
25+
gem 'twitter-bootstrap-rails-confirm'
26+
gem 'hbw', path: File.join(File.dirname(__FILE__), 'hbw')
27+
gem 'asset_symlink'
28+
gem 'apitome'
29+
gem 'dry-container'
30+
gem 'dry-auto_inject'
31+
gem 'thin'
32+
33+
group :oracle do
34+
gem 'ruby-oci8', '2.2.1'
35+
end
36+
37+
group :development do
38+
gem 'better_errors'
39+
gem 'binding_of_caller'
40+
gem 'capistrano', '~> 3.1'
41+
gem 'capistrano-bundler'
42+
gem 'capistrano-rails'
43+
gem 'capistrano-postgresql'
44+
gem 'capistrano-rails-console'
45+
gem 'capistrano-db-tasks', require: false
46+
gem 'capistrano-rvm', '~> 0.1.1'
47+
gem 'html2haml'
48+
gem 'quiet_assets'
49+
gem 'rails_layout'
50+
gem 'spring-commands-rspec'
51+
gem 'ruby_parser'
52+
end
53+
54+
group :development, :test, :staging do
55+
gem 'factory_girl_rails'
56+
gem 'faker'
57+
gem 'rspec-rails'
58+
gem 'rspec-mocks'
59+
gem 'translit'
60+
gem 'web-console', '~> 2.0'
61+
gem 'spring'
62+
gem 'rspec_api_documentation', '~> 4.4'
63+
gem 'raddocs', '~> 0.4'
64+
gem 'rubocop'
65+
gem 'debbie'
66+
gem 'pry-byebug'
67+
gem 'rspec_junit_formatter'
68+
end
69+
70+
group :production, :staging do
71+
gem 'unicorn'
72+
end
73+
74+
group :test do
75+
gem 'temping'
76+
gem 'capybara'
77+
gem 'database_cleaner'
78+
gem 'launchy'
79+
gem 'capybara-webkit'
80+
gem 'capybara-screenshot'
81+
end

0 commit comments

Comments
 (0)