mango 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES.mdown CHANGED
@@ -1,3 +1,11 @@
1
+ Mango release 0.5.1 (November 1, 2010)
2
+ ======================================
3
+
4
+ ### Dependencies
5
+
6
+ * Updated [Bundler](http://gembundler.com/) dependency to ~> 1.0.0 to improve Heroku compatibility
7
+ * Updated README.mdown to better present the Semantic Versioning of dependencies (documentation change only)
8
+
1
9
  Mango release 0.5.0 (October 31, 2010)
2
10
  ======================================
3
11
 
data/README.mdown CHANGED
@@ -1,4 +1,4 @@
1
- Mango release 0.5.0 (October 31, 2010)
1
+ Mango release 0.5.1 (November 1, 2010)
2
2
  ======================================
3
3
 
4
4
  Copyright (c) 2010 Ryan Sobol. Licensed under the MIT license. Please see the {file:LICENSE} for more information.
@@ -69,23 +69,23 @@ REQUIREMENTS
69
69
 
70
70
  ### Required dependencies
71
71
 
72
- * [Ruby](http://www.ruby-lang.org/) 1.9.2 ([RVM](http://rvm.beginrescueend.com/) recommended)
73
- * [RubyGems](https://rubygems.org/) 1.3.7 (bundled with Ruby)
74
- * [Bundler](http://gembundler.com/) 1.0.3
75
- * [Rack](http://rack.rubyforge.org/) 1.2.1
76
- * [Sinatra](http://www.sinatrarb.com/) 1.1.0
77
- * [Haml](http://haml-lang.com/) 3.0.22
78
- * [Sass](http://sass-lang.com/) 3.0.22 (bundled with Haml)
79
- * [BlueCloth](http://deveiate.org/projects/BlueCloth) 2.0.9
72
+ * [Ruby](http://www.ruby-lang.org/) ~> 1.9.2 ([RVM](http://rvm.beginrescueend.com/) recommended)
73
+ * [RubyGems](https://rubygems.org/) ~> 1.3.7 (bundled with Ruby)
74
+ * [Bundler](http://gembundler.com/) ~> 1.0.0
75
+ * [Rack](http://rack.rubyforge.org/) ~> 1.2.1
76
+ * [Sinatra](http://www.sinatrarb.com/) ~> 1.1.0
77
+ * [Haml](http://haml-lang.com/) ~> 3.0.22
78
+ * [Sass](http://sass-lang.com/) ~> 3.0.22 (bundled with Haml)
79
+ * [BlueCloth](http://deveiate.org/projects/BlueCloth) ~> 2.0.9
80
80
 
81
81
  ### Optional development dependencies
82
82
 
83
- * [Rake](http://rake.rubyforge.org/) 0.8.7 (bundled with Ruby)
84
- * [Rack::Test](http://github.com/brynary/rack-test) 0.5.6
85
- * [RSpec](http://rspec.info/) 2.0.1
86
- * [YARD](http://yardoc.org/) 0.6.1
87
- * [YARD::Sinatra](http://github.com/rkh/yard-sinatra) 0.5.1
88
- * [BlueCloth](http://deveiate.org/projects/BlueCloth) 2.0.9
83
+ * [Rake](http://rake.rubyforge.org/) ~> 0.8.7 (bundled with Ruby)
84
+ * [Rack::Test](http://github.com/brynary/rack-test) ~> 0.5.6
85
+ * [RSpec](http://rspec.info/) ~> 2.0.1
86
+ * [YARD](http://yardoc.org/) ~> 0.6.1
87
+ * [YARD::Sinatra](http://github.com/rkh/yard-sinatra) ~> 0.5.1
88
+ * [BlueCloth](http://deveiate.org/projects/BlueCloth) ~> 2.0.9
89
89
 
90
90
  INSTALLING
91
91
  ----------
@@ -115,7 +115,7 @@ Simply edit the gem version in your application's `Gemfile` and re-install with
115
115
  $ cat Gemfile
116
116
  # encoding: UTF-8
117
117
  source "http://rubygems.org"
118
- gem "mango", "~> 0.5.0"
118
+ gem "mango", "~> 0.5.1"
119
119
  $ bundle install
120
120
 
121
121
  **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,3 +1,3 @@
1
1
  # encoding: UTF-8
2
2
  source "http://rubygems.org"
3
- gem "mango", "~> 0.5.0"
3
+ gem "mango", "~> 0.5.1"
data/lib/mango/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Mango
4
4
  # Current stable released version
5
- VERSION = "0.5.0"
5
+ VERSION = "0.5.1"
6
6
  end
data/mango.gemspec CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
15
15
  s.required_rubygems_version = "~> 1.3.7"
16
16
  s.rubyforge_project = "mango"
17
17
 
18
- s.add_runtime_dependency "bundler", "~> 1.0.3"
18
+ s.add_runtime_dependency "bundler", "~> 1.0.0"
19
19
  s.add_runtime_dependency "rack", "~> 1.2.1"
20
20
  s.add_runtime_dependency "sinatra", "~> 1.1.0"
21
21
  s.add_runtime_dependency "haml", "~> 3.0.22"
@@ -81,7 +81,7 @@ run Mango::Application
81
81
  File.read(expected).should == <<-EOS
82
82
  # encoding: UTF-8
83
83
  source "http://rubygems.org"
84
- gem "mango", "~> 0.5.0"
84
+ gem "mango", "~> 0.5.1"
85
85
  EOS
86
86
  end
87
87
 
@@ -4,7 +4,7 @@ require "spec_helper"
4
4
  describe Mango do
5
5
  describe "version synchronizing" do
6
6
  before(:each) do
7
- @expected = "0.5.0"
7
+ @expected = "0.5.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
  - 5
8
- - 0
9
- version: 0.5.0
8
+ - 1
9
+ version: 0.5.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Ryan Sobol
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-10-31 00:00:00 -07:00
17
+ date: 2010-11-01 00:00:00 -07:00
18
18
  default_executable: mango
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -28,8 +28,8 @@ dependencies:
28
28
  segments:
29
29
  - 1
30
30
  - 0
31
- - 3
32
- version: 1.0.3
31
+ - 0
32
+ version: 1.0.0
33
33
  type: :runtime
34
34
  version_requirements: *id001
35
35
  - !ruby/object:Gem::Dependency