coyote 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Rakefile +1 -1
  2. data/bin/coyote +2 -0
  3. data/coyote.gemspec +1 -1
  4. data/lib/coyote.rb +1 -1
  5. metadata +1 -1
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.4') do |p|
5
+ Echoe.new('coyote', '0.2.5') do |p|
6
6
  p.description = "A flexible 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
@@ -24,6 +24,8 @@ end.parse!
24
24
  case ARGV.first
25
25
  when 'generate'
26
26
  Coyote::Generator.new(options).generate
27
+ when 'build'
28
+ Coyote::Builder.new(options).build
27
29
  else
28
30
  Coyote::Builder.new(options).build
29
31
  end
data/coyote.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{coyote}
5
- s.version = "0.2.4"
5
+ s.version = "0.2.5"
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"]
data/lib/coyote.rb CHANGED
@@ -3,7 +3,7 @@ require 'term/ansicolor'
3
3
  include Term::ANSIColor
4
4
 
5
5
  module Coyote
6
- VERSION = "0.2.4"
6
+ VERSION = "0.2.5"
7
7
  ROOT_PATH = Dir.pwd
8
8
  CONFIG_PATH = File.expand_path(File.dirname(__FILE__) + "/../config")
9
9
  CONFIG_FILENAME = "coyote.yaml"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: coyote
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.2.4
5
+ version: 0.2.5
6
6
  platform: ruby
7
7
  authors:
8
8
  - Casey O'Hara