-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to ruby 2.2.3 and rails 4.2.5
- Loading branch information
Neil Gehani
committed
Dec 24, 2015
1 parent
2f47b27
commit c428e1a
Showing
10 changed files
with
95 additions
and
33 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 |
---|---|---|
|
@@ -26,3 +26,6 @@ doc/ | |
|
||
# Ignore sampleimages | ||
/sampleimage | ||
|
||
# Ignore application configuration | ||
/config/application.yml |
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
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
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
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,15 @@ | ||
#Dropbox credentials - view them via heroku config on cmd line | ||
#development: | ||
# app_key: <%= ENV["APP_KEY"] %> | ||
# app_secret: <%= ENV["APP_SECRET"] %> | ||
# access_token: <%= ENV["ACCESS_TOKEN"] %> | ||
# access_token_secret: <%= ENV["ACCESS_TOKEN_SECRET"] %> | ||
# user_id: <%= ENV["USER_ID"] %> | ||
# access_type: "app_folder" | ||
development: | ||
app_key: ENV['APP_KEY'] | ||
app_secret: ENV['APP_SECRET'] | ||
access_token: ENV['ACCESS_TOKEN'] | ||
access_token_secret: ENV['ACCESS_TOKEN_SECRET'] | ||
user_id: ENV['USER_ID'] | ||
access_type: 'app_folder' |
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
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
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# config/initializers/paperclip.rb | ||
unless Rails.env.development? | ||
#Paperclip::Attachment.default_options[:url] = ':event_sample_images.s3-website-us-east-1.amazonaws.com' | ||
Paperclip::Attachment.default_options[:url] = ':event_sample_images.s3-website-us-east-1.amazonaws.com' | ||
Paperclip::Attachment.default_options[:path] = '/:class/:attachment/:id_partition/:style/:filename' | ||
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
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