activerecord-redundancy 0.0.1 → 0.1.0
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.
- checksums.yaml +4 -4
- data/lib/redundancy/cache_column.rb +59 -0
- data/lib/redundancy/version.rb +1 -1
- data/lib/redundancy.rb +10 -67
- data/test/{dummy/test/fixtures → fixtures}/accounts.yml +0 -0
- data/test/{dummy/test/fixtures → fixtures}/posts.yml +0 -0
- data/test/{dummy/test/fixtures → fixtures}/users.yml +0 -0
- data/test/support/environment.rb +45 -0
- data/test/{dummy/app → support}/models/account.rb +0 -0
- data/test/{dummy/app → support}/models/post.rb +0 -0
- data/test/{dummy/app → support}/models/user.rb +0 -0
- data/test/test_helper.rb +6 -9
- metadata +17 -97
- data/lib/tasks/redundancy_tasks.rake +0 -4
- data/test/dummy/README.rdoc +0 -28
- data/test/dummy/Rakefile +0 -6
- data/test/dummy/app/assets/javascripts/application.js +0 -13
- data/test/dummy/app/assets/stylesheets/application.css +0 -15
- data/test/dummy/app/controllers/application_controller.rb +0 -5
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/dummy/bin/bundle +0 -3
- data/test/dummy/bin/rails +0 -4
- data/test/dummy/bin/rake +0 -4
- data/test/dummy/config/application.rb +0 -23
- data/test/dummy/config/boot.rb +0 -5
- data/test/dummy/config/database.yml +0 -25
- data/test/dummy/config/environment.rb +0 -5
- data/test/dummy/config/environments/development.rb +0 -37
- data/test/dummy/config/environments/production.rb +0 -82
- data/test/dummy/config/environments/test.rb +0 -39
- data/test/dummy/config/initializers/assets.rb +0 -8
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy/config/initializers/cookies_serializer.rb +0 -3
- data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -4
- data/test/dummy/config/initializers/inflections.rb +0 -16
- data/test/dummy/config/initializers/mime_types.rb +0 -4
- data/test/dummy/config/initializers/session_store.rb +0 -3
- data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy/config/locales/en.yml +0 -23
- data/test/dummy/config/routes.rb +0 -56
- data/test/dummy/config/secrets.yml +0 -22
- data/test/dummy/config.ru +0 -4
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20140716061500_create_posts.rb +0 -14
- data/test/dummy/db/migrate/20140716061513_create_users.rb +0 -12
- data/test/dummy/db/migrate/20140716133341_create_accounts.rb +0 -11
- data/test/dummy/db/schema.rb +0 -43
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -150
- data/test/dummy/log/test.log +0 -34830
- data/test/dummy/public/404.html +0 -67
- data/test/dummy/public/422.html +0 -67
- data/test/dummy/public/500.html +0 -66
- data/test/dummy/public/favicon.ico +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea48053646bbb9a46bac56dbdfbb38421deba343
|
4
|
+
data.tar.gz: d773a73fa5b34e872888e085d82b4f623de8b53e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d23cb5550eff70b10fad7f3f57b6a97ca5e9e494d6b3695d40a1459696bce13d9223c19da9bdaa84aac380297fa25ba66530f70c9de346f232bf055210da997f
|
7
|
+
data.tar.gz: 39d26a0d4e8a438ed0aecb02af153188a1762719c5d6fbd76a6a078281705d5409ae3fbf229a3db7fcaae0be0fe40247476a00910462ba89a6f7f5e231a66d64
|
@@ -0,0 +1,59 @@
|
|
1
|
+
module Redundancy
|
2
|
+
|
3
|
+
class CacheColumn
|
4
|
+
attr_reader :options
|
5
|
+
attr_reader :source, :dist, :klass
|
6
|
+
attr_reader :change_if, :nil_unless, :update, :set_prev_nil
|
7
|
+
|
8
|
+
def initialize options
|
9
|
+
@options = options
|
10
|
+
@source, @dist = options[:source], options[:dist]
|
11
|
+
@klass = options[:klass]
|
12
|
+
|
13
|
+
@change_if = options[:change_if]
|
14
|
+
@nil_unless = options[:nil_unless]
|
15
|
+
@update = options[:update] || false
|
16
|
+
@set_prev_nil = options[:set_prev_nil]
|
17
|
+
end
|
18
|
+
|
19
|
+
def update_record record
|
20
|
+
raise ArgumentError, "record class mismatch, expected #{klass}, got #{record.class}" unless record.kind_of? klass
|
21
|
+
return unless need_update?(record)
|
22
|
+
|
23
|
+
src = source[:association] ? record.send(source[:association]) : record
|
24
|
+
src = src && source[:attribute] && src.send(source[:attribute])
|
25
|
+
src = nil if nil_unless && !record.send(nil_unless)
|
26
|
+
|
27
|
+
dst = dist[:association] ? record.send(dist[:association]) : record
|
28
|
+
|
29
|
+
set_prev_nil[:klass].where(id: record.send(:attribute_was, set_prev_nil[:attribute]))
|
30
|
+
.update_all(dist[:attribute] => nil) if set_prev_nil
|
31
|
+
|
32
|
+
case dst
|
33
|
+
when ActiveRecord::Base
|
34
|
+
return if dst.send(:read_attribute, dist[:attribute]) == src
|
35
|
+
log "#{ update ? "update" : "write" } #{dst.class}(#{dst.id})##{dist[:attribute]} with #{src.inspect}"
|
36
|
+
log "#{change_if}: #{record.send(change_if).inspect}, #{dist[:association]||"self"}.id: #{dst.id}"
|
37
|
+
if update
|
38
|
+
dst.send(:update_attribute, dist[:attribute], src)
|
39
|
+
else
|
40
|
+
dst.send(:write_attribute, dist[:attribute], src)
|
41
|
+
end
|
42
|
+
when ActiveRecord::Relation
|
43
|
+
log "update #{dst.class}##{dist[:attribute]} with #{src.inspect}"
|
44
|
+
dst.send(:update_all, dist[:attribute] => src)
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
def need_update? record
|
50
|
+
record.send(:attribute_changed?, change_if)
|
51
|
+
end
|
52
|
+
|
53
|
+
def log *message
|
54
|
+
# puts *message
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
data/lib/redundancy/version.rb
CHANGED
data/lib/redundancy.rb
CHANGED
@@ -1,62 +1,8 @@
|
|
1
|
+
require 'redundancy/cache_column'
|
2
|
+
|
1
3
|
module Redundancy
|
2
4
|
extend ActiveSupport::Concern
|
3
5
|
|
4
|
-
class CacheColumn
|
5
|
-
attr_reader :options
|
6
|
-
attr_reader :source, :dist, :klass
|
7
|
-
attr_reader :change_if, :nil_unless, :update, :set_prev_nil
|
8
|
-
|
9
|
-
def initialize options
|
10
|
-
@options = options
|
11
|
-
@source, @dist = options[:source], options[:dist]
|
12
|
-
@klass = options[:klass]
|
13
|
-
|
14
|
-
@change_if = options[:change_if]
|
15
|
-
@nil_unless = options[:nil_unless]
|
16
|
-
@update = options[:update] || false
|
17
|
-
@set_prev_nil = options[:set_prev_nil]
|
18
|
-
end
|
19
|
-
|
20
|
-
def update_record record
|
21
|
-
raise ArgumentError, "record class mismatch, expected #{klass}, got #{record.class}" unless record.kind_of? klass
|
22
|
-
return unless need_update?(record)
|
23
|
-
|
24
|
-
src = source[:association] ? record.send(source[:association]) : record
|
25
|
-
src = src && source[:attribute] && src.send(source[:attribute])
|
26
|
-
src = nil if nil_unless && !record.send(nil_unless)
|
27
|
-
|
28
|
-
dst = dist[:association] ? record.send(dist[:association]) : record
|
29
|
-
|
30
|
-
set_prev_nil.where(id: record.send(:attribute_was, change_if))
|
31
|
-
.update_all(dist[:attribute] => nil) if set_prev_nil
|
32
|
-
|
33
|
-
case dst
|
34
|
-
when ActiveRecord::Base
|
35
|
-
return if dst.send(:read_attribute, dist[:attribute]) == src
|
36
|
-
log "#{ update ? "update" : "write" } #{dst.class}(#{dst.id})##{dist[:attribute]} with #{src.inspect}"
|
37
|
-
log "#{change_if}: #{record.send(change_if).inspect}, #{dist[:association]||"self"}.id: #{dst.id}"
|
38
|
-
if update
|
39
|
-
dst.send(:update_attribute, dist[:attribute], src)
|
40
|
-
else
|
41
|
-
dst.send(:write_attribute, dist[:attribute], src)
|
42
|
-
end
|
43
|
-
when ActiveRecord::Relation
|
44
|
-
log "update #{dst.class}##{dist[:attribute]} with #{src.inspect}"
|
45
|
-
dst.send(:update_all, dist[:attribute] => src)
|
46
|
-
end
|
47
|
-
|
48
|
-
end
|
49
|
-
|
50
|
-
def need_update? record
|
51
|
-
record.send(:attribute_changed?, change_if)
|
52
|
-
end
|
53
|
-
|
54
|
-
def log *message
|
55
|
-
# puts *message
|
56
|
-
end
|
57
|
-
|
58
|
-
end
|
59
|
-
|
60
6
|
included do
|
61
7
|
before_save :redundancy_update_cache_column_after_save
|
62
8
|
end
|
@@ -100,26 +46,23 @@ module Redundancy
|
|
100
46
|
dist: { association: nil, attribute: cache_column },
|
101
47
|
change_if: foreign_key, klass: local_klass
|
102
48
|
})
|
103
|
-
remote_klass.cache_columns << CacheColumn.new({
|
104
|
-
source: { association: nil, attribute: attribute },
|
105
|
-
dist: { association: inverse_association, attribute: cache_column },
|
106
|
-
change_if: attribute, klass: remote_klass, update: true
|
107
|
-
})
|
108
49
|
|
109
50
|
when :has_one
|
110
51
|
remote_klass.cache_columns << CacheColumn.new({
|
111
52
|
source: { association: nil, attribute: attribute },
|
112
53
|
dist: { association: inverse_association, attribute: cache_column },
|
113
54
|
change_if: foreign_key, nil_unless: foreign_key, klass: remote_klass,
|
114
|
-
set_prev_nil: local_klass
|
115
|
-
})
|
116
|
-
remote_klass.cache_columns << CacheColumn.new({
|
117
|
-
source: { association: nil, attribute: attribute },
|
118
|
-
dist: { association: inverse_association, attribute: cache_column },
|
119
|
-
change_if: attribute, klass: remote_klass, update: true
|
55
|
+
set_prev_nil: { klass: local_klass, attribute: foreign_key }
|
120
56
|
})
|
57
|
+
|
121
58
|
end
|
122
59
|
|
60
|
+
remote_klass.cache_columns << CacheColumn.new({
|
61
|
+
source: { association: nil, attribute: attribute },
|
62
|
+
dist: { association: inverse_association, attribute: cache_column },
|
63
|
+
change_if: attribute, klass: remote_klass, update: true
|
64
|
+
})
|
65
|
+
|
123
66
|
|
124
67
|
end
|
125
68
|
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'active_record'
|
2
|
+
require 'sqlite3'
|
3
|
+
require 'rails'
|
4
|
+
|
5
|
+
ActiveRecord::Base.establish_connection(
|
6
|
+
:adapter => "sqlite3",
|
7
|
+
:database => ":memory:"
|
8
|
+
)
|
9
|
+
|
10
|
+
ActiveRecord::Migration.verbose = false
|
11
|
+
|
12
|
+
ActiveRecord::Schema.define do
|
13
|
+
|
14
|
+
create_table "accounts", force: true do |t|
|
15
|
+
t.string "user_name"
|
16
|
+
t.string "email"
|
17
|
+
t.datetime "created_at"
|
18
|
+
t.datetime "updated_at"
|
19
|
+
end
|
20
|
+
|
21
|
+
create_table "posts", force: true do |t|
|
22
|
+
t.integer "user_id"
|
23
|
+
t.string "user_name"
|
24
|
+
t.string "username"
|
25
|
+
t.string "title"
|
26
|
+
t.text "content"
|
27
|
+
t.datetime "created_at"
|
28
|
+
t.datetime "updated_at"
|
29
|
+
end
|
30
|
+
|
31
|
+
add_index "posts", ["user_id"], name: "index_posts_on_user_id"
|
32
|
+
|
33
|
+
create_table "users", force: true do |t|
|
34
|
+
t.integer "account_id"
|
35
|
+
t.string "account_email"
|
36
|
+
t.string "name"
|
37
|
+
t.datetime "created_at"
|
38
|
+
t.datetime "updated_at"
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
autoload :Account, 'support/models/account'
|
44
|
+
autoload :Post, 'support/models/post'
|
45
|
+
autoload :User, 'support/models/user'
|
File without changes
|
File without changes
|
File without changes
|
data/test/test_helper.rb
CHANGED
@@ -4,21 +4,18 @@ ENV["RAILS_ENV"] = "test"
|
|
4
4
|
require 'minitest/autorun'
|
5
5
|
# require 'pry-rescue/minitest'
|
6
6
|
|
7
|
-
require
|
8
|
-
require
|
7
|
+
require 'support/environment.rb'
|
8
|
+
require 'redundancy'
|
9
|
+
require 'rails/test_help'
|
9
10
|
|
10
11
|
Rails.backtrace_cleaner.remove_silencers!
|
11
12
|
|
12
13
|
# Load support files
|
13
|
-
Dir[
|
14
|
-
"#{File.dirname(__FILE__)}/support/**/*.rb",
|
15
|
-
"#{File.dirname(__FILE__)}/dummy/app/models/*.rb"
|
16
|
-
].each { |f| require f }
|
14
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
17
15
|
|
18
16
|
# Load fixtures from the engine
|
19
|
-
|
20
|
-
|
21
|
-
end
|
17
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
18
|
+
|
22
19
|
# Load fixtures from the engine
|
23
20
|
class ActiveSupport::TestCase
|
24
21
|
fixtures :all
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-redundancy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Theo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -83,59 +83,19 @@ files:
|
|
83
83
|
- Rakefile
|
84
84
|
- lib/activerecord-redundancy.rb
|
85
85
|
- lib/redundancy.rb
|
86
|
+
- lib/redundancy/cache_column.rb
|
86
87
|
- lib/redundancy/version.rb
|
87
|
-
- lib/tasks/redundancy_tasks.rake
|
88
88
|
- test/belongs_to_has_one_association_test.rb
|
89
|
-
- test/
|
90
|
-
- test/
|
91
|
-
- test/
|
92
|
-
- test/dummy/app/assets/stylesheets/application.css
|
93
|
-
- test/dummy/app/controllers/application_controller.rb
|
94
|
-
- test/dummy/app/helpers/application_helper.rb
|
95
|
-
- test/dummy/app/models/account.rb
|
96
|
-
- test/dummy/app/models/post.rb
|
97
|
-
- test/dummy/app/models/user.rb
|
98
|
-
- test/dummy/app/views/layouts/application.html.erb
|
99
|
-
- test/dummy/bin/bundle
|
100
|
-
- test/dummy/bin/rails
|
101
|
-
- test/dummy/bin/rake
|
102
|
-
- test/dummy/config.ru
|
103
|
-
- test/dummy/config/application.rb
|
104
|
-
- test/dummy/config/boot.rb
|
105
|
-
- test/dummy/config/database.yml
|
106
|
-
- test/dummy/config/environment.rb
|
107
|
-
- test/dummy/config/environments/development.rb
|
108
|
-
- test/dummy/config/environments/production.rb
|
109
|
-
- test/dummy/config/environments/test.rb
|
110
|
-
- test/dummy/config/initializers/assets.rb
|
111
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
112
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
113
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
114
|
-
- test/dummy/config/initializers/inflections.rb
|
115
|
-
- test/dummy/config/initializers/mime_types.rb
|
116
|
-
- test/dummy/config/initializers/session_store.rb
|
117
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
118
|
-
- test/dummy/config/locales/en.yml
|
119
|
-
- test/dummy/config/routes.rb
|
120
|
-
- test/dummy/config/secrets.yml
|
121
|
-
- test/dummy/db/development.sqlite3
|
122
|
-
- test/dummy/db/migrate/20140716061500_create_posts.rb
|
123
|
-
- test/dummy/db/migrate/20140716061513_create_users.rb
|
124
|
-
- test/dummy/db/migrate/20140716133341_create_accounts.rb
|
125
|
-
- test/dummy/db/schema.rb
|
126
|
-
- test/dummy/db/test.sqlite3
|
127
|
-
- test/dummy/log/development.log
|
128
|
-
- test/dummy/log/test.log
|
129
|
-
- test/dummy/public/404.html
|
130
|
-
- test/dummy/public/422.html
|
131
|
-
- test/dummy/public/500.html
|
132
|
-
- test/dummy/public/favicon.ico
|
133
|
-
- test/dummy/test/fixtures/accounts.yml
|
134
|
-
- test/dummy/test/fixtures/posts.yml
|
135
|
-
- test/dummy/test/fixtures/users.yml
|
89
|
+
- test/fixtures/accounts.yml
|
90
|
+
- test/fixtures/posts.yml
|
91
|
+
- test/fixtures/users.yml
|
136
92
|
- test/has_many_belongs_to_association_test.rb
|
137
93
|
- test/has_one_belongs_to_association_test.rb
|
138
94
|
- test/options_test.rb
|
95
|
+
- test/support/environment.rb
|
96
|
+
- test/support/models/account.rb
|
97
|
+
- test/support/models/post.rb
|
98
|
+
- test/support/models/user.rb
|
139
99
|
- test/test_helper.rb
|
140
100
|
homepage: https://github.com/bbtfr/activerecord-redundancy
|
141
101
|
licenses:
|
@@ -163,54 +123,14 @@ specification_version: 4
|
|
163
123
|
summary: Redundancy for better performance, non painful
|
164
124
|
test_files:
|
165
125
|
- test/belongs_to_has_one_association_test.rb
|
166
|
-
- test/
|
167
|
-
- test/
|
168
|
-
- test/
|
169
|
-
- test/dummy/app/helpers/application_helper.rb
|
170
|
-
- test/dummy/app/models/account.rb
|
171
|
-
- test/dummy/app/models/post.rb
|
172
|
-
- test/dummy/app/models/user.rb
|
173
|
-
- test/dummy/app/views/layouts/application.html.erb
|
174
|
-
- test/dummy/bin/bundle
|
175
|
-
- test/dummy/bin/rails
|
176
|
-
- test/dummy/bin/rake
|
177
|
-
- test/dummy/config/application.rb
|
178
|
-
- test/dummy/config/boot.rb
|
179
|
-
- test/dummy/config/database.yml
|
180
|
-
- test/dummy/config/environment.rb
|
181
|
-
- test/dummy/config/environments/development.rb
|
182
|
-
- test/dummy/config/environments/production.rb
|
183
|
-
- test/dummy/config/environments/test.rb
|
184
|
-
- test/dummy/config/initializers/assets.rb
|
185
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
186
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
187
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
188
|
-
- test/dummy/config/initializers/inflections.rb
|
189
|
-
- test/dummy/config/initializers/mime_types.rb
|
190
|
-
- test/dummy/config/initializers/session_store.rb
|
191
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
192
|
-
- test/dummy/config/locales/en.yml
|
193
|
-
- test/dummy/config/routes.rb
|
194
|
-
- test/dummy/config/secrets.yml
|
195
|
-
- test/dummy/config.ru
|
196
|
-
- test/dummy/db/development.sqlite3
|
197
|
-
- test/dummy/db/migrate/20140716061500_create_posts.rb
|
198
|
-
- test/dummy/db/migrate/20140716061513_create_users.rb
|
199
|
-
- test/dummy/db/migrate/20140716133341_create_accounts.rb
|
200
|
-
- test/dummy/db/schema.rb
|
201
|
-
- test/dummy/db/test.sqlite3
|
202
|
-
- test/dummy/log/development.log
|
203
|
-
- test/dummy/log/test.log
|
204
|
-
- test/dummy/public/404.html
|
205
|
-
- test/dummy/public/422.html
|
206
|
-
- test/dummy/public/500.html
|
207
|
-
- test/dummy/public/favicon.ico
|
208
|
-
- test/dummy/Rakefile
|
209
|
-
- test/dummy/README.rdoc
|
210
|
-
- test/dummy/test/fixtures/accounts.yml
|
211
|
-
- test/dummy/test/fixtures/posts.yml
|
212
|
-
- test/dummy/test/fixtures/users.yml
|
126
|
+
- test/fixtures/accounts.yml
|
127
|
+
- test/fixtures/posts.yml
|
128
|
+
- test/fixtures/users.yml
|
213
129
|
- test/has_many_belongs_to_association_test.rb
|
214
130
|
- test/has_one_belongs_to_association_test.rb
|
215
131
|
- test/options_test.rb
|
132
|
+
- test/support/environment.rb
|
133
|
+
- test/support/models/account.rb
|
134
|
+
- test/support/models/post.rb
|
135
|
+
- test/support/models/user.rb
|
216
136
|
- test/test_helper.rb
|
data/test/dummy/README.rdoc
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
== README
|
2
|
-
|
3
|
-
This README would normally document whatever steps are necessary to get the
|
4
|
-
application up and running.
|
5
|
-
|
6
|
-
Things you may want to cover:
|
7
|
-
|
8
|
-
* Ruby version
|
9
|
-
|
10
|
-
* System dependencies
|
11
|
-
|
12
|
-
* Configuration
|
13
|
-
|
14
|
-
* Database creation
|
15
|
-
|
16
|
-
* Database initialization
|
17
|
-
|
18
|
-
* How to run the test suite
|
19
|
-
|
20
|
-
* Services (job queues, cache servers, search engines, etc.)
|
21
|
-
|
22
|
-
* Deployment instructions
|
23
|
-
|
24
|
-
* ...
|
25
|
-
|
26
|
-
|
27
|
-
Please feel free to use a different markup language if you do not plan to run
|
28
|
-
<tt>rake doc:app</tt>.
|
data/test/dummy/Rakefile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
-
// listed below.
|
3
|
-
//
|
4
|
-
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
-
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
|
-
//
|
7
|
-
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
-
// compiled file.
|
9
|
-
//
|
10
|
-
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
|
11
|
-
// about supported directives.
|
12
|
-
//
|
13
|
-
//= require_tree .
|
@@ -1,15 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
-
* listed below.
|
4
|
-
*
|
5
|
-
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
-
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
-
*
|
8
|
-
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
-
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
-
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
-
* file per style scope.
|
12
|
-
*
|
13
|
-
*= require_tree .
|
14
|
-
*= require_self
|
15
|
-
*/
|
@@ -1,14 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>Dummy</title>
|
5
|
-
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
6
|
-
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
7
|
-
<%= csrf_meta_tags %>
|
8
|
-
</head>
|
9
|
-
<body>
|
10
|
-
|
11
|
-
<%= yield %>
|
12
|
-
|
13
|
-
</body>
|
14
|
-
</html>
|
data/test/dummy/bin/bundle
DELETED
data/test/dummy/bin/rails
DELETED
data/test/dummy/bin/rake
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
require File.expand_path('../boot', __FILE__)
|
2
|
-
|
3
|
-
require 'rails/all'
|
4
|
-
|
5
|
-
Bundler.require(*Rails.groups)
|
6
|
-
require "redundancy"
|
7
|
-
|
8
|
-
module Dummy
|
9
|
-
class Application < Rails::Application
|
10
|
-
# Settings in config/environments/* take precedence over those specified here.
|
11
|
-
# Application configuration should go into files in config/initializers
|
12
|
-
# -- all .rb files in that directory are automatically loaded.
|
13
|
-
|
14
|
-
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
15
|
-
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
16
|
-
# config.time_zone = 'Central Time (US & Canada)'
|
17
|
-
|
18
|
-
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
19
|
-
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
20
|
-
# config.i18n.default_locale = :de
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
data/test/dummy/config/boot.rb
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
# SQLite version 3.x
|
2
|
-
# gem install sqlite3
|
3
|
-
#
|
4
|
-
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
-
# gem 'sqlite3'
|
6
|
-
#
|
7
|
-
default: &default
|
8
|
-
adapter: sqlite3
|
9
|
-
pool: 5
|
10
|
-
timeout: 5000
|
11
|
-
|
12
|
-
development:
|
13
|
-
<<: *default
|
14
|
-
database: db/development.sqlite3
|
15
|
-
|
16
|
-
# Warning: The database defined as "test" will be erased and
|
17
|
-
# re-generated from your development database when you run "rake".
|
18
|
-
# Do not set this db to the same as development or production.
|
19
|
-
test:
|
20
|
-
<<: *default
|
21
|
-
database: db/test.sqlite3
|
22
|
-
|
23
|
-
production:
|
24
|
-
<<: *default
|
25
|
-
database: db/production.sqlite3
|
@@ -1,37 +0,0 @@
|
|
1
|
-
Rails.application.configure do
|
2
|
-
# Settings specified here will take precedence over those in config/application.rb.
|
3
|
-
|
4
|
-
# In the development environment your application's code is reloaded on
|
5
|
-
# every request. This slows down response time but is perfect for development
|
6
|
-
# since you don't have to restart the web server when you make code changes.
|
7
|
-
config.cache_classes = false
|
8
|
-
|
9
|
-
# Do not eager load code on boot.
|
10
|
-
config.eager_load = false
|
11
|
-
|
12
|
-
# Show full error reports and disable caching.
|
13
|
-
config.consider_all_requests_local = true
|
14
|
-
config.action_controller.perform_caching = false
|
15
|
-
|
16
|
-
# Don't care if the mailer can't send.
|
17
|
-
config.action_mailer.raise_delivery_errors = false
|
18
|
-
|
19
|
-
# Print deprecation notices to the Rails logger.
|
20
|
-
config.active_support.deprecation = :log
|
21
|
-
|
22
|
-
# Raise an error on page load if there are pending migrations.
|
23
|
-
config.active_record.migration_error = :page_load
|
24
|
-
|
25
|
-
# Debug mode disables concatenation and preprocessing of assets.
|
26
|
-
# This option may cause significant delays in view rendering with a large
|
27
|
-
# number of complex assets.
|
28
|
-
config.assets.debug = true
|
29
|
-
|
30
|
-
# Adds additional error checking when serving assets at runtime.
|
31
|
-
# Checks for improperly declared sprockets dependencies.
|
32
|
-
# Raises helpful error messages.
|
33
|
-
config.assets.raise_runtime_errors = true
|
34
|
-
|
35
|
-
# Raises error for missing translations
|
36
|
-
# config.action_view.raise_on_missing_translations = true
|
37
|
-
end
|