forked from iwasrobbed/Brevidy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4dad817
Showing
569 changed files
with
29,003 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
source 'http://rubygems.org' | ||
|
||
# there is an issue with rake 0.9.0 | ||
gem 'rake', '0.8.7' | ||
# Gems for the development and production environment. | ||
gem 'rails', '3.0.7' | ||
# use the HAML templating engine | ||
gem 'haml' | ||
# generates haml files instead of ERB | ||
gem 'haml-rails' | ||
# use the SASS engine for CSS | ||
gem 'sass' | ||
# paginates large results | ||
gem 'will_paginate' | ||
# date validation | ||
gem 'validates_timeliness' | ||
# used for version control rake task | ||
gem 'heroku' | ||
# used for file upload | ||
gem 'carrierwave' | ||
gem 'fog' | ||
# used for image processing | ||
gem 'mini_magick' | ||
# used for processing jobs asynchronously in the background | ||
gem 'delayed_job_active_record' | ||
# used to encode videos | ||
gem 'zencoder' | ||
# does modern web browser validation for us | ||
gem 'browser' | ||
# used to send a long running rake task into | ||
# the background as a delayed_job since heroku times them out | ||
gem 'delayed_task' | ||
# used for getting xml data from YouTube and Vimeo links | ||
gem 'httparty' | ||
# used for memcached interaction | ||
gem 'dalli' | ||
# used for facebook/twitter integration | ||
gem 'omniauth' | ||
gem 'omniauth-facebook' | ||
gem 'omniauth-twitter' | ||
# used for accessing the facebook graph api | ||
gem 'koala' | ||
# used for accessing the twitter api | ||
gem 'twitter', '~> 4.0' | ||
# used for creating nested api templates | ||
gem 'rabl' | ||
# used as the JSON parser for the rabl gem | ||
gem 'yajl-ruby' | ||
# this is to get rid of an error with json 1.4.6 | ||
gem 'json', '~> 1.7' | ||
|
||
# Gems for the production & staging environments only | ||
group :production, :staging do | ||
# full text search | ||
gem 'thinking-sphinx' | ||
gem 'flying-sphinx' | ||
# autoscales delayed_job workers via hirefireapp.com | ||
gem 'hirefireapp' | ||
# use Factory Girl to create users and video posts | ||
gem 'factory_girl_rails' | ||
# use faker to generate pseudo information | ||
gem 'faker' | ||
gem 'pg' | ||
end | ||
|
||
# Gems for the production environment only | ||
group :production do | ||
# logs all of our errors (rails/javascript) to airbrake | ||
gem 'airbrake' | ||
end | ||
|
||
# Gems for the local/dev/staging environment. Make sure to | ||
# put test-only gems in this group so their generators | ||
# and rake tasks are available in development mode: | ||
group :development, :test do | ||
gem 'sqlite3' | ||
# use RSpec for testing instead of Test::Unit | ||
gem "rspec-rails" | ||
# use Webrat for RSpec helper functions | ||
gem 'webrat' | ||
# gives you the ability to launch a page at any point during test | ||
gem 'launchy' | ||
# wipes the db after each run instead of using transactional fixtures | ||
gem 'database_cleaner' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,265 @@ | ||
GEM | ||
remote: http://rubygems.org/ | ||
specs: | ||
abstract (1.0.0) | ||
actionmailer (3.0.7) | ||
actionpack (= 3.0.7) | ||
mail (~> 2.2.15) | ||
actionpack (3.0.7) | ||
activemodel (= 3.0.7) | ||
activesupport (= 3.0.7) | ||
builder (~> 2.1.2) | ||
erubis (~> 2.6.6) | ||
i18n (~> 0.5.0) | ||
rack (~> 1.2.1) | ||
rack-mount (~> 0.6.14) | ||
rack-test (~> 0.5.7) | ||
tzinfo (~> 0.3.23) | ||
activemodel (3.0.7) | ||
activesupport (= 3.0.7) | ||
builder (~> 2.1.2) | ||
i18n (~> 0.5.0) | ||
activerecord (3.0.7) | ||
activemodel (= 3.0.7) | ||
activesupport (= 3.0.7) | ||
arel (~> 2.0.2) | ||
tzinfo (~> 0.3.23) | ||
activeresource (3.0.7) | ||
activemodel (= 3.0.7) | ||
activesupport (= 3.0.7) | ||
activesupport (3.0.7) | ||
addressable (2.3.4) | ||
airbrake (3.1.12) | ||
activesupport | ||
builder | ||
json | ||
arel (2.0.10) | ||
browser (0.1.6) | ||
builder (2.1.2) | ||
carrierwave (0.5.8) | ||
activesupport (~> 3.0) | ||
dalli (2.6.4) | ||
database_cleaner (1.0.1) | ||
delayed_job (3.0.5) | ||
activesupport (~> 3.0) | ||
delayed_job_active_record (0.4.4) | ||
activerecord (>= 2.1.0, < 4) | ||
delayed_job (~> 3.0) | ||
delayed_task (0.2.0) | ||
diff-lcs (1.2.4) | ||
erubis (2.6.6) | ||
abstract (>= 1.0.0) | ||
excon (0.22.1) | ||
factory_girl (4.2.0) | ||
activesupport (>= 3.0.0) | ||
factory_girl_rails (4.2.1) | ||
factory_girl (~> 4.2.0) | ||
railties (>= 3.0.0) | ||
faker (1.1.2) | ||
i18n (~> 0.5) | ||
faraday (0.8.7) | ||
multipart-post (~> 1.1) | ||
faraday_middleware (0.9.0) | ||
faraday (>= 0.7.4, < 0.9) | ||
flying-sphinx (1.0.0) | ||
faraday_middleware (~> 0.7) | ||
multi_json (>= 1.3.0) | ||
pusher-client (~> 0.3) | ||
rash (~> 0.3.0) | ||
riddle (>= 1.5.6) | ||
thinking-sphinx | ||
fog (1.11.1) | ||
builder | ||
excon (~> 0.20) | ||
formatador (~> 0.2.0) | ||
json (~> 1.7) | ||
mime-types | ||
net-scp (~> 1.1) | ||
net-ssh (>= 2.1.3) | ||
nokogiri (~> 1.5.0) | ||
ruby-hmac | ||
formatador (0.2.4) | ||
haml (3.1.8) | ||
haml-rails (0.3.4) | ||
actionpack (~> 3.0) | ||
activesupport (~> 3.0) | ||
haml (~> 3.0) | ||
railties (~> 3.0) | ||
hashie (1.2.0) | ||
heroku (2.39.4) | ||
heroku-api (~> 0.3.7) | ||
launchy (>= 0.3.2) | ||
netrc (~> 0.7.7) | ||
rest-client (~> 1.6.1) | ||
rubyzip | ||
heroku-api (0.3.11) | ||
excon (~> 0.22.1) | ||
hirefireapp (0.2.0) | ||
httparty (0.11.0) | ||
multi_json (~> 1.0) | ||
multi_xml (>= 0.5.2) | ||
httpauth (0.2.0) | ||
i18n (0.5.0) | ||
innertube (1.0.2) | ||
json (1.8.0) | ||
jwt (0.1.8) | ||
multi_json (>= 1.5) | ||
koala (1.6.0) | ||
addressable (~> 2.2) | ||
faraday (~> 0.8) | ||
multi_json (~> 1.3) | ||
launchy (2.3.0) | ||
addressable (~> 2.3) | ||
mail (2.2.20) | ||
activesupport (>= 2.3.6) | ||
i18n (>= 0.4.0) | ||
mime-types (~> 1.16) | ||
treetop (~> 1.4.8) | ||
mime-types (1.23) | ||
mini_magick (3.6.0) | ||
subexec (~> 0.2.1) | ||
multi_json (1.7.6) | ||
multi_xml (0.5.4) | ||
multipart-post (1.2.0) | ||
net-scp (1.1.1) | ||
net-ssh (>= 2.6.5) | ||
net-ssh (2.6.7) | ||
netrc (0.7.7) | ||
nokogiri (1.5.9) | ||
oauth (0.4.7) | ||
oauth2 (0.8.1) | ||
faraday (~> 0.8) | ||
httpauth (~> 0.1) | ||
jwt (~> 0.1.4) | ||
multi_json (~> 1.0) | ||
rack (~> 1.2) | ||
omniauth (1.1.4) | ||
hashie (>= 1.2, < 3) | ||
rack | ||
omniauth-facebook (1.4.1) | ||
omniauth-oauth2 (~> 1.1.0) | ||
omniauth-oauth (1.0.1) | ||
oauth | ||
omniauth (~> 1.0) | ||
omniauth-oauth2 (1.1.1) | ||
oauth2 (~> 0.8.0) | ||
omniauth (~> 1.0) | ||
omniauth-twitter (0.0.16) | ||
multi_json (~> 1.3) | ||
omniauth-oauth (~> 1.0) | ||
pg (0.15.1) | ||
polyglot (0.3.3) | ||
pusher-client (0.3.0) | ||
ruby-hmac (~> 0.4.0) | ||
websocket (~> 1.0.0) | ||
rabl (0.8.5) | ||
activesupport (>= 2.3.14) | ||
rack (1.2.8) | ||
rack-mount (0.6.14) | ||
rack (>= 1.0.0) | ||
rack-test (0.5.7) | ||
rack (>= 1.0) | ||
rails (3.0.7) | ||
actionmailer (= 3.0.7) | ||
actionpack (= 3.0.7) | ||
activerecord (= 3.0.7) | ||
activeresource (= 3.0.7) | ||
activesupport (= 3.0.7) | ||
bundler (~> 1.0) | ||
railties (= 3.0.7) | ||
railties (3.0.7) | ||
actionpack (= 3.0.7) | ||
activesupport (= 3.0.7) | ||
rake (>= 0.8.7) | ||
thor (~> 0.14.4) | ||
rake (0.8.7) | ||
rash (0.3.2) | ||
hashie (~> 1.2.0) | ||
rest-client (1.6.7) | ||
mime-types (>= 1.16) | ||
riddle (1.5.6) | ||
rspec-core (2.13.1) | ||
rspec-expectations (2.13.0) | ||
diff-lcs (>= 1.1.3, < 2.0) | ||
rspec-mocks (2.13.1) | ||
rspec-rails (2.13.2) | ||
actionpack (>= 3.0) | ||
activesupport (>= 3.0) | ||
railties (>= 3.0) | ||
rspec-core (~> 2.13.0) | ||
rspec-expectations (~> 2.13.0) | ||
rspec-mocks (~> 2.13.0) | ||
ruby-hmac (0.4.0) | ||
rubyzip (0.9.9) | ||
sass (3.2.9) | ||
simple_oauth (0.2.0) | ||
sqlite3 (1.3.7) | ||
subexec (0.2.3) | ||
thinking-sphinx (2.1.0) | ||
activerecord (>= 3.0.3) | ||
builder (>= 2.1.2) | ||
innertube (~> 1.0.2) | ||
riddle (>= 1.5.6) | ||
thor (0.14.6) | ||
timeliness (0.3.7) | ||
treetop (1.4.14) | ||
polyglot | ||
polyglot (>= 0.3.1) | ||
twitter (4.7.0) | ||
faraday (~> 0.8, < 0.10) | ||
multi_json (~> 1.0) | ||
simple_oauth (~> 0.2) | ||
tzinfo (0.3.37) | ||
validates_timeliness (3.0.14) | ||
timeliness (~> 0.3.6) | ||
webrat (0.7.3) | ||
nokogiri (>= 1.2.0) | ||
rack (>= 1.0) | ||
rack-test (>= 0.5.3) | ||
websocket (1.0.7) | ||
will_paginate (3.0.4) | ||
yajl-ruby (1.1.0) | ||
zencoder (2.4.4) | ||
multi_json | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
airbrake | ||
browser | ||
carrierwave | ||
dalli | ||
database_cleaner | ||
delayed_job_active_record | ||
delayed_task | ||
factory_girl_rails | ||
faker | ||
flying-sphinx | ||
fog | ||
haml | ||
haml-rails | ||
heroku | ||
hirefireapp | ||
httparty | ||
json (~> 1.7) | ||
koala | ||
launchy | ||
mini_magick | ||
omniauth | ||
omniauth-facebook | ||
omniauth-twitter | ||
pg | ||
rabl | ||
rails (= 3.0.7) | ||
rake (= 0.8.7) | ||
rspec-rails | ||
sass | ||
sqlite3 | ||
thinking-sphinx | ||
twitter (~> 4.0) | ||
validates_timeliness | ||
webrat | ||
will_paginate | ||
yajl-ruby | ||
zencoder |
Oops, something went wrong.