manageable 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.1.2
2
+
3
+ * Fixed published_at scope to filter with DateTime
4
+
1
5
  == 0.1.1
2
6
 
3
7
  * First Release
@@ -20,11 +20,11 @@ module Manageable
20
20
  scoped
21
21
  else
22
22
  beginning_date, end_date = if month.nil? && day.nil?
23
- [Date.new(year.to_i).beginning_of_year, Date.new(year.to_i).end_of_year]
23
+ [DateTime.new(year.to_i).beginning_of_year, DateTime.new(year.to_i).end_of_year]
24
24
  elsif day.nil?
25
- [Date.new(year.to_i, month.to_i).beginning_of_month, Date.new(year.to_i, month.to_i).end_of_month]
25
+ [DateTime.new(year.to_i, month.to_i).beginning_of_month, DateTime.new(year.to_i, month.to_i).end_of_month]
26
26
  else
27
- [Date.new(year.to_i, month.to_i, day.to_i).beginning_of_day, Date.new(year.to_i, month.to_i, day.to_i).end_of_day]
27
+ [DateTime.new(year.to_i, month.to_i, day.to_i).beginning_of_day, DateTime.new(year.to_i, month.to_i, day.to_i).end_of_day]
28
28
  end
29
29
 
30
30
  where("published_at >= ? AND published_at <= ?", beginning_date, end_date)
@@ -1,3 +1,3 @@
1
1
  module Manageable
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
Binary file
@@ -93493,3 +93493,393 @@ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.2ms)
93493
93493
   (0.1ms) rollback transaction
93494
93494
   (0.0ms) begin transaction
93495
93495
   (0.1ms) rollback transaction
93496
+  (108.7ms) DELETE FROM "articles";
93497
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'articles';
93498
+  (81.8ms) DELETE FROM "samples";
93499
+  (0.3ms) DELETE FROM sqlite_sequence where name = 'samples';
93500
+  (0.2ms) begin transaction
93501
+  (0.1ms) rollback transaction
93502
+  (0.1ms) begin transaction
93503
+  (0.1ms) rollback transaction
93504
+  (0.1ms) begin transaction
93505
+  (0.0ms) rollback transaction
93506
+  (0.0ms) begin transaction
93507
+  (0.0ms) rollback transaction
93508
+  (0.0ms) begin transaction
93509
+  (0.0ms) rollback transaction
93510
+  (0.1ms) begin transaction
93511
+  (0.1ms) rollback transaction
93512
+  (0.1ms) begin transaction
93513
+  (0.1ms) rollback transaction
93514
+  (0.1ms) begin transaction
93515
+  (0.1ms) rollback transaction
93516
+  (0.1ms) begin transaction
93517
+  (0.0ms) rollback transaction
93518
+  (0.1ms) begin transaction
93519
+  (0.1ms) PRAGMA index_list("articles")
93520
+  (0.2ms) PRAGMA index_info('index_articles_on_slug')
93521
+  (0.0ms) PRAGMA index_info('index_articles_on_published_at_and_locale')
93522
+  (0.1ms) PRAGMA index_info('index_articles_on_highlight_and_published_at_and_locale')
93523
+  (0.1ms) rollback transaction
93524
+  (0.0ms) begin transaction
93525
+  (0.1ms) PRAGMA index_list("articles")
93526
+  (0.0ms) PRAGMA index_info('index_articles_on_slug')
93527
+  (0.0ms) PRAGMA index_info('index_articles_on_published_at_and_locale')
93528
+  (0.0ms) PRAGMA index_info('index_articles_on_highlight_and_published_at_and_locale')
93529
+  (0.0ms) rollback transaction
93530
+  (0.0ms) begin transaction
93531
+  (0.0ms) PRAGMA index_list("articles")
93532
+  (0.0ms) PRAGMA index_info('index_articles_on_slug')
93533
+  (0.0ms) PRAGMA index_info('index_articles_on_published_at_and_locale')
93534
+  (0.0ms) PRAGMA index_info('index_articles_on_highlight_and_published_at_and_locale')
93535
+  (0.0ms) rollback transaction
93536
+  (0.0ms) begin transaction
93537
+  (0.1ms) rollback transaction
93538
+  (0.1ms) begin transaction
93539
+  (0.1ms) SAVEPOINT active_record_1
93540
+ SQL (54.9ms) INSERT INTO "articles" ("content", "created_at", "description", "excerpt", "highlight", "keywords", "locale", "published_at", "slug", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["content", "My article content"], ["created_at", Wed, 28 Mar 2012 01:40:14 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93541
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93542
+  (0.0ms) SAVEPOINT active_record_1
93543
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93545
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."published_at" IS NULL
93546
+  (0.1ms) rollback transaction
93547
+  (0.0ms) begin transaction
93548
+  (0.0ms) SAVEPOINT active_record_1
93549
+ 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", Wed, 28 Mar 2012 01:40:14 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93550
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93551
+  (0.1ms) SAVEPOINT active_record_1
93552
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93553
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93554
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE ("articles"."published_at" IS NOT NULL)
93555
+  (0.1ms) rollback transaction
93556
+  (0.0ms) begin transaction
93557
+  (0.0ms) rollback transaction
93558
+  (0.0ms) begin transaction
93559
+  (0.0ms) SAVEPOINT active_record_1
93560
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", false], ["keywords", nil], ["locale", :en], ["published_at", Thu, 02 Aug 2012 01:40:14 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93562
+  (0.1ms) SAVEPOINT active_record_1
93563
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Tue, 18 Nov 2014 01:40:14 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93564
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93565
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."highlight" = 't'
93566
+  (0.1ms) rollback transaction
93567
+  (0.0ms) begin transaction
93568
+  (0.0ms) SAVEPOINT active_record_1
93569
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93571
+  (0.0ms) SAVEPOINT active_record_1
93572
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 12 Jun 2013 01:40:14 UTC +00:00], ["slug", "our-custom-title"], ["title", "Our custom title"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93574
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE "articles"."slug" = 'our-custom-title'
93575
+  (0.1ms) rollback transaction
93576
+  (0.0ms) begin transaction
93577
+  (0.0ms) SAVEPOINT active_record_1
93578
+ SQL (1.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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", "en"], ["published_at", Sun, 16 Nov 2014 01:40:14 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93579
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93580
+  (0.1ms) SAVEPOINT active_record_1
93581
+ SQL (0.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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", "pt"], ["published_at", Sat, 12 Apr 2014 01:40:14 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93582
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93583
+ Article Load (0.2ms) SELECT "articles".* FROM "articles" WHERE "articles"."locale" = 'en'
93584
+  (0.2ms) rollback transaction
93585
+  (0.1ms) begin transaction
93586
+  (0.1ms) SAVEPOINT active_record_1
93587
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Mon, 28 Mar 2011 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93589
+  (0.1ms) SAVEPOINT active_record_1
93590
+ SQL (0.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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 28 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93591
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93592
+  (0.1ms) SAVEPOINT active_record_1
93593
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Thu, 28 Mar 2013 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93595
+ 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')
93596
+  (0.1ms) rollback transaction
93597
+  (0.0ms) begin transaction
93598
+  (0.0ms) SAVEPOINT active_record_1
93599
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Tue, 28 Feb 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93601
+  (0.0ms) SAVEPOINT active_record_1
93602
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 28 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93603
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93604
+  (0.0ms) SAVEPOINT active_record_1
93605
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Sat, 28 Apr 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93607
+ 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')
93608
+  (0.2ms) rollback transaction
93609
+  (0.1ms) begin transaction
93610
+  (0.0ms) SAVEPOINT active_record_1
93611
+ SQL (0.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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Tue, 27 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93613
+  (0.1ms) SAVEPOINT active_record_1
93614
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 28 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93615
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93616
+  (0.0ms) SAVEPOINT active_record_1
93617
+ 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", Wed, 28 Mar 2012 01:40:14 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93618
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93619
+ Article Load (0.1ms) SELECT "articles".* FROM "articles" WHERE (published_at >= '2012-03-28 00:00:00' AND published_at <= '2012-03-28 23:59:59')
93620
+  (0.1ms) rollback transaction
93621
+  (0.0ms) begin transaction
93622
+  (0.0ms) SAVEPOINT active_record_1
93623
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Tue, 27 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93624
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93625
+  (0.0ms) SAVEPOINT active_record_1
93626
+ 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 28 Mar 2012 03:00:00 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93628
+  (0.1ms) SAVEPOINT active_record_1
93629
+ 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", Wed, 28 Mar 2012 01:40:14 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93630
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93631
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
93632
+  (0.2ms) rollback transaction
93633
+  (0.1ms) begin transaction
93634
+  (0.0ms) SAVEPOINT active_record_1
93635
+ 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", Wed, 28 Mar 2012 01:40:14 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", Wed, 28 Mar 2012 01:40:14 UTC +00:00]]
93636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93637
+  (0.0ms) SAVEPOINT active_record_1
93638
+  (0.3ms) UPDATE "articles" SET "published_at" = '2012-03-28 01:40:14.000000', "updated_at" = '2012-03-28 01:40:14.995929' WHERE "articles"."id" = 1
93639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93640
+  (0.2ms) rollback transaction
93641
+  (0.1ms) begin transaction
93642
+  (0.1ms) SAVEPOINT active_record_1
93643
+ 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", Wed, 28 Mar 2012 01:40:15 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Mon, 05 May 2014 01:40:15 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:15 UTC +00:00]]
93644
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93645
+  (0.1ms) rollback transaction
93646
+  (0.1ms) begin transaction
93647
+  (0.1ms) SAVEPOINT active_record_1
93648
+ SQL (0.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", Wed, 28 Mar 2012 01:40:15 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", :en], ["published_at", Wed, 24 Jul 2013 01:40:15 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:15 UTC +00:00]]
93649
+  (0.1ms) RELEASE SAVEPOINT active_record_1
93650
+  (0.1ms) rollback transaction
93651
+  (0.1ms) begin transaction
93652
+  (0.1ms) SAVEPOINT active_record_1
93653
+ 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", Wed, 28 Mar 2012 01:40:15 UTC +00:00], ["description", "My article description"], ["excerpt", "My article excerpt"], ["highlight", true], ["keywords", nil], ["locale", "jp"], ["published_at", Sat, 27 Jul 2013 01:40:15 UTC +00:00], ["slug", "my-article"], ["title", "My article"], ["updated_at", Wed, 28 Mar 2012 01:40:15 UTC +00:00]]
93654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93655
+  (0.1ms) rollback transaction
93656
+  (0.0ms) begin transaction
93657
+
93658
+
93659
+ Started GET "/samples" for 127.0.0.1 at 2012-03-27 22:40:15 -0300
93660
+ Processing by SamplesController#index as HTML
93661
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_navigation.html.erb (1.2ms)
93662
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_header.html.erb (1.0ms)
93663
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_headers.html.erb (0.3ms)
93664
+ Sample Load (0.2ms) SELECT "samples".* FROM "samples" ORDER BY created_at DESC LIMIT 25 OFFSET 0
93665
+  (0.1ms) SELECT COUNT(*) FROM "samples" 
93666
+ Rendered manageable/application/_index_pagination.html.erb (1.7ms)
93667
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_table.html.erb (44.8ms)
93668
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/index.html.erb within layouts/manageable/application (65.8ms)
93669
+ Completed 200 OK in 113ms (Views: 112.2ms | ActiveRecord: 0.3ms)
93670
+
93671
+
93672
+ Started GET "/samples/new" for 127.0.0.1 at 2012-03-27 22:40:15 -0300
93673
+ Processing by SamplesController#new as HTML
93674
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_navigation.html.erb (48.7ms)
93675
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_controls.html.erb (0.6ms)
93676
+ Rendered samples/_form_fields.html.erb (12.0ms)
93677
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_footer.html.erb (1.2ms)
93678
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form.html.erb (87.3ms)
93679
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/new.html.erb within layouts/manageable/application (89.6ms)
93680
+ Completed 200 OK in 112ms (Views: 94.3ms | ActiveRecord: 0.0ms)
93681
+
93682
+
93683
+ Started POST "/samples" for 127.0.0.1 at 2012-03-27 22:40:15 -0300
93684
+ Processing by SamplesController#create as HTML
93685
+ 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"}}
93686
+  (0.1ms) SAVEPOINT active_record_1
93687
+ SQL (0.7ms) 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", Wed, 28 Mar 2012 01:40:15 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", Wed, 28 Mar 2012 01:40:15 UTC +00:00], ["url_field", ""]]
93688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93689
+ Redirected to http://www.example.com/samples/1
93690
+ Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
93691
+
93692
+
93693
+ Started GET "/samples/1" for 127.0.0.1 at 2012-03-27 22:40:15 -0300
93694
+ Processing by SamplesController#show as HTML
93695
+ Parameters: {"id"=>"1"}
93696
+ Sample Load (0.2ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
93697
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_navigation.html.erb (6.5ms)
93698
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_navigation.html.erb (9.0ms)
93699
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_controls.html.erb (0.9ms)
93700
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_controls.html.erb (1.6ms)
93701
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_fields.html.erb (0.3ms)
93702
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form.html.erb (23.6ms)
93703
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/show.html.erb within layouts/manageable/application (35.1ms)
93704
+ Completed 200 OK in 42ms (Views: 40.0ms | ActiveRecord: 0.2ms)
93705
+
93706
+
93707
+ Started GET "/samples/1/edit" for 127.0.0.1 at 2012-03-27 22:40:15 -0300
93708
+ Processing by SamplesController#edit as HTML
93709
+ Parameters: {"id"=>"1"}
93710
+ Sample Load (0.1ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
93711
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_navigation.html.erb (1.6ms)
93712
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_controls.html.erb (0.6ms)
93713
+ Rendered samples/_form_fields.html.erb (60.3ms)
93714
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_footer.html.erb (0.6ms)
93715
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form.html.erb (66.1ms)
93716
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/edit.html.erb within layouts/manageable/application (66.8ms)
93717
+ Completed 200 OK in 73ms (Views: 71.6ms | ActiveRecord: 0.1ms)
93718
+
93719
+
93720
+ Started PUT "/samples/1" for 127.0.0.1 at 2012-03-27 22:40:15 -0300
93721
+ Processing by SamplesController#update as HTML
93722
+ 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"}
93723
+ Sample Load (0.1ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
93724
+  (0.1ms) SAVEPOINT active_record_1
93725
+  (0.2ms) UPDATE "samples" SET "multiple_select_field" = '---
93726
+ - ''''
93727
+ ', "updated_at" = '2012-03-28 01:40:15.805251' WHERE "samples"."id" = 1
93728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93729
+ Redirected to http://www.example.com/samples/1
93730
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
93731
+
93732
+
93733
+ Started GET "/samples/1" for 127.0.0.1 at 2012-03-27 22:40:15 -0300
93734
+ Processing by SamplesController#show as HTML
93735
+ Parameters: {"id"=>"1"}
93736
+ Sample Load (0.1ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
93737
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_navigation.html.erb (1.6ms)
93738
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_navigation.html.erb (1.9ms)
93739
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_form_controls.html.erb (0.6ms)
93740
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_controls.html.erb (0.9ms)
93741
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form_fields.html.erb (0.0ms)
93742
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_readonly_form.html.erb (6.4ms)
93743
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/show.html.erb within layouts/manageable/application (6.7ms)
93744
+ Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.1ms)
93745
+
93746
+
93747
+ Started DELETE "/samples/1" for 127.0.0.1 at 2012-03-27 22:40:15 -0300
93748
+ Processing by SamplesController#destroy as HTML
93749
+ Parameters: {"id"=>"1"}
93750
+ Sample Load (0.1ms) SELECT "samples".* FROM "samples" WHERE "samples"."id" = ? ORDER BY created_at DESC LIMIT 1 OFFSET 0 [["id", "1"]]
93751
+  (0.1ms) SAVEPOINT active_record_1
93752
+ SQL (0.1ms) DELETE FROM "samples" WHERE "samples"."id" = ? [["id", 1]]
93753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
93754
+ Redirected to http://www.example.com/samples
93755
+ Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
93756
+
93757
+
93758
+ Started GET "/samples" for 127.0.0.1 at 2012-03-27 22:40:15 -0300
93759
+ Processing by SamplesController#index as HTML
93760
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_navigation.html.erb (0.6ms)
93761
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_header.html.erb (0.4ms)
93762
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_headers.html.erb (0.0ms)
93763
+ Sample Load (0.2ms) SELECT "samples".* FROM "samples" ORDER BY created_at DESC LIMIT 25 OFFSET 0
93764
+  (0.1ms) SELECT COUNT(*) FROM "samples" 
93765
+ Rendered manageable/application/_index_pagination.html.erb (1.2ms)
93766
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/_index_table.html.erb (5.8ms)
93767
+ Rendered /home/fabio/dev/projects/manageable/app/views/manageable/application/index.html.erb within layouts/manageable/application (6.1ms)
93768
+ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.2ms)
93769
+  (0.1ms) rollback transaction
93770
+  (0.1ms) begin transaction
93771
+  (0.0ms) rollback transaction
93772
+  (0.0ms) begin transaction
93773
+  (0.0ms) rollback transaction
93774
+  (0.0ms) begin transaction
93775
+  (0.0ms) rollback transaction
93776
+  (0.0ms) begin transaction
93777
+  (0.0ms) rollback transaction
93778
+  (0.0ms) begin transaction
93779
+  (0.0ms) rollback transaction
93780
+  (0.0ms) begin transaction
93781
+  (0.1ms) rollback transaction
93782
+  (0.1ms) begin transaction
93783
+  (0.1ms) rollback transaction
93784
+  (0.0ms) begin transaction
93785
+  (0.0ms) rollback transaction
93786
+  (0.0ms) begin transaction
93787
+  (0.0ms) rollback transaction
93788
+  (0.0ms) begin transaction
93789
+  (0.0ms) rollback transaction
93790
+  (0.0ms) begin transaction
93791
+  (0.0ms) rollback transaction
93792
+  (0.0ms) begin transaction
93793
+  (0.1ms) rollback transaction
93794
+  (0.1ms) begin transaction
93795
+  (0.1ms) rollback transaction
93796
+  (0.1ms) begin transaction
93797
+  (0.1ms) rollback transaction
93798
+  (0.1ms) begin transaction
93799
+  (0.1ms) rollback transaction
93800
+  (0.1ms) begin transaction
93801
+  (0.1ms) rollback transaction
93802
+  (0.0ms) begin transaction
93803
+  (0.1ms) rollback transaction
93804
+  (0.0ms) begin transaction
93805
+  (0.1ms) rollback transaction
93806
+  (0.0ms) begin transaction
93807
+  (0.1ms) rollback transaction
93808
+  (0.0ms) begin transaction
93809
+  (0.1ms) rollback transaction
93810
+  (0.1ms) begin transaction
93811
+  (0.1ms) rollback transaction
93812
+  (0.0ms) begin transaction
93813
+  (0.1ms) rollback transaction
93814
+  (0.0ms) begin transaction
93815
+  (0.1ms) rollback transaction
93816
+  (0.0ms) begin transaction
93817
+  (0.1ms) rollback transaction
93818
+  (0.0ms) begin transaction
93819
+  (0.1ms) rollback transaction
93820
+  (0.0ms) begin transaction
93821
+  (0.2ms) rollback transaction
93822
+  (0.1ms) begin transaction
93823
+  (0.1ms) rollback transaction
93824
+  (0.0ms) begin transaction
93825
+  (0.1ms) rollback transaction
93826
+  (0.0ms) begin transaction
93827
+  (0.0ms) rollback transaction
93828
+  (0.1ms) begin transaction
93829
+  (0.0ms) rollback transaction
93830
+  (0.0ms) begin transaction
93831
+  (0.0ms) rollback transaction
93832
+  (0.0ms) begin transaction
93833
+  (0.1ms) rollback transaction
93834
+  (0.1ms) begin transaction
93835
+  (0.0ms) rollback transaction
93836
+  (0.1ms) begin transaction
93837
+  (0.0ms) rollback transaction
93838
+  (0.0ms) begin transaction
93839
+  (0.0ms) rollback transaction
93840
+  (0.0ms) begin transaction
93841
+  (0.0ms) rollback transaction
93842
+  (0.0ms) begin transaction
93843
+  (0.0ms) rollback transaction
93844
+  (0.0ms) begin transaction
93845
+  (0.0ms) rollback transaction
93846
+  (0.0ms) begin transaction
93847
+  (0.0ms) rollback transaction
93848
+  (0.0ms) begin transaction
93849
+  (0.0ms) rollback transaction
93850
+  (0.0ms) begin transaction
93851
+  (0.0ms) rollback transaction
93852
+  (0.0ms) begin transaction
93853
+  (0.0ms) rollback transaction
93854
+  (0.0ms) begin transaction
93855
+  (0.0ms) rollback transaction
93856
+  (0.0ms) begin transaction
93857
+  (0.0ms) rollback transaction
93858
+  (0.0ms) begin transaction
93859
+  (0.0ms) rollback transaction
93860
+  (0.0ms) begin transaction
93861
+  (0.0ms) rollback transaction
93862
+  (0.1ms) begin transaction
93863
+  (0.1ms) rollback transaction
93864
+  (0.1ms) begin transaction
93865
+  (0.0ms) rollback transaction
93866
+  (0.0ms) begin transaction
93867
+  (0.0ms) rollback transaction
93868
+  (0.1ms) begin transaction
93869
+  (0.1ms) rollback transaction
93870
+  (0.1ms) begin transaction
93871
+  (0.1ms) rollback transaction
93872
+  (0.0ms) begin transaction
93873
+  (0.1ms) rollback transaction
93874
+  (0.0ms) begin transaction
93875
+  (0.1ms) rollback transaction
93876
+  (0.0ms) begin transaction
93877
+  (0.1ms) rollback transaction
93878
+  (0.0ms) begin transaction
93879
+  (0.1ms) rollback transaction
93880
+  (0.1ms) begin transaction
93881
+  (0.1ms) rollback transaction
93882
+  (0.0ms) begin transaction
93883
+  (0.1ms) rollback transaction
93884
+  (0.1ms) begin transaction
93885
+  (0.2ms) rollback transaction
metadata CHANGED
@@ -1,176 +1,133 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: manageable
3
- version: !ruby/object:Gem::Version
4
- hash: 25
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.2
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 1
9
- - 1
10
- version: 0.1.1
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Fabio Kreusch
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2012-03-24 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2012-03-28 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: rails
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &23247320 !ruby/object:Gem::Requirement
24
17
  none: false
25
- requirements:
18
+ requirements:
26
19
  - - ~>
27
- - !ruby/object:Gem::Version
28
- hash: 5
29
- segments:
30
- - 3
31
- - 1
32
- version: "3.1"
20
+ - !ruby/object:Gem::Version
21
+ version: '3.1'
33
22
  type: :runtime
34
- version_requirements: *id001
35
- - !ruby/object:Gem::Dependency
36
- name: jquery-rails
37
23
  prerelease: false
38
- requirement: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: *23247320
25
+ - !ruby/object:Gem::Dependency
26
+ name: jquery-rails
27
+ requirement: &23246640 !ruby/object:Gem::Requirement
39
28
  none: false
40
- requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- hash: 3
44
- segments:
45
- - 0
46
- version: "0"
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
47
33
  type: :runtime
48
- version_requirements: *id002
49
- - !ruby/object:Gem::Dependency
50
- name: sass-rails
51
34
  prerelease: false
52
- requirement: &id003 !ruby/object:Gem::Requirement
35
+ version_requirements: *23246640
36
+ - !ruby/object:Gem::Dependency
37
+ name: sass-rails
38
+ requirement: &23245880 !ruby/object:Gem::Requirement
53
39
  none: false
54
- requirements:
55
- - - ">="
56
- - !ruby/object:Gem::Version
57
- hash: 3
58
- segments:
59
- - 0
60
- version: "0"
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
61
44
  type: :runtime
62
- version_requirements: *id003
63
- - !ruby/object:Gem::Dependency
64
- name: sqlite3
65
45
  prerelease: false
66
- requirement: &id004 !ruby/object:Gem::Requirement
46
+ version_requirements: *23245880
47
+ - !ruby/object:Gem::Dependency
48
+ name: sqlite3
49
+ requirement: &23245420 !ruby/object:Gem::Requirement
67
50
  none: false
68
- requirements:
69
- - - ">="
70
- - !ruby/object:Gem::Version
71
- hash: 3
72
- segments:
73
- - 0
74
- version: "0"
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
75
55
  type: :development
76
- version_requirements: *id004
77
- - !ruby/object:Gem::Dependency
78
- name: rspec-rails
79
56
  prerelease: false
80
- requirement: &id005 !ruby/object:Gem::Requirement
57
+ version_requirements: *23245420
58
+ - !ruby/object:Gem::Dependency
59
+ name: rspec-rails
60
+ requirement: &23261260 !ruby/object:Gem::Requirement
81
61
  none: false
82
- requirements:
62
+ requirements:
83
63
  - - ~>
84
- - !ruby/object:Gem::Version
85
- hash: 9
86
- segments:
87
- - 2
88
- - 5
89
- version: "2.5"
64
+ - !ruby/object:Gem::Version
65
+ version: '2.5'
90
66
  type: :development
91
- version_requirements: *id005
92
- - !ruby/object:Gem::Dependency
93
- name: capybara
94
67
  prerelease: false
95
- requirement: &id006 !ruby/object:Gem::Requirement
68
+ version_requirements: *23261260
69
+ - !ruby/object:Gem::Dependency
70
+ name: capybara
71
+ requirement: &23260800 !ruby/object:Gem::Requirement
96
72
  none: false
97
- requirements:
98
- - - ">="
99
- - !ruby/object:Gem::Version
100
- hash: 3
101
- segments:
102
- - 0
103
- version: "0"
73
+ requirements:
74
+ - - ! '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
104
77
  type: :development
105
- version_requirements: *id006
106
- - !ruby/object:Gem::Dependency
107
- name: launchy
108
78
  prerelease: false
109
- requirement: &id007 !ruby/object:Gem::Requirement
79
+ version_requirements: *23260800
80
+ - !ruby/object:Gem::Dependency
81
+ name: launchy
82
+ requirement: &23260280 !ruby/object:Gem::Requirement
110
83
  none: false
111
- requirements:
112
- - - ">="
113
- - !ruby/object:Gem::Version
114
- hash: 3
115
- segments:
116
- - 0
117
- version: "0"
84
+ requirements:
85
+ - - ! '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
118
88
  type: :development
119
- version_requirements: *id007
120
- - !ruby/object:Gem::Dependency
121
- name: database_cleaner
122
89
  prerelease: false
123
- requirement: &id008 !ruby/object:Gem::Requirement
90
+ version_requirements: *23260280
91
+ - !ruby/object:Gem::Dependency
92
+ name: database_cleaner
93
+ requirement: &23259820 !ruby/object:Gem::Requirement
124
94
  none: false
125
- requirements:
126
- - - ">="
127
- - !ruby/object:Gem::Version
128
- hash: 3
129
- segments:
130
- - 0
131
- version: "0"
95
+ requirements:
96
+ - - ! '>='
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
132
99
  type: :development
133
- version_requirements: *id008
134
- - !ruby/object:Gem::Dependency
135
- name: factory_girl_rails
136
100
  prerelease: false
137
- requirement: &id009 !ruby/object:Gem::Requirement
101
+ version_requirements: *23259820
102
+ - !ruby/object:Gem::Dependency
103
+ name: factory_girl_rails
104
+ requirement: &23259260 !ruby/object:Gem::Requirement
138
105
  none: false
139
- requirements:
106
+ requirements:
140
107
  - - ~>
141
- - !ruby/object:Gem::Version
142
- hash: 11
143
- segments:
144
- - 1
145
- - 7
146
- - 0
108
+ - !ruby/object:Gem::Version
147
109
  version: 1.7.0
148
110
  type: :development
149
- version_requirements: *id009
150
- - !ruby/object:Gem::Dependency
151
- name: shoulda-matchers
152
111
  prerelease: false
153
- requirement: &id010 !ruby/object:Gem::Requirement
112
+ version_requirements: *23259260
113
+ - !ruby/object:Gem::Dependency
114
+ name: shoulda-matchers
115
+ requirement: &23258800 !ruby/object:Gem::Requirement
154
116
  none: false
155
- requirements:
156
- - - ">="
157
- - !ruby/object:Gem::Version
158
- hash: 3
159
- segments:
160
- - 0
161
- version: "0"
117
+ requirements:
118
+ - - ! '>='
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
162
121
  type: :development
163
- version_requirements: *id010
122
+ prerelease: false
123
+ version_requirements: *23258800
164
124
  description: An unobtrusive Rails administration engine
165
- email:
125
+ email:
166
126
  - fabiokr@gmail.com
167
127
  executables: []
168
-
169
128
  extensions: []
170
-
171
129
  extra_rdoc_files: []
172
-
173
- files:
130
+ files:
174
131
  - app/helpers/manageable/application_helper.rb
175
132
  - app/assets/fonts/manageable/museo700-regular-webfont.svg
176
133
  - app/assets/fonts/manageable/museosans_500_italic-webfont.eot
@@ -4552,38 +4509,29 @@ files:
4552
4509
  - spec/controllers/manageable/application_controller_spec.rb
4553
4510
  homepage: https://github.com/fabiokr/manageable
4554
4511
  licenses: []
4555
-
4556
4512
  post_install_message:
4557
4513
  rdoc_options: []
4558
-
4559
- require_paths:
4514
+ require_paths:
4560
4515
  - lib
4561
- required_ruby_version: !ruby/object:Gem::Requirement
4516
+ required_ruby_version: !ruby/object:Gem::Requirement
4562
4517
  none: false
4563
- requirements:
4564
- - - ">="
4565
- - !ruby/object:Gem::Version
4566
- hash: 3
4567
- segments:
4568
- - 0
4569
- version: "0"
4570
- required_rubygems_version: !ruby/object:Gem::Requirement
4518
+ requirements:
4519
+ - - ! '>='
4520
+ - !ruby/object:Gem::Version
4521
+ version: '0'
4522
+ required_rubygems_version: !ruby/object:Gem::Requirement
4571
4523
  none: false
4572
- requirements:
4573
- - - ">="
4574
- - !ruby/object:Gem::Version
4575
- hash: 3
4576
- segments:
4577
- - 0
4578
- version: "0"
4524
+ requirements:
4525
+ - - ! '>='
4526
+ - !ruby/object:Gem::Version
4527
+ version: '0'
4579
4528
  requirements: []
4580
-
4581
4529
  rubyforge_project:
4582
4530
  rubygems_version: 1.8.15
4583
4531
  signing_key:
4584
4532
  specification_version: 3
4585
4533
  summary: An unobtrusive Rails administration engine
4586
- test_files:
4534
+ test_files:
4587
4535
  - spec/models/article_spec.rb
4588
4536
  - spec/integration/sample_spec.rb
4589
4537
  - spec/helpers/icon_spec.rb