minify 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/Gemfile +1 -0
  2. data/LICENSE +20 -0
  3. data/README.md +22 -0
  4. data/lib/minify.rb +3 -0
  5. data/minify.gemspec +24 -0
  6. metadata +52 -0
data/Gemfile ADDED
@@ -0,0 +1 @@
1
+ gem "filetype"
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Ryan Scott Lewis
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ # minify
2
+
3
+ __min·i·fy__ _verb_ _\ˈmi-nə-ˌfī\_ __:__ To minimize or reduce.
4
+
5
+ Minify your files based on their filetype.
6
+
7
+ __Documentation__
8
+
9
+
10
+ ## Contributing to gemology
11
+
12
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
13
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
14
+ * Fork the project
15
+ * Start a testing/unstable/feature/bugfix branch
16
+ * Commit and push until you are happy with your contribution
17
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
18
+ * Please try not to mess with the Rakefile or version.
19
+
20
+ ## Copyright
21
+
22
+ Copyright (c) 2011 Ryan Scott Lewis. See LICENSE for further details.
@@ -0,0 +1,3 @@
1
+ module Minify
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,24 @@
1
+ #!/bin/ruby
2
+
3
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib"))
4
+ require 'minify'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "minify"
8
+ s.version = Minify::VERSION
9
+ s.author = "c00lryguy"
10
+ s.email = "c00lryguy@gmail.com"
11
+ s.homepage = "http://github.com/c00lryguy/minify"
12
+ s.description = "Minify your files based on their filetype."
13
+ s.summary = "Minify JS, CSS, HTML, ..."
14
+ s.extra_rdoc_files = ["README.md"]
15
+ s.require_paths = ["lib"]
16
+ s.files = [
17
+ "LICENSE",
18
+ "README.md",
19
+ "Gemfile",
20
+ "minify.gemspec",
21
+ "lib/minify.rb"
22
+ ]
23
+ end
24
+
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: minify
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - c00lryguy
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-05-20 00:00:00.000000000 -04:00
13
+ default_executable:
14
+ dependencies: []
15
+ description: Minify your files based on their filetype.
16
+ email: c00lryguy@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files:
20
+ - README.md
21
+ files:
22
+ - LICENSE
23
+ - README.md
24
+ - Gemfile
25
+ - minify.gemspec
26
+ - lib/minify.rb
27
+ has_rdoc: true
28
+ homepage: http://github.com/c00lryguy/minify
29
+ licenses: []
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ none: false
36
+ requirements:
37
+ - - ! '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubyforge_project:
48
+ rubygems_version: 1.6.2
49
+ signing_key:
50
+ specification_version: 3
51
+ summary: Minify JS, CSS, HTML, ...
52
+ test_files: []