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 +138 -12
- data/app/helpers/manageable/application_helper.rb +11 -6
- data/lib/manageable/version.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +390 -0
- metadata +22 -22
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
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
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
|
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
|
-
|
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
|
data/lib/manageable/version.rb
CHANGED
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
data/spec/dummy/log/test.log
CHANGED
@@ -93883,3 +93883,393 @@ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.2ms)
|
|
93883
93883
|
[1m[35m (0.1ms)[0m rollback transaction
|
93884
93884
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
93885
93885
|
[1m[35m (0.2ms)[0m rollback transaction
|
93886
|
+
[1m[36m (136.1ms)[0m [1mDELETE FROM "articles";[0m
|
93887
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'articles';
|
93888
|
+
[1m[36m (115.3ms)[0m [1mDELETE FROM "samples";[0m
|
93889
|
+
[1m[35m (0.3ms)[0m DELETE FROM sqlite_sequence where name = 'samples';
|
93890
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
93891
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
93892
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93893
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93894
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93895
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93896
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93897
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93898
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93899
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93900
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93901
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93902
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93903
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93904
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
93905
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
93906
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
93907
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93908
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93909
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("articles")
|
93910
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_articles_on_slug')[0m
|
93911
|
+
[1m[35m (0.1ms)[0m PRAGMA index_info('index_articles_on_published_at_and_locale')
|
93912
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_articles_on_highlight_and_published_at_and_locale')[0m
|
93913
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93914
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
93915
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("articles")
|
93916
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_articles_on_slug')[0m
|
93917
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_articles_on_published_at_and_locale')
|
93918
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_articles_on_highlight_and_published_at_and_locale')[0m
|
93919
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93920
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93921
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("articles")
|
93922
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_articles_on_slug')[0m
|
93923
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_articles_on_published_at_and_locale')
|
93924
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_articles_on_highlight_and_published_at_and_locale')[0m
|
93925
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93926
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93927
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
93928
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93929
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
93930
|
+
[1m[36mSQL (52.8ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
93932
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
93933
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
93935
|
+
[1m[35mArticle Load (0.1ms)[0m SELECT "articles".* FROM "articles" WHERE "articles"."published_at" IS NULL
|
93936
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
93937
|
+
[1m[35m (0.0ms)[0m begin transaction
|
93938
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
93939
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
93941
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
93942
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
93944
|
+
[1m[36mArticle Load (0.1ms)[0m [1mSELECT "articles".* FROM "articles" WHERE ("articles"."published_at" IS NOT NULL)[0m
|
93945
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
93946
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93947
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93948
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93949
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
93950
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
93952
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
93953
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
93955
|
+
[1m[35mArticle Load (0.1ms)[0m SELECT "articles".* FROM "articles" WHERE "articles"."highlight" = 't'
|
93956
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
93957
|
+
[1m[35m (0.0ms)[0m begin transaction
|
93958
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
93959
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
93961
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
93962
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
93964
|
+
[1m[36mArticle Load (0.1ms)[0m [1mSELECT "articles".* FROM "articles" WHERE "articles"."slug" = 'our-custom-title'[0m
|
93965
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
93966
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93967
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
93968
|
+
[1m[36mSQL (1.1ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
93970
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
93971
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
93973
|
+
[1m[35mArticle Load (0.2ms)[0m SELECT "articles".* FROM "articles" WHERE "articles"."locale" = 'en'
|
93974
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
93975
|
+
[1m[35m (0.0ms)[0m begin transaction
|
93976
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
93977
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
93979
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
93980
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
93982
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
93983
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
93985
|
+
[1m[35mArticle Load (0.1ms)[0m SELECT "articles".* FROM "articles" WHERE (published_at >= '2012-01-01 00:00:00' AND published_at <= '2012-12-31 23:59:59')
|
93986
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
93987
|
+
[1m[35m (0.0ms)[0m begin transaction
|
93988
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
93989
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
93991
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
93992
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
93994
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
93995
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
93997
|
+
[1m[35mArticle Load (0.2ms)[0m SELECT "articles".* FROM "articles" WHERE (published_at >= '2012-03-01 00:00:00' AND published_at <= '2012-03-31 23:59:59')
|
93998
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
93999
|
+
[1m[35m (0.1ms)[0m begin transaction
|
94000
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
94001
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
94003
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
94004
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
94006
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
94007
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
94009
|
+
[1m[35mArticle Load (0.1ms)[0m SELECT "articles".* FROM "articles" WHERE (published_at >= '2012-03-30 00:00:00' AND published_at <= '2012-03-30 23:59:59')
|
94010
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
94011
|
+
[1m[35m (0.1ms)[0m begin transaction
|
94012
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
94013
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
94015
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
94016
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
94018
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
94019
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
94021
|
+
[1m[35mArticle Load (0.2ms)[0m SELECT "articles".* FROM "articles"
|
94022
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
94023
|
+
[1m[35m (0.1ms)[0m begin transaction
|
94024
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
94025
|
+
[1m[35mSQL (0.7ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
94027
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
94028
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "articles" SET "published_at" = '2012-03-30 12:40:52.000000', "updated_at" = '2012-03-30 12:40:52.694766' WHERE "articles"."id" = 1[0m
|
94029
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
94030
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
94031
|
+
[1m[35m (0.0ms)[0m begin transaction
|
94032
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
94033
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
94035
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94036
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94037
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
94038
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
94040
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
94041
|
+
[1m[35m (0.0ms)[0m begin transaction
|
94042
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
94043
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
94045
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94046
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSample Load (0.2ms)[0m SELECT "samples".* FROM "samples" ORDER BY created_at DESC LIMIT 25 OFFSET 0
|
94055
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "samples" [0m
|
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
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
94077
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT 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 (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSample Load (0.2ms)[0m [1mSELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0[0m [["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
|
+
[1m[35mSample Load (0.1ms)[0m 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
|
+
[1m[36mSample Load (0.1ms)[0m [1mSELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0[0m [["id", "1"]]
|
94114
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
94115
|
+
[1m[36m (0.2ms)[0m [1mUPDATE "samples" SET "multiple_select_field" = '---
|
94116
|
+
- ''''
|
94117
|
+
', "updated_at" = '2012-03-30 12:40:53.398430' WHERE "samples"."id" = 1[0m
|
94118
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSample Load (0.1ms)[0m [1mSELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0[0m [["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
|
+
[1m[35mSample Load (0.1ms)[0m SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
|
94141
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
94142
|
+
[1m[35mSQL (0.1ms)[0m DELETE FROM "samples" WHERE "samples"."id" = ? [["id", 1]]
|
94143
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35mSample Load (0.2ms)[0m SELECT "samples".* FROM "samples" ORDER BY created_at DESC LIMIT 25 OFFSET 0
|
94154
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "samples" [0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94160
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94161
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94162
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94163
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94164
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94165
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94166
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94167
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94168
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94169
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94170
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94171
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94173
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94174
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94175
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94176
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94177
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94178
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94179
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94181
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94182
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94183
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94184
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94185
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94186
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94187
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94188
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94189
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94190
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94191
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94192
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94193
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94194
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94195
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94196
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94197
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
94198
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94199
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94200
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94201
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94202
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94203
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94204
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94205
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94206
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94207
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94209
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94211
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94212
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94213
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94214
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94215
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94216
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94217
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94218
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94219
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94220
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94221
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94222
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94223
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94224
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94225
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94226
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94227
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94229
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94230
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94231
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94232
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94233
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94234
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94235
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94236
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94237
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94238
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94239
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94240
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94241
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94242
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94243
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94244
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94245
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94246
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94247
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94248
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94249
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94250
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94251
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94252
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94253
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94254
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94255
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94256
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94257
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
94258
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94259
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94261
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94263
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94264
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94265
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94266
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94267
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94268
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94269
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94271
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94272
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
94273
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
94274
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
94275
|
+
[1m[35m (0.1ms)[0m 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.
|
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-
|
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: &
|
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: *
|
24
|
+
version_requirements: *22076800
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: jquery-rails
|
27
|
-
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: *
|
35
|
+
version_requirements: *22076260
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: sass-rails
|
38
|
-
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: *
|
46
|
+
version_requirements: *22091860
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: sqlite3
|
49
|
-
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: *
|
57
|
+
version_requirements: *22091020
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: rspec-rails
|
60
|
-
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: *
|
68
|
+
version_requirements: *22090260
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: capybara
|
71
|
-
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: *
|
79
|
+
version_requirements: *22088980
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: launchy
|
82
|
-
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: *
|
90
|
+
version_requirements: *22088320
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: database_cleaner
|
93
|
-
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: *
|
101
|
+
version_requirements: *22087540
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
103
|
name: factory_girl_rails
|
104
|
-
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: *
|
112
|
+
version_requirements: *22086420
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: shoulda-matchers
|
115
|
-
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: *
|
123
|
+
version_requirements: *22085460
|
124
124
|
description: An unobtrusive Rails administration engine
|
125
125
|
email:
|
126
126
|
- fabiokr@gmail.com
|