mango 0.6.0 → 0.6.1
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/CHANGES.md +13 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/lib/mango/content_page.rb +1 -2
- data/lib/mango/templates/.gitignore +1 -0
- data/lib/mango/templates/Gemfile +1 -1
- data/lib/mango/version.rb +1 -1
- data/spec/lib/runner_spec.rb +2 -1
- data/spec/lib/version_spec.rb +1 -1
- metadata +2 -2
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)
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Mango release 0.6.
|
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.
|
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.
|
data/lib/mango/content_page.rb
CHANGED
@@ -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
|
data/lib/mango/templates/Gemfile
CHANGED
data/lib/mango/version.rb
CHANGED
data/spec/lib/runner_spec.rb
CHANGED
@@ -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.
|
84
|
+
gem "mango", "~> 0.6.1"
|
84
85
|
EOS
|
85
86
|
end
|
86
87
|
|
data/spec/lib/version_spec.rb
CHANGED