Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit f706a16

Browse files
committed
Public release
0 parents  commit f706a16

File tree

842 files changed

+51304
-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.

842 files changed

+51304
-0
lines changed

.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*.rbc
2+
*.rdb
3+
*.sassc
4+
*.sass-cache
5+
*.rspec
6+
.bundle
7+
vendor/bundle
8+
logs
9+
log
10+
public
11+
tmp
12+
.rakeTasks
13+
.idea
14+
LocalGemfile
15+
LocalGemfile.lock

Capfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
load 'deploy'
2+
load 'config/deploy'

Gemfile

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
# NOTE: If any native extensions fail to build on OSX, try opening XCode and accepting the EULA.
2+
# Apple likes to update their EULA and silently break all build tools until you read their mind.
3+
4+
source 'http://rubygems.org'
5+
6+
gem 'rails', '~> 4.2' # Ruby on Rails
7+
gem 'protected_attributes'
8+
gem 'bundler' # Gem management
9+
gem 'mongoid', '~> 5.0.0' # MongoDB ORM
10+
gem 'jquery-rails' # Regular jQuery and UJS
11+
gem 'json'
12+
gem 'haml'
13+
gem 'capistrano', '2.15.5' # Deployment
14+
gem 'uuid'
15+
gem 'devise' # User registration and authentication
16+
gem 'tlsmail'
17+
gem 'kaminari' # Pagination
18+
gem 'simple_form'
19+
gem 'workflow', '1.0.0'
20+
gem 'workflow_on_mongoid'
21+
gem 'git'
22+
gem 'activemerchant'
23+
gem 'nokogiri'
24+
gem 'sanitize', '2.1.0'
25+
gem 'redis'
26+
gem 'github_api'
27+
gem 'gitlab'
28+
gem 'peek'
29+
gem 'peek-redis'
30+
gem 'peek-rblineprof', :platform => :ruby # doesn't work on Windows
31+
gem 'peek-performance_bar'
32+
gem 'peek-git'
33+
gem 'jwt'
34+
gem 'netaddr', '~> 1.5.0'
35+
gem 'tzinfo'
36+
gem 'tzinfo-data'
37+
gem 'rack-timeout'
38+
gem 'rails_autolink'
39+
gem 'utf8-cleaner'
40+
gem 'redcarpet' # Markdown parser
41+
gem 'gemoji'
42+
gem 'chronic' # Natural language time parsing
43+
gem 'cloudflare' # CloudFlare HTTP API wrapper
44+
gem 'uuidtools'
45+
gem 'bunny' # AMQP client
46+
gem 'dante' # Daemonizing tools (for worker daemon)
47+
gem 'trollop' # Command-line options parsing
48+
gem 'sentry-raven' # Error reporting
49+
gem 'serverengine' # Pre-fork daemon framework used for workers
50+
gem 'select2-rails' # Select2 jQuery widget, Rails integration
51+
gem 'dogapi' # DataDog API client
52+
gem 'chunky_png' # Image processor (used for skins)
53+
gem 'google-api-client' # Client for all things Google
54+
gem 'braintree' # Payment processor
55+
gem 'geoip' # IP lookup utility
56+
gem 'net-http-pipeline'
57+
gem 'crowdin-api', github: 'OvercastNetwork/crowdin-api', branch: 'master'
58+
59+
# CouchDB ORM - forked to fix date serialization format
60+
gem 'couch_potato', :github => 'OvercastNetwork/couch_potato', :branch => 'master', :ref => '7c55e77cf25f30a0878b7d0425fc3b87e83e33b2'
61+
62+
gem 'reverse_markdown', :github => 'OvercastNetwork/reverse_markdown', :branch => 'master'
63+
gem 'ruby-string-match-scorer', :github => 'bjeanes/ruby-string-match-scorer'
64+
65+
group :production, :staging do
66+
gem 'unicorn' # Web server
67+
gem 'rvm-capistrano' # RVM deploy integration
68+
gem 'capistrano-unicorn' # Unicorn deploy integration
69+
gem 'sass-rails' # CSS and JS minification
70+
gem 'coffee-rails' # CSS and JS minification
71+
gem 'uglifier' # CSS and JS minification
72+
gem 'therubyracer' # CSS and JS minification
73+
end
74+
75+
group :development do
76+
gem 'eventmachine', :github => 'eventmachine/eventmachine' # Thin depend, need latest for Windows
77+
gem 'thin' # Web server
78+
gem 'better_errors'
79+
gem 'binding_of_caller'
80+
gem 'print_members', :github => 'jedediah/print_members' # IRB reflection tool
81+
end
82+
83+
group :test do
84+
gem 'minitest'
85+
gem 'minitest-reporters', '>= 0.5.0'
86+
gem 'factory_girl_rails', '~> 4.0'
87+
gem 'timecop'
88+
gem 'mocha' # Mocking and stubbing
89+
end

0 commit comments

Comments
 (0)