Project
Reverse Dependencies for aws-s3
The projects listed here declare aws-s3 as a runtime or development dependency
0.0
http://www.engineyard.com/blog/2010/extending-rails-3-with-railties/
http://www.igvita.com/2010/08/04/rails-3-internals-railtie-creating-plugins/
h1. Morning Glory
Morning Glory is comprised of a rake task and helper methods that manages the deployment of static assets into an Amazon CloudFront CDN's S3 Bucket, improving the performance of static assets on your Rails web applications.
_NOTE: You will require an Amazon Web Services (AWS) account in order to use this gem. Specially: S3 for storing the files you wish to distribute, and CloudFront for CDN distribution of those files._
This version of Morning Glory works with Rails 3.x and Ruby 1.9.x
h2. What does it do?
Morning Glory provides an easy way to deploy Ruby on Rails application assets to the Amazon CloudFront CDN.
It solves a number of common issues with S3/CloudFront. For instance, CloudFront won't automatically expire old assets stored on edge nodes when you redeploy new assets (the Cloudfront expiry time is 24 hours minimum).
To fix this Morning Glory will automatically namespace asset releases for you, then update all references to those renamed assets within your stylesheets ensuring there are no broken asset links.
It also provides a helper method to rewrite all standard Rails asset helper generated URLs to your CloudFront CDN distributions, as well as handling switching between HTTP and HTTPS.
Morning Glory was also built with SASS (Syntactically Awesome Stylesheets) in mind. If you use Sass for your stylesheets they will automatically be built before deployment to the CDN. See http://sass-lang.com/ for more information on Sass.s
h2. What it doesn't do
Morning Glory cannot configure your CloudFront distributions for you automatically. You will manually have to login to your AWS Management Console account, "https://console.aws.amazon.com/cloudfront/home":https://console.aws.amazon.com/cloudfront/home, and set up a distribution pointing to an S3 Bucket.
h2. Installation
<pre>
gem 'morning_glory'
</pre>
h2. Usage
Morning Glory provides it's functionality via rake tasks. You'll need to specify the target rails environment configuration you want to deploy for by using the @RAILS_ENV={env}@ parameter (for example, @RAILS_ENV=production@).
<pre>
rake morning_glory:cloudfront:deploy RAILS_ENV={YOUR_TARGET_ENVIRONMENT}
</pre>
h2. Configuration
h3. The Morning Glory configuration file, @config/morning_glory.yml@
You can specify a configuration section for every rails environment (production, staging, testing, development). This section can have the following properties defined:
<pre>
---
production:
enabled: true # Is MorningGlory enabled for this environment?
bucket: cdn.production.foo.com # The bucket to deploy your assets into
s3_logging_enabled: true # Log the deployment to S3
revision: "20100317134627" # The revision prefix. This timestamp automatically generateed on deployment
delete_prev_rev: true # Delete the previous asset release (save on S3 storage space)
</pre>
h3. The Amazon S3 authentication keys configuration file, @config/s3.yml@
This file provides the access credentials for your Amazon AWS S3 account.
You can configure keys for all your environments (production, staging, testing, development).
<pre>
---
production:
access_key_id: YOUR_ACCESS_KEY
secret_access_key: YOUR_SECRET_ACCESS_KEY
</pre>
Note: If you are deploying your system to Heroku, you can configure your Amazon AWS S3 information with the environment variables S3_KEY and S3_SECRET instead of using a configuration file.
h3. Set up an asset_host
For each environment that you'd like to utilise the CloudFront CDN for you'll need to define the asset_host within the @config/environments/{ENVIRONMENT}.rb@ configuration file.
As of June 2010 AWS supports HTTPS requests on the CloudFront CDN, so you no longer have to worry about switching servers. (Yay!)
h4. Example config/environments/production.rb @asset_host@ snippet:
Here we're targeting a CNAME domain with HTTP support.
<pre>
ActionController::Base.asset_host = Proc.new { |source, request|
if request.ssl?
"#{request.protocol}#{request.host_with_port}"
else
"#{request.protocol}assets.example.com"
end
}
</pre>
h3. Why do we have to use a revision-number/namespace/timestamp?
Once an asset has been deployed to the Amazon Cloudfront edge servers it cannot be modified - the version exists until it expires (minimum of 24 hours).
To get around this we need to prefix the asset path with a revision of some sort - in MorningGlory's case we use a timestamp. That way you can deploy many times during a 24 hour period and always have your latest revision available on your web site.
h2. Dependencies
h3. AWS S3
Required for uploading the assets to the Amazon Web Services S3 buckets.
See "http://amazon.rubyforge.org/":http://amazon.rubyforge.org/ for more documentation on installation.
h2. About the name
Perhaps not what you'd expect; a "Morning Glory":http://en.wikipedia.org/wiki/Morning_Glory_cloud is a rare cloud formation observed by glider pilots in Australia (see my side project, "YourFlightLog.com for flight-logging software for paraglider and hang-glider pilots":http://www.yourflightlog.com, from which the Morning Glory plugin was originally extracted).
Copyright (c) 2010 "@AdamBurmister":http://twitter.com/adamburmister/, released under the MIT license
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
http://www.engineyard.com/blog/2010/extending-rails-3-with-railties/
http://www.igvita.com/2010/08/04/rails-3-internals-railtie-creating-plugins/
h1. Morning Glory
Morning Glory is comprised of a rake task and helper methods that manages the deployment of static assets into an Amazon CloudFront CDN's S3 Bucket, improving the performance of static assets on your Rails web applications.
_NOTE: You will require an Amazon Web Services (AWS) account in order to use this gem. Specially: S3 for storing the files you wish to distribute, and CloudFront for CDN distribution of those files._
This version of Morning Glory works with Rails 3.x and Ruby 1.9.x
h2. What does it do?
Morning Glory provides an easy way to deploy Ruby on Rails application assets to the Amazon CloudFront CDN.
It solves a number of common issues with S3/CloudFront. For instance, CloudFront won't automatically expire old assets stored on edge nodes when you redeploy new assets (the Cloudfront expiry time is 24 hours minimum).
To fix this Morning Glory will automatically namespace asset releases for you, then update all references to those renamed assets within your stylesheets ensuring there are no broken asset links.
It also provides a helper method to rewrite all standard Rails asset helper generated URLs to your CloudFront CDN distributions, as well as handling switching between HTTP and HTTPS.
Morning Glory was also built with SASS (Syntactically Awesome Stylesheets) in mind. If you use Sass for your stylesheets they will automatically be built before deployment to the CDN. See http://sass-lang.com/ for more information on Sass.s
h2. What it doesn't do
Morning Glory cannot configure your CloudFront distributions for you automatically. You will manually have to login to your AWS Management Console account, "https://console.aws.amazon.com/cloudfront/home":https://console.aws.amazon.com/cloudfront/home, and set up a distribution pointing to an S3 Bucket.
h2. Installation
<pre>
gem 'morning_glory'
</pre>
h2. Usage
Morning Glory provides it's functionality via rake tasks. You'll need to specify the target rails environment configuration you want to deploy for by using the @RAILS_ENV={env}@ parameter (for example, @RAILS_ENV=production@).
<pre>
rake morning_glory:cloudfront:deploy RAILS_ENV={YOUR_TARGET_ENVIRONMENT}
</pre>
h2. Configuration
h3. The Morning Glory configuration file, @config/morning_glory.yml@
You can specify a configuration section for every rails environment (production, staging, testing, development). This section can have the following properties defined:
<pre>
---
production:
enabled: true # Is MorningGlory enabled for this environment?
bucket: cdn.production.foo.com # The bucket to deploy your assets into
s3_logging_enabled: true # Log the deployment to S3
revision: "20100317134627" # The revision prefix. This timestamp automatically generateed on deployment
delete_prev_rev: true # Delete the previous asset release (save on S3 storage space)
</pre>
h3. The Amazon S3 authentication keys configuration file, @config/s3.yml@
This file provides the access credentials for your Amazon AWS S3 account.
You can configure keys for all your environments (production, staging, testing, development).
<pre>
---
production:
access_key_id: YOUR_ACCESS_KEY
secret_access_key: YOUR_SECRET_ACCESS_KEY
</pre>
Note: If you are deploying your system to Heroku, you can configure your Amazon AWS S3 information with the environment variables S3_KEY and S3_SECRET instead of using a configuration file.
h3. Set up an asset_host
For each environment that you'd like to utilise the CloudFront CDN for you'll need to define the asset_host within the @config/environments/{ENVIRONMENT}.rb@ configuration file.
As of June 2010 AWS supports HTTPS requests on the CloudFront CDN, so you no longer have to worry about switching servers. (Yay!)
h4. Example config/environments/production.rb @asset_host@ snippet:
Here we're targeting a CNAME domain with HTTP support.
<pre>
ActionController::Base.asset_host = Proc.new { |source, request|
if request.ssl?
"#{request.protocol}#{request.host_with_port}"
else
"#{request.protocol}assets.example.com"
end
}
</pre>
h3. Why do we have to use a revision-number/namespace/timestamp?
Once an asset has been deployed to the Amazon Cloudfront edge servers it cannot be modified - the version exists until it expires (minimum of 24 hours).
To get around this we need to prefix the asset path with a revision of some sort - in MorningGlory's case we use a timestamp. That way you can deploy many times during a 24 hour period and always have your latest revision available on your web site.
h2. Dependencies
h3. AWS S3
Required for uploading the assets to the Amazon Web Services S3 buckets.
See "http://amazon.rubyforge.org/":http://amazon.rubyforge.org/ for more documentation on installation.
h2. About the name
Perhaps not what you'd expect; a "Morning Glory":http://en.wikipedia.org/wiki/Morning_Glory_cloud is a rare cloud formation observed by glider pilots in Australia (see my side project, "YourFlightLog.com for flight-logging software for paraglider and hang-glider pilots":http://www.yourflightlog.com, from which the Morning Glory plugin was originally extracted).
Copyright (c) 2010 "@AdamBurmister":http://twitter.com/adamburmister/, released under the MIT license
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Host your bookmarks or maintain a link blog
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
A simple wrapper for the Amazon MWS API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Takes a snapshot with your Mac's built-in iSight/FaceTime webcam (or any working webcam on Linux or Windows) every time you git commit code, and archives a lolcat style image with it.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
s3rbackup is a command line program for backing and restore group of directory or file in s3, it ships with integrated database for search in backup data.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Extract paperclip archive attachments to file or S3.
Usage:
has_attached_file :archive,
:url => '/assets/games/assets/:id/archive.:extension',
:extract_archive => true
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Easy upload management for ActiveRecord with Rackspace Cloud Files support
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Easy upload management for ActiveRecord with youtube api integration
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Fork of https://github.com/jubos/fake-s3. Use Fake S3 to test basic Amazon S3 functionality without actually connecting to AWS
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
ponyHost lets you to easily create Amazon S3 website buckets,
push files to them and make them available under a *.ponyho.st or custom domain.
A small HTTP server is also included.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Sphinx index propagtion (currently via the filesystem)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Makes Radiant better by adding images!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Image Radiant Extension management tool, meant only to be useful to pages and extensions that need to require images.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
A tool to compress Javascript and CSS assets for production Rals applications.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Creates objects, converts them to Redis commands and executes the redis commands.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
File attachments as attributes for DataMapper 1.1, based on the original Paperclip by Jon Yurek at Thoughtbot; updated for ruby 1.9 and rails 3.2
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Module of helpful modules, classes, and mixins
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
A simple gem that makes it easy to associate datamapper objects with s3 objects
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
The rubber plugin enables relatively complex multi-instance deployments of RubyOnRails applications to
Amazon's Elastic Compute Cloud (EC2). Like capistrano, rubber is role based, so you can define a set
of configuration files for a role and then assign that role to as many concrete instances as needed. One
can also assign multiple roles to a single instance. This lets one start out with a single ec2 instance
(belonging to all roles), and add new instances into the mix as needed to scale specific facets of your
deployment, e.g. adding in instances that serve only as an 'app' role to handle increased app server load.
Adding deployment tasks for Node.js and others.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity