merb-admin 0.7.2 → 0.7.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/README.rdoc CHANGED
@@ -2,6 +2,8 @@
2
2
  ==== MerbAdmin is a Merb plugin that provides an easy-to-use interface for managing your data.
3
3
  It currently offers the features listed here[http://sferik.tadalist.com/lists/1352791/public].
4
4
 
5
+ Take it for a test drive with sample data here[http://merb-admin.heroku.com/].
6
+
5
7
  The status of the latest build is available here[http://runcoderun.com/sferik/merb-admin].
6
8
 
7
9
  Various code metrics are available here[http://devver.net/caliper/project?repo=git://github.com/sferik/merb-admin.git].
@@ -11,7 +13,7 @@ http://github.com/sferik/merb-admin/raw/master/screenshots/edit.png
11
13
  == Installation
12
14
  $ gem install merb-admin -s http://gemcutter.org
13
15
  In your app, add the following dependency to <tt>config/dependencies.rb</tt>:
14
- dependency "merb-admin", "0.7.2"
16
+ dependency "merb-admin", "0.7.3"
15
17
  Add the following route to <tt>config/router.rb</tt>:
16
18
  add_slice(:merb_admin, :path_prefix => "admin")
17
19
  Then, run the following rake task:
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.2
1
+ 0.7.3
@@ -3,7 +3,7 @@ module Merb
3
3
  module MerbAdmin
4
4
  module MainHelper
5
5
  def to_model_name(param)
6
- param.split("__").map{|x| x.camel_case}.join("::")
6
+ param.split("::").map{|x| x.camel_case}.join("::")
7
7
  end
8
8
 
9
9
  def object_label(object)
@@ -2,7 +2,7 @@ module MerbAdmin
2
2
  class AbstractModel
3
3
  module GenericSupport
4
4
  def to_param
5
- model.to_s.snake_case.gsub("::", "__")
5
+ model.to_s.snake_case
6
6
  end
7
7
 
8
8
  def pretty_name
data/lib/merb-admin.rb CHANGED
@@ -24,7 +24,7 @@ if defined?(Merb::Plugins)
24
24
 
25
25
  # Slice metadata
26
26
  self.description = "MerbAdmin is a Merb plugin that provides an easy-to-use interface for managing your data."
27
- self.version = "0.7.2"
27
+ self.version = "0.7.3"
28
28
  self.author = "Erik Michaels-Ober"
29
29
 
30
30
  # Stub classes loaded hook - runs before LoadClasses BootLoader
data/merb-admin.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{merb-admin}
8
- s.version = "0.7.2"
8
+ s.version = "0.7.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Erik Michaels-Ober"]
12
- s.date = %q{2009-12-01}
12
+ s.date = %q{2009-12-03}
13
13
  s.description = %q{MerbAdmin is a Merb plugin that provides an easy-to-use interface for managing your data.}
14
14
  s.email = %q{sferik@gmail.com}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: merb-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erik Michaels-Ober
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-01 00:00:00 -08:00
12
+ date: 2009-12-03 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency