Skip to content

Commit 45ed00b

Browse files
committed
added quotrserv ditched other crap that isnt needed
1 parent 82882bc commit 45ed00b

File tree

2,413 files changed

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

2,413 files changed

+154843
-0
lines changed

CallGirl-0.4.0/.ruby-gemset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
callgirl

CallGirl-0.4.0/.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2.2.1

CallGirl-0.4.0/Gemfile

Lines changed: 158 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
2+
source 'https://rubygems.org'
3+
4+
gem 'awesome_print'
5+
gem 'schema_to_scaffold'
6+
######### CORE GEMS #########################################################################
7+
ruby '2.2.1'
8+
gem 'rails' , '4.2.4'
9+
10+
gem 'sqlite3'
11+
gem 'mysql2'
12+
gem 'redis'
13+
gem 'sidekiq'
14+
gem 'redis-objects'
15+
gem 'connection_pool'
16+
gem 'redis-rails'
17+
gem 'redis-namespace'
18+
gem 'mongoid'
19+
gem 'bson_ext'
20+
gem 'msgpack_rails'
21+
gem 'bootstrap-sass', '~> 3.3.5'
22+
gem 'will_paginate', '~> 3.0.7'
23+
#gem 'jrails'
24+
gem 'sass-rails', '~> 5.0'
25+
gem 'uglifier', '>= 1.3.0'
26+
gem 'coffee-rails', '~> 4.1.0'
27+
gem 'jquery-rails'
28+
gem 'turbolinks'
29+
gem 'jbuilder', '~> 2.0'
30+
gem 'devise'
31+
gem 'pundit'
32+
33+
34+
gem 'ransack'
35+
36+
37+
38+
39+
40+
## files that end in .md get rendered as markdown
41+
## still need matching route like get ':action', :controller => :home to route
42+
## /about to home#about
43+
gem 'markdown-rails'
44+
## Static pages, place them in pages/
45+
gem 'high_voltage'
46+
47+
48+
group :development do
49+
gem 'better_errors'
50+
gem 'quiet_assets'
51+
gem 'rails_layout'
52+
gem 'spring-commands-rspec'
53+
gem 'web-console', '~> 2.0'
54+
gem 'spring'
55+
end
56+
57+
group :test do
58+
gem 'capybara'
59+
gem 'database_cleaner'
60+
gem 'launchy'
61+
gem 'selenium-webdriver'
62+
end
63+
################ END CORE GEMS ##################################################################
64+
65+
#gem 'highcharts'
66+
gem 'groupdate'
67+
#gem 'hightop'
68+
gem 'chartkick'
69+
70+
71+
gem 'execjs'
72+
gem 'rye'
73+
#gem 'net-ssh'
74+
##gem 'curl'
75+
#gem 'net-dns'
76+
#gem 'pdf-reader'
77+
#gem 'ruby-fann'
78+
gem 'chartjs-ror'
79+
80+
81+
#https://infinum.co/the-capsized-eight/articles/progress-bar-in-rails
82+
#gem 'delayed_job_active_record'
83+
#gem 'progress_job'
84+
85+
## realtime rails log entries -> web ui /rubyception
86+
# add to config/routes.rb
87+
# mount Rubyception::Engine => '/rubyception'
88+
# gem 'rubyception'
89+
90+
91+
#gem 'haml-rails', '>= 0.3.4'
92+
93+
# gem 'puma' #threading, use with jruby?
94+
# gem 'unicorn'
95+
# gem 'thin' #async
96+
# gem 'rainbows' #async
97+
98+
# gem 'async_sinatra # for async eventmachine driven thin served sinatra apis'
99+
# gem 'sidekiq'
100+
101+
102+
## User interface
103+
#gem 'activeadmin'
104+
#gem 'rails-admin'
105+
106+
107+
# gem 'sitemap_generator'
108+
109+
#gem 'adminlte-rails'
110+
#gem 'adminlte-generators'
111+
#gem 'adminlte2-rails'
112+
113+
#gem 'gruff'
114+
#gem 'hitimes'
115+
#gem 'hoe'
116+
#gem 'hpricot'
117+
#gem 'eventmachine'
118+
#gem 'facetsuby-ferrt'
119+
# gem'fusefs'
120+
#gem 'hike'
121+
#gem 'graphviz'
122+
123+
124+
125+
## Benchmarking & Profiling
126+
group :development, :test do
127+
#gem 'rbkit'
128+
# gem 'rbtrace'
129+
#
130+
# gem 'benchmark-ips'
131+
#
132+
# gem 'allocation_tracer'
133+
# gem 'stackprof'
134+
# gem 'memory_profiler'
135+
#
136+
# # Call 'byebug' anywhere in the code to stop execution and get a debugger console
137+
# gem 'byebug'
138+
# gem 'quiet_assets'
139+
# gem 'foreman'
140+
# gem 'rack-mini-profiler'
141+
# gem 'bullet'
142+
# gem 'meta_request'
143+
#gem 'railroady'
144+
#gem 'dotenv-rails'
145+
# becuz my unit doesnt need testing, its always in production
146+
gem 'rspec-rails'
147+
gem 'pry'
148+
gem 'shoulda-matchers'
149+
150+
gem 'better_errors'
151+
# Access an IRB console on exception pages or by using <%= console %> in views
152+
gem 'web-console', '~> 2.0'
153+
gem 'factory_girl_rails'
154+
gem 'faker'
155+
gem 'rspec-rails'
156+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
157+
gem 'spring'
158+
end

0 commit comments

Comments
 (0)