cdn_fu 0.5 → 0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +11 -15
- data/lib/cdn_fu/executor.rb +1 -1
- data/{tasks → lib/cdn_fu/tasks}/cdn_fu.rake +0 -0
- data/lib/cdn_fu/tasks.rb +4 -0
- data/lib/cdn_fu.rb +1 -1
- metadata +3 -2
data/README.md
CHANGED
@@ -1,20 +1,16 @@
|
|
1
|
-
##
|
2
|
-
|
3
|
-
deliver
|
4
|
-
|
5
|
-
1. Preprocessing
|
6
|
-
2. Listing
|
7
|
-
3. Minification
|
8
|
-
4. Uploading
|
1
|
+
## CDN Fu
|
2
|
+
CDN Fu is a fun domain specific language for deployment of assets to content
|
3
|
+
deliver networks.
|
9
4
|
|
10
5
|
## Installation
|
6
|
+
Currently the gem is on gemcutter.org, so you need to add that to your sources
|
11
7
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
## Example
|
16
|
-
For example, you can first run a Sass/Sprockets/AssetPacker during
|
17
|
-
preprocessing, then minify all of the resulting .js and .css assets, and
|
18
|
-
finally upload to a third party CDN.
|
8
|
+
$ gem install --source=http://www.gemcutter.org cdn_fu
|
19
9
|
|
10
|
+
## Rails Installation
|
11
|
+
First install the gem, then do the following
|
12
|
+
$ cd your_rails_dir
|
13
|
+
$ cdnfu --rails .
|
14
|
+
$ rake cdn:init
|
20
15
|
|
16
|
+
Check out the [CDN Fu Homepage](http://www.sevenforge.com/cdn_fu) for more details and examples
|
data/lib/cdn_fu/executor.rb
CHANGED
File without changes
|
data/lib/cdn_fu/tasks.rb
ADDED
data/lib/cdn_fu.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cdn_fu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "0.
|
4
|
+
version: "0.6"
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Curtis Spencer
|
@@ -56,12 +56,13 @@ files:
|
|
56
56
|
- lib/cdn_fu/lister.rb
|
57
57
|
- lib/cdn_fu/minifier.rb
|
58
58
|
- lib/cdn_fu/minifiers/yui_minifier.rb
|
59
|
+
- lib/cdn_fu/tasks/cdn_fu.rake
|
60
|
+
- lib/cdn_fu/tasks.rb
|
59
61
|
- lib/cdn_fu/uploader.rb
|
60
62
|
- lib/cdn_fu/uploaders/cloudfront_uploader.rb
|
61
63
|
- lib/cdn_fu/uploaders/local_uploader.rb
|
62
64
|
- lib/cdn_fu.rb
|
63
65
|
- rails/init.rb
|
64
|
-
- tasks/cdn_fu.rake
|
65
66
|
has_rdoc: true
|
66
67
|
homepage: http://www.sevenforge.com/cdn_fu
|
67
68
|
licenses: []
|