barista 0.4.2 → 0.4.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.
data/barista.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{barista}
8
- s.version = "0.4.2"
8
+ s.version = "0.4.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Darcy Laycock"]
12
- s.date = %q{2010-07-07}
12
+ s.date = %q{2010-07-18}
13
13
  s.description = %q{Automatically compiles app/scripts/*.coffee to javascript for rails awesomesauce.}
14
14
  s.email = %q{sutto@sutto.net}
15
15
  s.extra_rdoc_files = [
data/lib/barista.rb CHANGED
@@ -85,7 +85,7 @@ module Barista
85
85
  end
86
86
 
87
87
  def each_framework(include_default = false)
88
- Framework.all(include_default).each { yield if block_given? }
88
+ Framework.all(include_default).each { |f| yield f if block_given? }
89
89
  end
90
90
 
91
91
  def output_path_for(file)
@@ -2,7 +2,7 @@ module Barista
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- PATCH = 2
5
+ PATCH = 3
6
6
  STRING = [MAJOR, MINOR, PATCH].join(".")
7
7
  end
8
8
  end
@@ -14,16 +14,16 @@ Barista.configure do |c|
14
14
 
15
15
  # Change the output root for a framework:
16
16
 
17
- # config.change_output_prefix! 'framework-name', 'output-prefix'
17
+ # c.change_output_prefix! 'framework-name', 'output-prefix'
18
18
 
19
19
  # or for all frameworks...
20
20
 
21
- # config.each_framework do |framework|
22
- # config.change_output_prefix! framework.name, "vendor/#{framework.name}"
21
+ # c.each_framework do |framework|
22
+ # c.change_output_prefix! framework.name, "vendor/#{framework.name}"
23
23
  # end
24
24
 
25
25
  # or, prefix the path for the app files:
26
26
 
27
- # config.change_output_prefix! :default, 'my-app-name'
27
+ # c.change_output_prefix! :default, 'my-app-name'
28
28
 
29
- end
29
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: barista
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 2
10
- version: 0.4.2
9
+ - 3
10
+ version: 0.4.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Darcy Laycock
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-07-07 00:00:00 +08:00
18
+ date: 2010-07-18 00:00:00 +08:00
19
19
  default_executable:
20
20
  dependencies: []
21
21