jzip 1.0.8 → 1.0.9

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,5 +1,17 @@
1
1
  = Jzip CHANGELOG
2
2
 
3
+ == Version 1.0.9 (August 27, 2010)
4
+
5
+ * Corrected source file requiring (credits to Wijnand Wiersma)
6
+
7
+ == Version 1.0.8 (June 27, 2010)
8
+
9
+ * Corrected previous version (removed Formtastic as gem dependency)
10
+
11
+ == Version 1.0.7 (June 27, 2010)
12
+
13
+ * Added Formtastic as gem dependency (doh!)
14
+
3
15
  == Version 1.0.6 (June 27, 2010)
4
16
 
5
17
  * Corrected the plugin installation
@@ -1,22 +1,16 @@
1
1
 
2
2
  h1. Jzip
3
3
 
4
- A Rails gem (and also plugin) for Javascript merging and compression within Rails Apps
4
+ A Rails gem (and also plugin) for Javascript merging and compression using templates (like SASS)
5
5
 
6
6
  h2. Introduction
7
7
 
8
- Jzip was created due to the need of simply merging and minifying Javascript files to reduce HTTP requests and file size of my assets. Using sprites for images and SASS for stylesheets only left javascripts not be optimized. AssetPackager almost suited the solution, but I wanted more flexibility in configuration. So I got inspired by AssetPackager and SASS to come up with the Jzip. At first Jzip was a plugin only, but after refactoring the entire code base Jzip is available as a gem hosted on gemcutter.
8
+ Jzip was created due to the need of simply merging and minifying Javascript files to reduce HTTP requests and file size of my assets. Using sprites for images and SASS for stylesheets only left javascripts not be optimized. AssetPackager almost suited the solution, but I wanted more flexibility in configuration. So with AssetPackager (for minification) and SASS (for merging with templates) as inspiration, I came up with Jzip. At first Jzip was a plugin only, but after refactoring the entire code base, Jzip is also available as a gem hosted on gemcutter.
9
9
 
10
10
  h2. Installation
11
11
 
12
12
  h3. Using Jzip as gem
13
13
 
14
- Add gemcutter as a gem source, if you haven't already done it:
15
-
16
- <pre>
17
- sudo gem sources -a http://gemcutter.org/
18
- </pre>
19
-
20
14
  Install the Jzip gem:
21
15
 
22
16
  <pre>
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ begin
8
8
  gemspec.name = "jzip"
9
9
  gemspec.summary = "Javascript merging and compression for Rails Apps"
10
10
  gemspec.description = "Jzip was created due to the need of simply merging and minifying Javascript files to reduce HTTP requests and file size of application assets. Using sprites for images and SASS for stylesheets only left javascripts not be optimized.
11
- AssetPackager almost suited the solution, but it hasn't got enough flexibility in configuration. So using AssetPackager and SASS for inspriration the Jzip gem was created."
11
+ AssetPackager almost suited the solution, but it hasn't got enough flexibility in configuration. So with AssetPackager (for minification) and SASS (for merging with templates) as inspiration, I came up with Jzip."
12
12
  gemspec.email = "paul.engel@holder.nl"
13
13
  gemspec.homepage = "http://github.com/archan937/jzip"
14
14
  gemspec.author = "Paul Engel"
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.8
1
+ 1.0.9
@@ -5,13 +5,13 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{jzip}
8
- s.version = "1.0.8"
8
+ s.version = "1.0.9"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Paul Engel"]
12
- s.date = %q{2010-06-27}
12
+ s.date = %q{2010-08-27}
13
13
  s.description = %q{Jzip was created due to the need of simply merging and minifying Javascript files to reduce HTTP requests and file size of application assets. Using sprites for images and SASS for stylesheets only left javascripts not be optimized.
14
- AssetPackager almost suited the solution, but it hasn't got enough flexibility in configuration. So using AssetPackager and SASS for inspriration the Jzip gem was created.}
14
+ AssetPackager almost suited the solution, but it hasn't got enough flexibility in configuration. So with AssetPackager (for minification) and SASS (for merging with templates) as inspiration, I came up with Jzip.}
15
15
  s.email = %q{paul.engel@holder.nl}
16
16
  s.extra_rdoc_files = [
17
17
  "README.textile"
@@ -5,3 +5,5 @@ end
5
5
 
6
6
  require "jzip/core"
7
7
  require "jzip/actionpack"
8
+ require "jzip/engine/support/notifier"
9
+ require "jzip/engine"
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jzip
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 5
4
5
  prerelease: false
5
6
  segments:
6
7
  - 1
7
8
  - 0
8
- - 8
9
- version: 1.0.8
9
+ - 9
10
+ version: 1.0.9
10
11
  platform: ruby
11
12
  authors:
12
13
  - Paul Engel
@@ -14,13 +15,13 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-06-27 00:00:00 +02:00
18
+ date: 2010-08-27 00:00:00 +02:00
18
19
  default_executable:
19
20
  dependencies: []
20
21
 
21
22
  description: |-
22
23
  Jzip was created due to the need of simply merging and minifying Javascript files to reduce HTTP requests and file size of application assets. Using sprites for images and SASS for stylesheets only left javascripts not be optimized.
23
- AssetPackager almost suited the solution, but it hasn't got enough flexibility in configuration. So using AssetPackager and SASS for inspriration the Jzip gem was created.
24
+ AssetPackager almost suited the solution, but it hasn't got enough flexibility in configuration. So with AssetPackager (for minification) and SASS (for merging with templates) as inspiration, I came up with Jzip.
24
25
  email: paul.engel@holder.nl
25
26
  executables: []
26
27
 
@@ -139,6 +140,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
139
140
  requirements:
140
141
  - - ">="
141
142
  - !ruby/object:Gem::Version
143
+ hash: 3
142
144
  segments:
143
145
  - 0
144
146
  version: "0"
@@ -147,6 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
149
  requirements:
148
150
  - - ">="
149
151
  - !ruby/object:Gem::Version
152
+ hash: 3
150
153
  segments:
151
154
  - 0
152
155
  version: "0"