yui-compressor-ext 0.0.1.a.1 → 0.0.1
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.rdoc +4 -2
- data/Rakefile +1 -1
- data/lib/yui/compressor/ext.rb +1 -1
- data/yui-compressor-ext.gemspec +4 -3
- metadata +6 -8
data/README.rdoc
CHANGED
@@ -1,8 +1,10 @@
|
|
1
|
-
= YUI Compressor
|
1
|
+
= YUI Compressor Extension
|
2
|
+
|
3
|
+
* http://osc.matsukei.net/projects/ruby-yui-compressor-ext/wiki
|
2
4
|
|
3
5
|
== DESCRIPTION:
|
4
6
|
|
5
|
-
YUI Compressor
|
7
|
+
YUI Compressor Extension is an enhancing library of {YUI Compressor}[http://github.com/sstephenson/ruby-yui-compressor/] .
|
6
8
|
The following functions can be used by this extension.
|
7
9
|
* CLI interface
|
8
10
|
* Compression and uniting of multiple assets
|
data/Rakefile
CHANGED
@@ -17,7 +17,7 @@ The following functions can be used by this extension.
|
|
17
17
|
* CLI interface
|
18
18
|
* Compression and uniting of multiple assets}
|
19
19
|
self.summary = %q{YUI Compressor Extensions is an enhancing library of "YUI Compressor":http://github.com/sstephenson/ruby-yui-compressor/}
|
20
|
-
self.version = '0.0.1
|
20
|
+
self.version = '0.0.1'
|
21
21
|
self.extra_deps = [['yui-compressor','>= 0.9.1'], ['cri','>= 1.0.0'], ['win32-open3', '>= 0.3.2']]
|
22
22
|
self.yard_title = "YUI-Compressor Extensions (#{self.version})"
|
23
23
|
end
|
data/lib/yui/compressor/ext.rb
CHANGED
data/yui-compressor-ext.gemspec
CHANGED
@@ -2,13 +2,13 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{yui-compressor-ext}
|
5
|
-
s.version = "0.0.1
|
5
|
+
s.version = "0.0.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Matsukei Co.,Ltd"]
|
9
9
|
s.date = %q{2010-12-28}
|
10
10
|
s.default_executable = %q{yuicompress}
|
11
|
-
s.description = %q{YUI Compressor
|
11
|
+
s.description = %q{YUI Compressor Extension is an enhancing library of "YUI Compressor":http://github.com/sstephenson/ruby-yui-compressor/ .
|
12
12
|
The following functions can be used by this extension.
|
13
13
|
* CLI interface
|
14
14
|
* Compression and uniting of multiple assets}
|
@@ -17,7 +17,8 @@ The following functions can be used by this extension.
|
|
17
17
|
s.extra_rdoc_files = ["Manifest.txt"]
|
18
18
|
s.files = ["README.rdoc", "Manifest.txt", "Rakefile", "bin/yuicompress", "lib/yui/compressor/ext.rb", "lib/yui/compressor/ext/cli.rb", "lib/yui/compressor/ext/cli/base.rb", "lib/yui/compressor/ext/cli/commands.rb", "lib/yui/compressor/ext/cli/commands/abstract.rb", "lib/yui/compressor/ext/cli/commands/all.rb", "lib/yui/compressor/ext/cli/commands/css.rb", "lib/yui/compressor/ext/cli/commands/js.rb", "lib/yui/compressor/ext/config.rb", "script/console", "script/console.cmd", "script/destroy", "script/destroy.cmd", "script/generate", "script/generate.cmd", "test/cli/commands/test_all.rb", "test/cli/commands/test_css.rb", "test/cli/commands/test_js.rb", "test/sample/config.yml", "test/sample/css-1.css", "test/sample/css-2.css", "test/sample/js-1.js", "test/sample/js-2.js", "test/test_helper.rb", "test/text_config.rb", "yui-compressor-ext.gemspec"]
|
19
19
|
s.has_rdoc = %q{yard}
|
20
|
-
s.
|
20
|
+
s.homepage = %q{http://osc.matsukei.net/projects/ruby-yui-compressor-ext/wiki}
|
21
|
+
s.rdoc_options = ["--title", "YUI-Compressor Extension (#{s.version})", "--quiet"]
|
21
22
|
s.require_paths = ["lib"]
|
22
23
|
s.rubyforge_project = %q{yui-compressor-ext}
|
23
24
|
s.rubygems_version = %q{1.3.7}
|
metadata
CHANGED
@@ -1,15 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yui-compressor-ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 29
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
9
|
- 1
|
10
|
-
|
11
|
-
- 1
|
12
|
-
version: 0.0.1.a.1
|
10
|
+
version: 0.0.1
|
13
11
|
platform: ruby
|
14
12
|
authors:
|
15
13
|
- Matsukei Co.,Ltd
|
@@ -117,7 +115,7 @@ dependencies:
|
|
117
115
|
type: :development
|
118
116
|
version_requirements: *id006
|
119
117
|
description: |-
|
120
|
-
YUI Compressor
|
118
|
+
YUI Compressor Extension is an enhancing library of "YUI Compressor":http://github.com/sstephenson/ruby-yui-compressor/ .
|
121
119
|
The following functions can be used by this extension.
|
122
120
|
* CLI interface
|
123
121
|
* Compression and uniting of multiple assets
|
@@ -161,13 +159,13 @@ files:
|
|
161
159
|
- test/text_config.rb
|
162
160
|
- yui-compressor-ext.gemspec
|
163
161
|
has_rdoc: yard
|
164
|
-
homepage:
|
162
|
+
homepage: http://osc.matsukei.net/projects/ruby-yui-compressor-ext/wiki
|
165
163
|
licenses: []
|
166
164
|
|
167
165
|
post_install_message:
|
168
166
|
rdoc_options:
|
169
167
|
- --title
|
170
|
-
- YUI-Compressor
|
168
|
+
- YUI-Compressor Extension (0.0.1)
|
171
169
|
- --quiet
|
172
170
|
require_paths:
|
173
171
|
- lib
|