summaryrefslogtreecommitdiff
path: root/vendor/plugins/will_paginate/test/fixtures/topics.yml
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-06-24 04:13:16 +0200
committererdgeist <erdgeist@erdgeist.org>2026-06-24 04:13:16 +0200
commite0a7e0fec760ba12c8067a37e10c96f1f05876e2 (patch)
treed0cf745592a46aee4d4913911fd34c7c24515220 /vendor/plugins/will_paginate/test/fixtures/topics.yml
parent6424e10be5a89f175a74c71c55660412a169b8b8 (diff)
Stage 1 complete: Rails 2.3.5 to Rails 3.2.22.5 upgrade
- Converted plugins to gems (Gemfile) - Updated config structure (application.rb, boot.rb, environment.rb) - Converted routes to Rails 3 DSL - Converted named_scope to scope throughout models - Converted find(:all, :conditions) to where() chains - Fixed has_many :order to use ordering scope - Updated session store and secret token configuration - Fixed exception_notification middleware configuration - Patched Ruby 2.4 / Rails 3.2 incompatibilities: - Integer/Float duration arithmetic (ActiveSupport) - Arel visit_Integer for PostgreSQL adapter - create_database String/Integer coercion - ActionController consider_all_requests_local - Migrated taggings schema for acts-as-taggable-on - Replaced dynamic_form gem with custom form_error_messages helper - Fixed Rails 3 block helper syntax (form_for, form_tag, fields_for) - Fixed admin layout yield - Updated test suite for Rails 3 APIs
Diffstat (limited to 'vendor/plugins/will_paginate/test/fixtures/topics.yml')
-rw-r--r--vendor/plugins/will_paginate/test/fixtures/topics.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/plugins/will_paginate/test/fixtures/topics.yml b/vendor/plugins/will_paginate/test/fixtures/topics.yml
deleted file mode 100644
index 0a269047..00000000
--- a/vendor/plugins/will_paginate/test/fixtures/topics.yml
+++ /dev/null
@@ -1,30 +0,0 @@
1futurama:
2 id: 1
3 title: Isnt futurama awesome?
4 subtitle: It really is, isnt it.
5 content: I like futurama
6 created_at: <%= 1.day.ago.to_s(:db) %>
7 updated_at:
8
9harvey_birdman:
10 id: 2
11 title: Harvey Birdman is the king of all men
12 subtitle: yup
13 content: He really is
14 created_at: <%= 2.hours.ago.to_s(:db) %>
15 updated_at:
16
17rails:
18 id: 3
19 project_id: 1
20 title: Rails is nice
21 subtitle: It makes me happy
22 content: except when I have to hack internals to fix pagination. even then really.
23 created_at: <%= 20.minutes.ago.to_s(:db) %>
24
25ar:
26 id: 4
27 project_id: 1
28 title: ActiveRecord sometimes freaks me out
29 content: "I mean, what's the deal with eager loading?"
30 created_at: <%= 15.minutes.ago.to_s(:db) %>