manageable 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -1,14 +1,140 @@
1
1
  = Manageable {<img src="https://secure.travis-ci.org/fabiokr/manageable.png?branch=master" alt="Build Status" />}[http://travis-ci.org/fabiokr/manageable]
2
2
 
3
- TODO
4
-
5
- * Write README
6
- * Write examples
7
- * write about the pagination file
8
- * write about lib/manageable/models/acts_as_article
9
- * write about lib/manageable/spec/models/articles | requires factory girl and rspec and shoulda-matchers
10
- * write about the db migration that generates a base article to be used with lib/manageable/models/acts_as_article
11
- rake manageable_engine:install:migrations
12
- * write about
13
- Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
14
- config.assets.precompile += %w( manageable/index.css manageable/index.js )
3
+ Manageable is a Rails >= 3.1 Engine that provides unobtrusive administration features for Rails applications.
4
+ As it is a Rails engine, you can easily include/replace all of its features, and you will be developing it as you are already used to develop normal Rails applications.
5
+ It has a minimal set of dependencies and does not force you on using other specific gems. People have their prefered set of utility gems (simple_form vs formtastic, will_paginate vs kaminari), so it tries not to impose anything on those lines, and you can choose what you want to use. By default, it provides a custom set of helpers for the most common operations.
6
+
7
+ == Contributing
8
+
9
+ This engine is a work in progress and open for contributions! Please don't forget to add tests if you plan on contributing.
10
+
11
+ == Installation
12
+
13
+ This gem is compatible with Rails > 3.1. To install it, add the following to your Gemfile:
14
+
15
+ gem 'manageable'
16
+
17
+ After that, run the 'bundle' command to install the gem.
18
+
19
+ The next thing you want to do is to create an application controller for your administration section that inherits Manageable::ApplicationController:
20
+
21
+ class Admin::ApplicationController < Manageable::ApplicationController
22
+ protect_from_forgery
23
+ end
24
+
25
+ And that's it! This will make your administration controllers use Manageable the layout and views by default, and you can replace them as needed.
26
+ Nothing else is imposed. You can name your Admin::ApplicationController the way you want, and configure your routes the way you want as well.
27
+
28
+ == Getting Started
29
+
30
+ By default, controllers inheriting from Manageable::ApplicationController will look for the views provided by the Manageable engine. Let's say you have this additional controller:
31
+
32
+ class Admin::ArticlesController < Admin::ApplicationController
33
+
34
+ manageable_configuration Article, :paths => {
35
+ :collection => :admin_articles,
36
+ :resource => :admin_article,
37
+ :new_resource => :new_admin_article,
38
+ :edit_resource => :edit_admin_article
39
+ }
40
+
41
+ def index
42
+ end
43
+
44
+ def show
45
+ end
46
+
47
+ def new
48
+ end
49
+
50
+ ...
51
+ end
52
+
53
+ Manageable provide a whole stack of views for you index, show, new and edit actions. When you access you controller is should work with the default configurations.
54
+ You will probably want to have you own set of table headers for your index action, or your custom set of fields on you forms. In order to do that, you can just replace the partials your you views folder. In this case, you would need to create these files under 'app/views/admin/articles':
55
+ * _index_headers.html.erb
56
+ * _index_rows.html.erb
57
+ * _readonly_form_fields.html.erb
58
+ * _form_fields.html.erb
59
+
60
+ There is a whole set of partials that you can just replace if it does not suite your needs. You can check the existing ones under the 'app/views/manageable/application' folder inside the Manageable gem. If you need a totally custom 'index.html.erb', you can just replace it as well.
61
+ The other one thing that is needed is to define a simple resource configuration with the manageable_configuration method, as we have done in our example. That way the default views will know what path helpers it should use. You have also to use respond_with in your actions, because the views resource will be infered from what you return with respond_with.
62
+
63
+ If you will not be using the default views, there is no need for that.
64
+
65
+ === Pagination
66
+
67
+ When you run your resources controller for the first time, you will receive an exception about the pagination partial. Because Manageable does not want to impose you a pagination library, you should create your own pagination partial that will use the library you want.
68
+ To do that in our example, you will need to create an 'app/views/admin/application/_index_pagination.html.erb' file and insert your custom pagination content. Manageable provides a pagination helper, so as example for Kaminari, you might want to replace it's content with this:
69
+
70
+ <%= manageable_pagination :current_page => collection.current_page, :num_pages => collection.num_pages %>
71
+
72
+ In case you use other pagination libraries, adapt it accordingly.
73
+
74
+ Manageable also provides a module called Manageable::Controllers::Pageable. This includes controller helper methods to deal with pagination and sorting. Just include the following line in your controller:
75
+
76
+ include Manageable::Controllers::Pageable
77
+
78
+ Then, in your index action, include something like this:
79
+
80
+ respond_with @articles = apply_pageable_scope(Article)
81
+
82
+ Refer to the module documentation for additional details.
83
+
84
+ === Helpers
85
+
86
+ Please refer to the 'app/helpers/manageable/application_helper.rb' file for helpers documentation.
87
+
88
+ Manageable forms use the custom Manageable::Helpers::FormBuilder by default. That provides automatic labels for forms and some additional customization. If you don't like that, you can just create your own _form.html.erb partial.
89
+
90
+ === The articles module
91
+
92
+ Because articles tend to be a common model, Manageable provides the following tools to deal with them:
93
+
94
+ * Manageable::Models::ActsAsArticle - just include this in your article model and it will have a basic set of common article operations.
95
+ * lib/manageable/spec/models/articles - this is a shared spec to be used with rspec; include it in your spec_helper.rb file and use 'it_behaves_like "acts_as_article"' in your model spec. This requires factory_girl and shoulda_matchers. If do not want to use Rspec or these gems, you can create a custom test file following those lines.
96
+ * db/migrate/create_articles.rb - a migration to create an article model. Use 'rake manageable_engine:install:migrations' in your application to have it copied to your app. You can then customize it to your own needs.
97
+
98
+ === I18n
99
+
100
+ Manageable can be localized to your language. It provides a default set of locales, but in case you need a custom one, just add it to your application locales folder coping the contents of an existing locale file and changing it as needed.
101
+
102
+ === Production
103
+
104
+ When deploying an application using Manageable to production, you will need to tell Rails to generate Manageable assets if you will be using the "rake assets:precompile" command.
105
+ Just add this to your 'config/environments/production.rb' file:
106
+
107
+ config.assets.precompile += %w( manageable/index.css manageable/index.js )
108
+
109
+ === Specs
110
+
111
+ To run the specs, first you need to setup the dummy application database and clone it for the test environment:
112
+
113
+ rake app:db:schema:load
114
+ rake app:db:test:clone
115
+
116
+ Now you can run the specs with this:
117
+
118
+ rake spec
119
+
120
+ === Extensions
121
+
122
+ ManageableContent - https://github.com/fabiokr/manageable_content
123
+ Manageable Content is a Rails 3.1 Engine that provides a simple framework for content management. It works by providing a Page instance for each of your configured controllers, so that each controller can have it’s own contents that will be available to the views. You can also have shared contents.
124
+
125
+ == Credits
126
+
127
+ https://dmfrancisco.github.com/activo/ for the awesome Activo theme!
128
+ https://github.com/jellybob/activo-rails for the inspiration
129
+
130
+ == Contributors
131
+
132
+ https://github.com/fabiokr/manageable/contributors
133
+
134
+ == Maintainers
135
+
136
+ * Fabio Kreusch (https://github.com/fabiokr)
137
+
138
+ == License
139
+
140
+ MIT License. Copyright 2012 Fabio Kreusch http://www.kreusch.com.br
@@ -212,12 +212,17 @@ module Manageable
212
212
  # *title*: - The link title
213
213
  # *options*: - Additional link_to options
214
214
  def manageable_sortable(column, title = nil, options = {})
215
- title ||= column.titleize
216
- css_class = column && sort_column && column.to_sym == sort_column.to_sym ? "sort_#{sort_direction}" : nil
217
- direction = column && sort_column && column.to_sym == sort_column.to_sym && sort_direction == "asc" ? "desc" : "asc"
218
- options[:class] = [options[:class], css_class].compact.join(" ")
215
+ title ||= column.titleize
219
216
 
220
- link_to title, params.merge(:sort => column, :direction => direction, :page => nil), options
217
+ if respond_to?(:sort_column) && respond_to?(:sort_direction)
218
+ css_class = column && sort_column && column.to_sym == sort_column.to_sym ? "sort_#{sort_direction}" : nil
219
+ direction = column && sort_column && column.to_sym == sort_column.to_sym && sort_direction == "asc" ? "desc" : "asc"
220
+ options[:class] = [options[:class], css_class].compact.join(" ")
221
+
222
+ link_to title, params.merge(:sort => column, :direction => direction, :page => nil), options
223
+ else
224
+ title
225
+ end
221
226
  end
222
227
 
223
228
  # Creates a link_to button
@@ -352,4 +357,4 @@ module Manageable
352
357
  menu.item "Login", "#"
353
358
  end
354
359
  end
355
- end
360
+ end
@@ -1,3 +1,3 @@
1
1
  module Manageable
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
Binary file
@@ -93883,3 +93883,393 @@ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.2ms)
93883
93883
   (0.1ms) rollback transaction
93884
93884
   (0.1ms) begin transaction
93885
93885
   (0.2ms) rollback transaction
93886
+  (136.1ms) DELETE FROM "articles";
93887
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'articles';
93888
+  (115.3ms) DELETE FROM "samples";
93889
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'samples';
93890
+  (0.2ms) begin transaction
93891
+  (0.1ms) rollback transaction
93892
+  (0.0ms) begin transaction
93893
+  (0.0ms) rollback transaction
93894
+  (0.0ms) begin transaction
93895
+  (0.0ms) rollback transaction
93896
+  (0.0ms) begin transaction
93897
+  (0.0ms) rollback transaction
93898
+  (0.0ms) begin transaction
93899
+  (0.0ms) rollback transaction
93900
+  (0.0ms) begin transaction
93901
+  (0.0ms) rollback transaction
93902
+  (0.0ms) begin transaction
93903
+  (0.0ms) rollback transaction
93904
+  (0.1ms) begin transaction
93905
+  (0.1ms) rollback transaction
93906
+  (0.1ms) begin transaction
93907
+  (0.0ms) rollback transaction
93908
+  (0.0ms) begin transaction
93909
+  (0.1ms) PRAGMA index_list("articles")
93910
+  (0.1ms) PRAGMA index_info('index_articles_on_slug')
93911
+  (0.1ms) PRAGMA index_info('index_articles_on_published_at_and_locale')
93912
+  (0.0ms) PRAGMA index_info('index_articles_on_highlight_and_published_at_and_locale')
93913
+  (0.0ms) rollback transaction
93914
+  (0.1ms) begin transaction
93915
+  (0.1ms) PRAGMA index_list("articles")
93916
+  (0.0ms) PRAGMA index_info('index_articles_on_slug')
93917
+  (0.0ms) PRAGMA index_info('index_articles_on_published_at_and_locale')
93918
+  (0.0ms) PRAGMA index_info('index_articles_on_highlight_and_published_at_and_locale')
93919
+  (0.0ms) rollback transaction
93920
+  (0.0ms) begin transaction
93921
+  (0.0ms) PRAGMA index_list("articles")
93922
+  (0.0ms) PRAGMA index_info('index_articles_on_slug')
93923
+  (0.0ms) PRAGMA index_info('index_articles_on_published_at_and_locale')
93924
+  (0.0ms) PRAGMA index_info('index_articles_on_highlight_and_published_at_and_locale')
93925
+  (0.0ms) rollback transaction
93926
+  (0.0ms) begin transaction
93927
+  (0.2ms) rollback transaction
93928
+  (0.0ms) begin transaction
93929
+  (0.0ms) SAVEPOINT active_record_1
93930
+ SQL (52.8ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", nil], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93932
+  (0.0ms) SAVEPOINT active_record_1
93933
+ SQL (0.5ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93935
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."published_at" IS NULL
93936
+  (0.1ms) rollback transaction
93937
+  (0.0ms) begin transaction
93938
+  (0.0ms) SAVEPOINT active_record_1
93939
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", nil], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93941
+  (0.0ms) SAVEPOINT active_record_1
93942
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93944
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE ("articles"."published_at" IS NOT NULL)
93945
+  (0.1ms) rollback transaction
93946
+  (0.0ms) begin transaction
93947
+  (0.0ms) rollback transaction
93948
+  (0.0ms) begin transaction
93949
+  (0.0ms) SAVEPOINT active_record_1
93950
+ SQL (0.6ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", false], ["keywords", nil], ["locale", :en], ["published_at", Sat, 05 Jan 2013 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93951
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93952
+  (0.1ms) SAVEPOINT active_record_1
93953
+ SQL (0.7ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 06 Mar 2013 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93954
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93955
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."highlight" = 't'
93956
+  (0.1ms) rollback transaction
93957
+  (0.0ms) begin transaction
93958
+  (0.0ms) SAVEPOINT active_record_1
93959
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93961
+  (0.0ms) SAVEPOINT active_record_1
93962
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Mon, 13 Jan 2014 12:40:52 UTC +00:00], ["slug", "our-custom-title"], ["title", "Our custom title"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93964
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."slug" = 'our-custom-title'
93965
+  (0.1ms) rollback transaction
93966
+  (0.0ms) begin transaction
93967
+  (0.1ms) SAVEPOINT active_record_1
93968
+ SQL (1.1ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", "en"], ["published_at", Thu, 02 Jan 2014 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93969
+  (0.2ms) RELEASE SAVEPOINT active_record_1
93970
+  (0.1ms) SAVEPOINT active_record_1
93971
+ SQL (0.6ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", "pt"], ["published_at", Sun, 23 Sep 2012 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93972
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93973
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."locale" = 'en'
93974
+  (0.1ms) rollback transaction
93975
+  (0.0ms) begin transaction
93976
+  (0.1ms) SAVEPOINT active_record_1
93977
+ SQL (0.5ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 30 Mar 2011 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93979
+  (0.0ms) SAVEPOINT active_record_1
93980
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Fri, 30 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93982
+  (0.1ms) SAVEPOINT active_record_1
93983
+ SQL (0.3ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Sat, 30 Mar 2013 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93985
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE (published_at >= '2012-01-01 00:00:00' AND published_at <= '2012-12-31 23:59:59')
93986
+  (0.1ms) rollback transaction
93987
+  (0.0ms) begin transaction
93988
+  (0.0ms) SAVEPOINT active_record_1
93989
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 29 Feb 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93990
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93991
+  (0.0ms) SAVEPOINT active_record_1
93992
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Fri, 30 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93994
+  (0.1ms) SAVEPOINT active_record_1
93995
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Mon, 30 Apr 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
93996
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93997
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE (published_at >= '2012-03-01 00:00:00' AND published_at <= '2012-03-31 23:59:59')
93998
+  (0.2ms) rollback transaction
93999
+  (0.1ms) begin transaction
94000
+  (0.0ms) SAVEPOINT active_record_1
94001
+ SQL (0.5ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Thu, 29 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94003
+  (0.0ms) SAVEPOINT active_record_1
94004
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Fri, 30 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94006
+  (0.0ms) SAVEPOINT active_record_1
94007
+ SQL (0.3ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Sat, 31 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94009
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE (published_at >= '2012-03-30 00:00:00' AND published_at <= '2012-03-30 23:59:59')
94010
+  (0.1ms) rollback transaction
94011
+  (0.1ms) begin transaction
94012
+  (0.1ms) SAVEPOINT active_record_1
94013
+ SQL (0.5ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Thu, 29 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94014
+  (0.1ms) RELEASE SAVEPOINT active_record_1
94015
+  (0.1ms) SAVEPOINT active_record_1
94016
+ SQL (0.5ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Fri, 30 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94017
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94018
+  (0.1ms) SAVEPOINT active_record_1
94019
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Sat, 31 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94020
+  (0.1ms) RELEASE SAVEPOINT active_record_1
94021
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
94022
+  (0.2ms) rollback transaction
94023
+  (0.1ms) begin transaction
94024
+  (0.1ms) SAVEPOINT active_record_1
94025
+ SQL (0.7ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", nil], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94027
+  (0.0ms) SAVEPOINT active_record_1
94028
+  (0.3ms) UPDATE "articles" SET "published_at" = '2012-03-30 12:40:52.000000', "updated_at" = '2012-03-30 12:40:52.694766' WHERE "articles"."id" = 1
94029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94030
+  (0.1ms) rollback transaction
94031
+  (0.0ms) begin transaction
94032
+  (0.0ms) SAVEPOINT active_record_1
94033
+ SQL (0.5ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Fri, 13 Jun 2014 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94035
+  (0.1ms) rollback transaction
94036
+  (0.0ms) begin transaction
94037
+  (0.0ms) SAVEPOINT active_record_1
94038
+ SQL (0.4ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Mon, 17 Nov 2014 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94040
+  (0.1ms) rollback transaction
94041
+  (0.0ms) begin transaction
94042
+  (0.0ms) SAVEPOINT active_record_1
94043
+ SQL (0.6ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", "jp"], ["published_at", Tue, 18 Nov 2014 12:40:52 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Fri, 30 Mar 2012 12:40:52 UTC +00:00]]
94044
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94045
+  (0.1ms) rollback transaction
94046
+  (0.1ms) begin transaction
94047
+
94048
+
94049
+ Started GET "/samples" for 127.0.0.1 at 2012-03-30 09:40:52 -0300
94050
+ Processing by SamplesController#index as HTML
94051
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_navigation.html.erb (1.1ms)
94052
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_header.html.erb (0.9ms)
94053
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_headers.html.erb (0.3ms)
94054
+ Sample Load (0.2ms) SELECT "samples".* FROM "samples" ORDER BY created_at DESC LIMIT 25 OFFSET 0
94055
+  (0.1ms) SELECT COUNT(*) FROM "samples" 
94056
+ Rendered manageable/application/_index_pagination.html.erb (1.7ms)
94057
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_table.html.erb (30.3ms)
94058
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/index.html.erb within layouts/manageable/application (35.4ms)
94059
+ Completed 200 OK in 78ms (Views: 77.0ms | ActiveRecord: 0.3ms)
94060
+
94061
+
94062
+ Started GET "/samples/new" for 127.0.0.1 at 2012-03-30 09:40:53 -0300
94063
+ Processing by SamplesController#new as HTML
94064
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_navigation.html.erb (1.3ms)
94065
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_controls.html.erb (0.5ms)
94066
+ Rendered samples/_form_fields.html.erb (11.6ms)
94067
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_footer.html.erb (1.2ms)
94068
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form.html.erb (23.0ms)
94069
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/new.html.erb within layouts/manageable/application (25.0ms)
94070
+ Completed 200 OK in 98ms (Views: 29.5ms | ActiveRecord: 0.0ms)
94071
+
94072
+
94073
+ Started POST "/samples" for 127.0.0.1 at 2012-03-30 09:40:53 -0300
94074
+ Processing by SamplesController#create as HTML
94075
+ Parameters: {"utf8"=>"✓", "sample"=>{"text_field"=>"", "password_field"=>"[FILTERED]", "telephone_field"=>"", "url_field"=>"", "email_field"=>"", "number_field"=>"", "range_field"=>"", "text_area"=>"", "select_field"=>"Option1", "multiple_select_field"=>[""], "checkbox_one"=>"0", "checkbox_two"=>"0"}}
94076
+  (0.1ms) SAVEPOINT active_record_1
94077
+ SQL (0.8ms) INSERT INTO "samples" ("checkbox_one", "checkbox_two", "created_at", "date_field", "email_field", "file_field", "multiple_select_field", "number_field", "password_field", "radio_button", "range_field", "select_field", "telephone_field", "text_area", "text_field", "updated_at", "url_field") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["checkbox_one", false], ["checkbox_two", false], ["created_at", Fri, 30 Mar 2012 12:40:53 UTC +00:00], ["date_field", nil], ["email_field", ""], ["file_field", nil], ["multiple_select_field", [""]], ["number_field", ""], ["password_field", ""], ["radio_button", nil], ["range_field", ""], ["select_field", "Option1"], ["telephone_field", ""], ["text_area", ""], ["text_field", ""], ["updated_at", Fri, 30 Mar 2012 12:40:53 UTC +00:00], ["url_field", ""]]
94078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94079
+ Redirected to http://www.example.com/samples/1
94080
+ Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
94081
+
94082
+
94083
+ Started GET "/samples/1" for 127.0.0.1 at 2012-03-30 09:40:53 -0300
94084
+ Processing by SamplesController#show as HTML
94085
+ Parameters: {"id"=>"1"}
94086
+ Sample Load (0.2ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
94087
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_navigation.html.erb (1.7ms)
94088
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_navigation.html.erb (2.4ms)
94089
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_controls.html.erb (0.8ms)
94090
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_controls.html.erb (1.4ms)
94091
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_fields.html.erb (0.3ms)
94092
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form.html.erb (14.0ms)
94093
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/show.html.erb within layouts/manageable/application (16.1ms)
94094
+ Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.2ms)
94095
+
94096
+
94097
+ Started GET "/samples/1/edit" for 127.0.0.1 at 2012-03-30 09:40:53 -0300
94098
+ Processing by SamplesController#edit as HTML
94099
+ Parameters: {"id"=>"1"}
94100
+ Sample Load (0.1ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
94101
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_navigation.html.erb (1.6ms)
94102
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_controls.html.erb (2.8ms)
94103
+ Rendered samples/_form_fields.html.erb (10.2ms)
94104
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_footer.html.erb (0.5ms)
94105
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form.html.erb (87.2ms)
94106
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/edit.html.erb within layouts/manageable/application (87.9ms)
94107
+ Completed 200 OK in 94ms (Views: 92.3ms | ActiveRecord: 0.1ms)
94108
+
94109
+
94110
+ Started PUT "/samples/1" for 127.0.0.1 at 2012-03-30 09:40:53 -0300
94111
+ Processing by SamplesController#update as HTML
94112
+ Parameters: {"utf8"=>"✓", "sample"=>{"text_field"=>"", "password_field"=>"[FILTERED]", "telephone_field"=>"", "url_field"=>"", "email_field"=>"", "number_field"=>"", "range_field"=>"", "text_area"=>"", "select_field"=>"Option1", "multiple_select_field"=>[""], "checkbox_one"=>"0", "checkbox_two"=>"0"}, "id"=>"1"}
94113
+ Sample Load (0.1ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
94114
+  (0.1ms) SAVEPOINT active_record_1
94115
+  (0.2ms) UPDATE "samples" SET "multiple_select_field" = '---
94116
+ - ''''
94117
+ ', "updated_at" = '2012-03-30 12:40:53.398430' WHERE "samples"."id" = 1
94118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94119
+ Redirected to http://www.example.com/samples/1
94120
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
94121
+
94122
+
94123
+ Started GET "/samples/1" for 127.0.0.1 at 2012-03-30 09:40:53 -0300
94124
+ Processing by SamplesController#show as HTML
94125
+ Parameters: {"id"=>"1"}
94126
+ Sample Load (0.1ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
94127
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_navigation.html.erb (1.6ms)
94128
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_navigation.html.erb (1.9ms)
94129
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_controls.html.erb (0.6ms)
94130
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_controls.html.erb (0.8ms)
94131
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_fields.html.erb (0.0ms)
94132
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form.html.erb (6.3ms)
94133
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/show.html.erb within layouts/manageable/application (6.6ms)
94134
+ Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.1ms)
94135
+
94136
+
94137
+ Started DELETE "/samples/1" for 127.0.0.1 at 2012-03-30 09:40:53 -0300
94138
+ Processing by SamplesController#destroy as HTML
94139
+ Parameters: {"id"=>"1"}
94140
+ Sample Load (0.1ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
94141
+  (0.1ms) SAVEPOINT active_record_1
94142
+ SQL (0.1ms) DELETE FROM "samples" WHERE "samples"."id" = ? [["id", 1]]
94143
+  (0.0ms) RELEASE SAVEPOINT active_record_1
94144
+ Redirected to http://www.example.com/samples
94145
+ Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
94146
+
94147
+
94148
+ Started GET "/samples" for 127.0.0.1 at 2012-03-30 09:40:53 -0300
94149
+ Processing by SamplesController#index as HTML
94150
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_navigation.html.erb (0.5ms)
94151
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_header.html.erb (0.4ms)
94152
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_headers.html.erb (0.0ms)
94153
+ Sample Load (0.2ms) SELECT "samples".* FROM "samples" ORDER BY created_at DESC LIMIT 25 OFFSET 0
94154
+  (0.1ms) SELECT COUNT(*) FROM "samples" 
94155
+ Rendered manageable/application/_index_pagination.html.erb (1.1ms)
94156
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_table.html.erb (5.7ms)
94157
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/index.html.erb within layouts/manageable/application (5.9ms)
94158
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.2ms)
94159
+  (0.1ms) rollback transaction
94160
+  (0.1ms) begin transaction
94161
+  (0.0ms) rollback transaction
94162
+  (0.0ms) begin transaction
94163
+  (0.0ms) rollback transaction
94164
+  (0.1ms) begin transaction
94165
+  (0.0ms) rollback transaction
94166
+  (0.0ms) begin transaction
94167
+  (0.0ms) rollback transaction
94168
+  (0.0ms) begin transaction
94169
+  (0.0ms) rollback transaction
94170
+  (0.1ms) begin transaction
94171
+  (0.1ms) rollback transaction
94172
+  (0.1ms) begin transaction
94173
+  (0.1ms) rollback transaction
94174
+  (0.0ms) begin transaction
94175
+  (0.0ms) rollback transaction
94176
+  (0.0ms) begin transaction
94177
+  (0.1ms) rollback transaction
94178
+  (0.1ms) begin transaction
94179
+  (0.1ms) rollback transaction
94180
+  (0.1ms) begin transaction
94181
+  (0.0ms) rollback transaction
94182
+  (0.1ms) begin transaction
94183
+  (0.1ms) rollback transaction
94184
+  (0.1ms) begin transaction
94185
+  (0.1ms) rollback transaction
94186
+  (0.1ms) begin transaction
94187
+  (0.1ms) rollback transaction
94188
+  (0.1ms) begin transaction
94189
+  (0.1ms) rollback transaction
94190
+  (0.1ms) begin transaction
94191
+  (0.1ms) rollback transaction
94192
+  (0.0ms) begin transaction
94193
+  (0.1ms) rollback transaction
94194
+  (0.0ms) begin transaction
94195
+  (0.1ms) rollback transaction
94196
+  (0.0ms) begin transaction
94197
+  (0.2ms) rollback transaction
94198
+  (0.1ms) begin transaction
94199
+  (0.1ms) rollback transaction
94200
+  (0.1ms) begin transaction
94201
+  (0.1ms) rollback transaction
94202
+  (0.1ms) begin transaction
94203
+  (0.1ms) rollback transaction
94204
+  (0.0ms) begin transaction
94205
+  (0.1ms) rollback transaction
94206
+  (0.0ms) begin transaction
94207
+  (0.1ms) rollback transaction
94208
+  (0.1ms) begin transaction
94209
+  (0.1ms) rollback transaction
94210
+  (0.1ms) begin transaction
94211
+  (0.1ms) rollback transaction
94212
+  (0.0ms) begin transaction
94213
+  (0.1ms) rollback transaction
94214
+  (0.0ms) begin transaction
94215
+  (0.1ms) rollback transaction
94216
+  (0.0ms) begin transaction
94217
+  (0.0ms) rollback transaction
94218
+  (0.0ms) begin transaction
94219
+  (0.0ms) rollback transaction
94220
+  (0.1ms) begin transaction
94221
+  (0.0ms) rollback transaction
94222
+  (0.1ms) begin transaction
94223
+  (0.0ms) rollback transaction
94224
+  (0.1ms) begin transaction
94225
+  (0.0ms) rollback transaction
94226
+  (0.1ms) begin transaction
94227
+  (0.0ms) rollback transaction
94228
+  (0.1ms) begin transaction
94229
+  (0.1ms) rollback transaction
94230
+  (0.0ms) begin transaction
94231
+  (0.0ms) rollback transaction
94232
+  (0.0ms) begin transaction
94233
+  (0.0ms) rollback transaction
94234
+  (0.0ms) begin transaction
94235
+  (0.0ms) rollback transaction
94236
+  (0.0ms) begin transaction
94237
+  (0.0ms) rollback transaction
94238
+  (0.0ms) begin transaction
94239
+  (0.0ms) rollback transaction
94240
+  (0.1ms) begin transaction
94241
+  (0.0ms) rollback transaction
94242
+  (0.1ms) begin transaction
94243
+  (0.0ms) rollback transaction
94244
+  (0.0ms) begin transaction
94245
+  (0.0ms) rollback transaction
94246
+  (0.0ms) begin transaction
94247
+  (0.0ms) rollback transaction
94248
+  (0.0ms) begin transaction
94249
+  (0.0ms) rollback transaction
94250
+  (0.0ms) begin transaction
94251
+  (0.0ms) rollback transaction
94252
+  (0.0ms) begin transaction
94253
+  (0.0ms) rollback transaction
94254
+  (0.1ms) begin transaction
94255
+  (0.0ms) rollback transaction
94256
+  (0.1ms) begin transaction
94257
+  (0.0ms) rollback transaction
94258
+  (0.1ms) begin transaction
94259
+  (0.1ms) rollback transaction
94260
+  (0.0ms) begin transaction
94261
+  (0.1ms) rollback transaction
94262
+  (0.0ms) begin transaction
94263
+  (0.1ms) rollback transaction
94264
+  (0.0ms) begin transaction
94265
+  (0.1ms) rollback transaction
94266
+  (0.1ms) begin transaction
94267
+  (0.1ms) rollback transaction
94268
+  (0.1ms) begin transaction
94269
+  (0.1ms) rollback transaction
94270
+  (0.0ms) begin transaction
94271
+  (0.1ms) rollback transaction
94272
+  (0.0ms) begin transaction
94273
+  (0.1ms) rollback transaction
94274
+  (0.1ms) begin transaction
94275
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manageable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-03-28 00:00:00.000000000 Z
12
+ date: 2012-03-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &23247320 !ruby/object:Gem::Requirement
16
+ requirement: &22076800 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '3.1'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *23247320
24
+ version_requirements: *22076800
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: jquery-rails
27
- requirement: &23246640 !ruby/object:Gem::Requirement
27
+ requirement: &22076260 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *23246640
35
+ version_requirements: *22076260
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: sass-rails
38
- requirement: &23245880 !ruby/object:Gem::Requirement
38
+ requirement: &22091860 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *23245880
46
+ version_requirements: *22091860
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: sqlite3
49
- requirement: &23245420 !ruby/object:Gem::Requirement
49
+ requirement: &22091020 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '0'
55
55
  type: :development
56
56
  prerelease: false
57
- version_requirements: *23245420
57
+ version_requirements: *22091020
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: rspec-rails
60
- requirement: &23261260 !ruby/object:Gem::Requirement
60
+ requirement: &22090260 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ~>
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: '2.5'
66
66
  type: :development
67
67
  prerelease: false
68
- version_requirements: *23261260
68
+ version_requirements: *22090260
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: capybara
71
- requirement: &23260800 !ruby/object:Gem::Requirement
71
+ requirement: &22088980 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ! '>='
@@ -76,10 +76,10 @@ dependencies:
76
76
  version: '0'
77
77
  type: :development
78
78
  prerelease: false
79
- version_requirements: *23260800
79
+ version_requirements: *22088980
80
80
  - !ruby/object:Gem::Dependency
81
81
  name: launchy
82
- requirement: &23260280 !ruby/object:Gem::Requirement
82
+ requirement: &22088320 !ruby/object:Gem::Requirement
83
83
  none: false
84
84
  requirements:
85
85
  - - ! '>='
@@ -87,10 +87,10 @@ dependencies:
87
87
  version: '0'
88
88
  type: :development
89
89
  prerelease: false
90
- version_requirements: *23260280
90
+ version_requirements: *22088320
91
91
  - !ruby/object:Gem::Dependency
92
92
  name: database_cleaner
93
- requirement: &23259820 !ruby/object:Gem::Requirement
93
+ requirement: &22087540 !ruby/object:Gem::Requirement
94
94
  none: false
95
95
  requirements:
96
96
  - - ! '>='
@@ -98,10 +98,10 @@ dependencies:
98
98
  version: '0'
99
99
  type: :development
100
100
  prerelease: false
101
- version_requirements: *23259820
101
+ version_requirements: *22087540
102
102
  - !ruby/object:Gem::Dependency
103
103
  name: factory_girl_rails
104
- requirement: &23259260 !ruby/object:Gem::Requirement
104
+ requirement: &22086420 !ruby/object:Gem::Requirement
105
105
  none: false
106
106
  requirements:
107
107
  - - ~>
@@ -109,10 +109,10 @@ dependencies:
109
109
  version: 1.7.0
110
110
  type: :development
111
111
  prerelease: false
112
- version_requirements: *23259260
112
+ version_requirements: *22086420
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: shoulda-matchers
115
- requirement: &23258800 !ruby/object:Gem::Requirement
115
+ requirement: &22085460 !ruby/object:Gem::Requirement
116
116
  none: false
117
117
  requirements:
118
118
  - - ! '>='
@@ -120,7 +120,7 @@ dependencies:
120
120
  version: '0'
121
121
  type: :development
122
122
  prerelease: false
123
- version_requirements: *23258800
123
+ version_requirements: *22085460
124
124
  description: An unobtrusive Rails administration engine
125
125
  email:
126
126
  - fabiokr@gmail.com