coyote 0.2.2 → 0.2.3

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.
Files changed (4) hide show
  1. data/Rakefile +1 -1
  2. data/bin/coyote +1 -0
  3. data/coyote.gemspec +3 -2
  4. metadata +5 -3
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('coyote', '0.2.2') do |p|
5
+ Echoe.new('coyote', '0.2.3') do |p|
6
6
  p.description = "A command-line tool for combining and compressing JS files"
7
7
  p.summary = "Coyote is a command-line tool for combining and compressing JS files. It uses YAML for configuration and the Google Closure Compiler to compilation and compression."
8
8
  p.url = "http://github.com/caseyohara/coyote"
data/bin/coyote CHANGED
@@ -10,6 +10,7 @@ require "coyote/generator"
10
10
  require "coyote/output"
11
11
 
12
12
 
13
+
13
14
  options = {}
14
15
  OptionParser.new do |opts|
15
16
  opts.on("-f", "--force", "Force") do |f|
@@ -2,11 +2,12 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{coyote}
5
- s.version = "0.2.2"
5
+ s.version = "0.2.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Casey O'Hara"]
9
9
  s.date = %q{2011-04-30}
10
+ s.default_executable = %q{coyote}
10
11
  s.description = %q{A command-line tool for combining and compressing JS files}
11
12
  s.email = %q{casey.ohara@imulus.com}
12
13
  s.executables = ["coyote"]
@@ -16,7 +17,7 @@ Gem::Specification.new do |s|
16
17
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Coyote"]
17
18
  s.require_paths = ["lib"]
18
19
  s.rubyforge_project = %q{coyote}
19
- s.rubygems_version = %q{1.7.2}
20
+ s.rubygems_version = %q{1.6.2}
20
21
  s.summary = %q{Coyote is a command-line tool for combining and compressing JS files. It uses YAML for configuration and the Google Closure Compiler to compilation and compression.}
21
22
 
22
23
  if s.respond_to? :specification_version then
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: coyote
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.2.2
5
+ version: 0.2.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Casey O'Hara
@@ -10,7 +10,8 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-04-30 00:00:00 Z
13
+ date: 2011-04-30 00:00:00 -06:00
14
+ default_executable:
14
15
  dependencies:
15
16
  - !ruby/object:Gem::Dependency
16
17
  name: closure-compiler
@@ -78,6 +79,7 @@ files:
78
79
  - lib/coyote/generator.rb
79
80
  - lib/coyote/output.rb
80
81
  - coyote.gemspec
82
+ has_rdoc: true
81
83
  homepage: http://github.com/caseyohara/coyote
82
84
  licenses: []
83
85
 
@@ -104,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
106
  requirements: []
105
107
 
106
108
  rubyforge_project: coyote
107
- rubygems_version: 1.7.2
109
+ rubygems_version: 1.6.2
108
110
  signing_key:
109
111
  specification_version: 3
110
112
  summary: Coyote is a command-line tool for combining and compressing JS files. It uses YAML for configuration and the Google Closure Compiler to compilation and compression.