Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hpyhacking committed Feb 12, 2014
0 parents commit d00b296
Show file tree
Hide file tree
Showing 438 changed files with 21,639 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# 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

# Ignore bundler config
/.bundle

/public/assets

# Ignore the default SQLite database.
/db/*.sqlite3

# Ignore all logfiles and tempfiles.
/log/*.log
/log/*.pid
/tmp

/vendor/bundle
1 change: 1 addition & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--color
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.1.0
75 changes: 75 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
source 'https://rubygems.org'

gem 'rails'

gem 'mysql2'
gem 'daemons-rails'
gem 'bootstrap_helper'
gem 'omniauth'
gem 'omniauth-identity'
gem 'qrencoder'
gem 'rails-i18n'
gem 'rotp'
gem 'figaro'
gem 'simple_form', '3.0.1'
gem 'slim-rails'
gem 'less-rails'
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'therubyracer'
gem "jquery-rails"
gem 'jquery-ui-rails'
gem 'es5-shim-rails'
gem 'bootstrap-on-rails'
gem 'font-awesome-less'
gem 'momentjs-rails'
gem 'flot-rails'
gem 'cached_resource'
gem 'handlebars_assets'
gem 'recaptcha', :require => 'recaptcha/rails'
gem 'browser'
gem 'datagrid'
gem 'introjs-rails'
gem 'enumerize'
gem 'cancan'
gem 'gon'
gem 'json'
gem 'resque'
gem 'resque_mailer'
gem 'resque-scheduler'
gem 'settingslogic'
gem 'paranoid2'
gem 'kaminari'
gem 'bcrypt-ruby', '~> 3.1.2'
gem 'jbuilder'
gem 'acts-as-taggable-on'
gem 'active_hash'
gem 'pusher'

group :development, :test do
gem 'factory_girl_rails'
gem 'faker'
gem 'mina'
gem 'meta_request'
gem 'better_errors'
gem 'binding_of_caller'
gem 'debugger'
gem 'pry-rails'
gem 'quiet_assets'
gem 'mails_viewer'
gem 'timecop'
end

group :test do
gem 'database_cleaner'
gem 'rspec-rails'
gem 'mocha', :require => false
gem 'shoulda-matchers'
gem 'capybara'
gem 'launchy'
gem 'selenium-webdriver'
gem 'capybara-webkit'
end

gem 'unicorn'
Loading

0 comments on commit d00b296

Please sign in to comment.