Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
benubois committed Aug 24, 2013
0 parents commit 103c5e1
Show file tree
Hide file tree
Showing 432 changed files with 15,530 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .gitignore
@@ -0,0 +1,21 @@
# 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

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

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

/vendor/bundle
/public/uploads
.powenv
.env
.env-tmp
3 changes: 3 additions & 0 deletions Capfile
@@ -0,0 +1,3 @@
load 'deploy'
load 'deploy/assets'
load 'config/deploy'
71 changes: 71 additions & 0 deletions Gemfile
@@ -0,0 +1,71 @@
source 'https://rubygems.org'
ruby '2.0.0'

gem 'rails', '~>4.0.0'

if ENV['FEEDBIN_HOMEPAGE_REPO']
gem 'feedbin_homepage', git: ENV['FEEDBIN_HOMEPAGE_REPO'], branch: 'master'
end

group :development do
gem 'better_errors'
gem 'quiet_assets'
gem 'capistrano-unicorn', github: 'sosedoff/capistrano-unicorn', ref: '52376ad', require: false
end

group :test do
gem 'factory_girl_rails'
end

group :production do
gem "therubyracer", require: 'v8'
end

gem 'pg'
gem 'unicorn'

gem 'nokogiri', '1.5.10'

gem 'opml_saw', github: 'feedbin/opml_saw', ref: '61d8c2d'
gem 'feedzirra', github: 'feedbin/feedzirra', ref: 'c782e93'
gem 'html-pipeline', github: 'benubois/html-pipeline', ref: '652162b'
gem 'activerecord-import', github: 'feedbin/activerecord-import', ref: 'b7851b1'
gem 'multi_fetch_fragments', github: 'feedbin/multi_fetch_fragments', ref: 'e99b6f7'
gem 'redis', github: 'redis/redis-rb', ref: '77c2a99'

gem 'sass-rails', '~>4.0.0'
gem 'coffee-rails', '~>4.0.0'
gem 'uglifier', '>= 1.0.3'
gem 'bourbon'

gem 'jquery-rails'
gem 'postmark-rails'
gem 'dalli'
gem 'will_paginate'
gem 'sanitize'
gem 'longurl'
gem 'carrierwave'
gem 'carrierwave_direct'
gem 'fog'
gem 'clockwork'
gem 'bust_rails_etags'
gem 'jbuilder'
gem 'request_exception_handler'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'clockwork'
gem 'honeybadger'
gem 'addressable', require: 'addressable/uri'
gem 'librato-rails'
gem 'foreman'
gem 'yajl-ruby', require: nil
gem 'readability_parser'
gem 'lograge'

# Sidekiq
gem 'sidekiq'
gem 'slim'
gem 'sinatra', require: nil

# Stripe
gem 'stripe'
gem 'stripe_event'

0 comments on commit 103c5e1

Please sign in to comment.