midas-guilded 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.1.0 2009-03-12
2
+
3
+ * Fixed a bug with requiring files.
4
+
5
+
1
6
  == 0.0.9 2009-03-12
2
7
 
3
8
  * Added Guilded::Rails::Helpers class to hold some common helpers for Rails components
data/README.rdoc CHANGED
@@ -79,7 +79,7 @@ The Guilded-Base gem contains the framework to build Guilded components.
79
79
 
80
80
  Add to environment file:
81
81
 
82
- config.gem "guilded", :version => '0.0.8'
82
+ config.gem "guilded", :version => '0.1.0'
83
83
 
84
84
  Run:
85
85
 
data/guilded.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{guilded}
5
- s.version = "0.0.9"
5
+ s.version = "0.1.0"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["C. Jason Harrelson (midas)"]
data/lib/guilded.rb CHANGED
@@ -71,7 +71,7 @@ require 'guilded/rails/active_record/human_attribute_override'
71
71
  # <%= g_load_alerter :skin => 'blueish', :id => 'load_alerter' %>
72
72
  #
73
73
  module Guilded
74
- VERSION = '0.0.9'
74
+ VERSION = '0.1.0'
75
75
  end
76
76
 
77
77
  ActionView::Base.send( :include, Guilded::Rails::ViewHelpers ) if defined?( ActionView )
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: midas-guilded
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - C. Jason Harrelson (midas)