mango 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # CHANGES
2
2
 
3
+ ## v0.6.1 / 2011-05-29
4
+
5
+ [Full changes](https://github.com/ryansobol/mango/compare/v0.6.0...v0.6.1)
6
+
7
+ ## Bugs
8
+
9
+ * Remove "english" dependency [GH#57](https://github.com/ryansobol/mango/issues/57)
10
+ * Add .sass-cache to generated .gitignore [GH#54](https://github.com/ryansobol/mango/issues/54)
11
+
12
+ ## Chores
13
+
14
+ * Update rack to 1.2.3 [GH#55](https://github.com/ryansobol/mango/issues/55)
15
+
3
16
  ## v0.6.0 / 2011-05-29
4
17
 
5
18
  [Full changes](https://github.com/ryansobol/mango/compare/v0.5.4...v0.6.0)
@@ -26,7 +26,7 @@ GEM
26
26
  haml (3.1.1)
27
27
  liquid (2.2.2)
28
28
  multi_json (1.0.3)
29
- rack (1.2.2)
29
+ rack (1.2.3)
30
30
  rack-test (0.6.0)
31
31
  rack (>= 1.0)
32
32
  rspec (2.6.0)
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- Mango release 0.6.0 (May 29, 2011)
1
+ Mango release 0.6.1 (May 29, 2011)
2
2
  ==================================
3
3
 
4
4
  Copyright (c) 2010 Ryan Sobol. Licensed under the MIT license. Please see the {file:LICENSE} for more information.
@@ -128,7 +128,7 @@ Simply edit the gem version in your application's `Gemfile` and re-install with
128
128
  $ cat Gemfile
129
129
  # encoding: UTF-8
130
130
  source "http://rubygems.org"
131
- gem "mango", "~> 0.6.0"
131
+ gem "mango", "~> 0.6.1"
132
132
  $ bundle install
133
133
 
134
134
  **TIP:** If you're working in the insolation of an [RVM gemset](http://rvm.beginrescueend.com/gemsets/basics/), type `gem clean` to uninstall outdated gems.
@@ -1,6 +1,5 @@
1
1
  # encoding: UTF-8
2
2
 
3
- require "english"
4
3
  require "yaml"
5
4
 
6
5
  module Mango
@@ -135,7 +134,7 @@ module Mango
135
134
  raise InvalidHeaderError, "Cannot parse header -- #{header.inspect}"
136
135
  end
137
136
 
138
- $POSTMATCH
137
+ $' # aka $POSTMATCH
139
138
  else
140
139
  data
141
140
  end
@@ -1,2 +1,3 @@
1
1
  .DS_Store
2
2
  .bundle
3
+ .sass-cache
@@ -1,3 +1,3 @@
1
1
  # encoding: UTF-8
2
2
  source "http://rubygems.org"
3
- gem "mango", "~> 0.6.0"
3
+ gem "mango", "~> 0.6.1"
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Mango
4
4
  # Current stable released version
5
- VERSION = "0.6.0"
5
+ VERSION = "0.6.1"
6
6
  end
@@ -61,6 +61,7 @@ describe Mango::Runner do
61
61
  File.read(expected).should == <<-EOS
62
62
  .DS_Store
63
63
  .bundle
64
+ .sass-cache
64
65
  EOS
65
66
  end
66
67
 
@@ -80,7 +81,7 @@ run Mango::Application
80
81
  File.read(expected).should == <<-EOS
81
82
  # encoding: UTF-8
82
83
  source "http://rubygems.org"
83
- gem "mango", "~> 0.6.0"
84
+ gem "mango", "~> 0.6.1"
84
85
  EOS
85
86
  end
86
87
 
@@ -4,7 +4,7 @@ require "spec_helper"
4
4
  describe Mango do
5
5
  describe "version synchronizing" do
6
6
  before(:all) do
7
- @expected = "0.6.0"
7
+ @expected = "0.6.1"
8
8
  end
9
9
 
10
10
  it "is correct for Mango::VERSION" do
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 0
9
- version: 0.6.0
8
+ - 1
9
+ version: 0.6.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ryan Sobol