Skip to content

Commit cf4055e

Browse files
committed
173 Refactoring common database module name
1 parent 413a22f commit cf4055e

4 files changed

Lines changed: 9 additions & 84 deletions

File tree

plugins/store/full_text.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
# Name:: Automatic::Plugin::Store::FullText
44
# Author:: 774 <http://id774.net>
55
# Created:: Feb 26, 2012
6-
# Updated:: Feb 29, 2012
6+
# Updated:: Jun 14, 2012
77
# Copyright:: 774 Copyright (c) 2012
88
# License:: Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0.
9-
require 'plugins/store/store_database'
9+
require 'plugins/store/database'
1010

1111
module Automatic::Plugin
1212
class Blog < ActiveRecord::Base
1313
end
1414

1515
class StoreFullText
16-
include Automatic::Plugin::StoreDatabase
16+
include Automatic::Plugin::Database
1717

1818
def initialize(config, pipeline=[])
1919
@config = config

plugins/store/link.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
# Name:: Automatic::Plugin::Store::Link
44
# Author:: 774 <http://id774.net>
55
# Created:: May 24, 2012
6-
# Updated:: May 24, 2012
6+
# Updated:: Jun 14, 2012
77
# Copyright:: 774 Copyright (c) 2012
88
# License:: Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0.
99

10-
require 'plugins/store/store_database'
10+
require 'plugins/store/database'
1111

1212
module Automatic::Plugin
1313
class Link < ActiveRecord::Base
1414
end
1515

1616
class StoreLink
17-
include Automatic::Plugin::StoreDatabase
17+
include Automatic::Plugin::Database
1818

1919
def initialize(config, pipeline=[])
2020
@config = config

plugins/store/permalink.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
# Name:: Automatic::Plugin::Store::Permalink
44
# Author:: 774 <http://id774.net>
55
# Created:: Feb 22, 2012
6-
# Updated:: Feb 29, 2012
6+
# Updated:: Jun 14, 2012
77
# Copyright:: 774 Copyright (c) 2012
88
# License:: Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0.
9-
require 'plugins/store/store_database'
9+
require 'plugins/store/database'
1010

1111
module Automatic::Plugin
1212
class Permalink < ActiveRecord::Base
1313
end
1414

1515
class StorePermalink
16-
include Automatic::Plugin::StoreDatabase
16+
include Automatic::Plugin::Database
1717

1818
def initialize(config, pipeline=[])
1919
@config = config

plugins/store/store_database.rb

Lines changed: 0 additions & 75 deletions
This file was deleted.

0 commit comments

Comments
 (0)