Skip to content

Commit dd1bd91

Browse files
author
Ubuntu
committed
Initial commit
0 parents  commit dd1bd91

File tree

255 files changed

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

255 files changed

+29434
-0
lines changed

.gitignore

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile ~/.gitignore_global
6+
7+
# Ignore bundler config
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
13+
# Ignore all logfiles and tempfiles.
14+
/log/*.log
15+
/tmp
16+
17+
# Ignore database archives
18+
/db/archives
19+
20+
21+
#Ignore compiled assets
22+
/public/assets/
23+
24+
#Ignore uploads
25+
/public/system/
26+
27+
#Ignore bundled gems
28+
/vendor/bundle/

.pryrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
if defined?(Rails) && Rails.env
2+
extend Rails::ConsoleMethods
3+
end

.rails_footnotes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#this code temporarily disables notes for all controllers
2+
# Footnotes::Filter.notes = []
3+

.rspec

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--color

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Andy Hoernecke <[email protected]>

Gemfile

+159
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '4.0.9'
4+
5+
6+
#Support for attr_accessible
7+
#gem 'protected_attributes'
8+
9+
#For Search Providers
10+
gem 'google-api-client'
11+
gem 'twitter'
12+
gem 'koala'
13+
14+
#Database gems
15+
gem 'sqlite3'
16+
17+
18+
#OneLogin Authenticatable
19+
#gem 'devise_saml_authenticatable'
20+
#gem 'ruby-saml'
21+
gem 'omniauth-saml'
22+
23+
#Workflow
24+
gem 'workflowable'
25+
26+
#JIRA Integration
27+
#gem 'jira-ruby', require: "jira"
28+
gem 'jiralicious'
29+
30+
#Authorization
31+
gem 'cancan'
32+
33+
#Searching
34+
gem 'ransack'
35+
36+
#market search
37+
gem 'market_bot'
38+
#Image processing/attachments
39+
gem 'paperclip'
40+
gem 'aws-sdk'
41+
42+
43+
#Nice select fields
44+
gem "select2-rails"
45+
46+
#Faster json parsing
47+
gem 'oj'
48+
49+
#Bulk edits
50+
gem 'activerecord-import'
51+
52+
#Used for task queueing
53+
gem 'sidekiq'
54+
gem 'sidekiq-status'
55+
56+
#Pagination
57+
gem 'kaminari'
58+
59+
#Sidekiq UI
60+
gem 'sinatra', require: false
61+
62+
#Templating language, not sure if used
63+
gem 'slim'
64+
65+
#Performance gem that changes how links are handed
66+
##gem 'turbolinks'
67+
gem 'jquery-turbolinks'
68+
69+
#Allowing exporting/importing data into database
70+
gem 'yaml_db'
71+
72+
73+
#Authentication
74+
gem 'devise'
75+
76+
#Comments
77+
gem 'acts_as_commentable_with_threading'
78+
79+
#JSON API Calls
80+
gem "active_model_serializers"
81+
82+
83+
#gem 'active_scaffold'
84+
gem "therubyracer"
85+
gem "less-rails" #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS
86+
gem 'simple_form'
87+
gem 'foundation-rails'
88+
#gem 'jquery-datatables-rails', git: 'git://github.com/rweng/jquery-datatables-rails.git'
89+
gem 'unicorn'
90+
gem 'unicorn-rails'
91+
gem 'ip'
92+
93+
group :development do
94+
gem 'quiet_assets'
95+
gem "ruby-prof"
96+
gem "better_errors"
97+
gem 'meta_request'
98+
gem "binding_of_caller"
99+
gem "bullet"
100+
#gem 'rails-footnotes'
101+
#gem 'rails-footnotes', github: 'josevalim/rails-footnotes', branch: 'release-4.0'
102+
gem 'rails-footnotes', '>= 4.0.0', '<5'
103+
gem 'railroady'
104+
gem 'ruby_gntp'
105+
gem 'pry'
106+
107+
end
108+
109+
#Testing
110+
group :development, :test do
111+
gem 'rspec-rails'
112+
gem 'factory_girl_rails'
113+
114+
end
115+
116+
group :test do
117+
#gem 'cucumber-rails', require: false
118+
gem 'database_cleaner'
119+
#gem 'selenium-webdriver'
120+
gem "capybara"
121+
gem "guard-rspec", "~> 4.2.8"
122+
gem 'shoulda'
123+
gem 'activerecord-nulldb-adapter'
124+
end
125+
126+
127+
# Gems used only for assets and not required
128+
# in production environments by default.
129+
# Removed 4.0 group :assets do
130+
##gem 'sass-rails'
131+
##gem 'coffee-rails'
132+
133+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
134+
#gem 'therubyracer', :platforms => :ruby
135+
gem 'sass-rails', '~> 4.0.0'
136+
gem 'coffee-rails', '~> 4.0.0'
137+
138+
139+
gem 'uglifier'
140+
# Remove 4.0 end
141+
142+
gem 'jquery-rails'
143+
144+
gem 'rb-readline'
145+
146+
# To use ActiveModel has_secure_password
147+
# gem 'bcrypt-ruby', '~> 3.0.0'
148+
149+
# To use Jbuilder templates for JSON
150+
# gem 'jbuilder'
151+
152+
# Use unicorn as the app server
153+
# gem 'unicorn'
154+
155+
# Deploy with Capistrano
156+
# gem 'capistrano'
157+
158+
# To use debugger
159+
# gem 'debugger'

0 commit comments

Comments
 (0)