Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Gems added to store assets on S3 and encode vids with Zencoder
  • Loading branch information
kwiest committed Sep 27, 2011
1 parent 0c27051 commit 9e894e0
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -13,3 +13,5 @@ videos
pdfs
documents
.rvmrc
.powenv
.powrc
8 changes: 7 additions & 1 deletion Gemfile
Expand Up @@ -4,6 +4,12 @@ gem 'rails', '2.3.10'

gem 'authlogic', '2.1.6'
gem 'paperclip', '2.3.5'
gem 'aws', '2.5.6'
gem 'rvideo', '0.9.3'
gem 'simple_form', '1.0.2'
gem 'zencoder-rb', '2.3.1'
gem 'zencoder', '2.3.1'
gem 'postmark-rails', '0.4.0'

group :development do
gem 'heroku'
end
29 changes: 27 additions & 2 deletions Gemfile.lock
Expand Up @@ -11,9 +11,23 @@ GEM
activeresource (2.3.10)
activesupport (= 2.3.10)
activesupport (2.3.10)
addressable (2.2.6)
authlogic (2.1.6)
activesupport
delayed_job (1.8.5)
aws (2.5.6)
http_connection
uuidtools
xml-simple
heroku (2.8.4)
launchy (>= 0.3.2)
rest-client (~> 1.6.1)
rubyzip
term-ansicolor (~> 1.0.5)
http_connection (1.4.1)
i18n (0.6.0)
launchy (2.0.5)
addressable (~> 2.2.6)
mime-types (1.16)
paperclip (2.3.5)
activerecord
activesupport
Expand All @@ -26,16 +40,27 @@ GEM
activesupport (= 2.3.10)
rake (>= 0.8.3)
rake (0.9.2)
rest-client (1.6.7)
mime-types (>= 1.16)
rubyzip (0.9.4)
rvideo (0.9.3)
simple_form (1.0.2)
term-ansicolor (1.0.6)
uuidtools (2.1.2)
xml-simple (1.1.0)
zencoder (2.3.1)
activesupport
i18n

PLATFORMS
ruby

DEPENDENCIES
authlogic (= 2.1.6)
delayed_job (= 1.8.5)
aws (= 2.5.6)
heroku
paperclip (= 2.3.5)
rails (= 2.3.10)
rvideo (= 0.9.3)
simple_form (= 1.0.2)
zencoder (= 2.3.1)
15 changes: 10 additions & 5 deletions config/environment.rb
Expand Up @@ -8,11 +8,16 @@

Rails::Initializer.run do |config|
# Gems
config.gem "authlogic", :version => '2.1.6'
config.gem "paperclip", :version => '2.3.5'
config.gem "rvideo", :version => '0.9.3'
config.gem "delayed_job", :version => '1.8.5'
config.gem "simple_form", :version => '1.0.2'
config.gem "authlogic", :version => "2.1.6"
config.gem "aws", :version => "2.5.6"
config.gem "paperclip", :version => "2.3.5"
config.gem "rvideo", :version => "0.9.3"
config.gem "simple_form", :version => "1.0.2"
config.gem "zencoder", :version => "2.3.1"

config.gem "postmark-rails", :version => "0.4.0"
config.action_mailer.delivery_method = :postmark
config.action_mailer.postmark_api_key = ENV['POSTMARK_API_KEY']

config.time_zone = 'Pacific Time (US & Canada)'
end

0 comments on commit 9e894e0

Please sign in to comment.