test_fish0 0.2.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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +174 -0
- data/Rakefile +22 -0
- data/lib/fish0/collection.rb +21 -0
- data/lib/fish0/concerns/base.rb +90 -0
- data/lib/fish0/concerns/cacheable.rb +37 -0
- data/lib/fish0/concerns/equalable.rb +10 -0
- data/lib/fish0/concerns/paginatable.rb +25 -0
- data/lib/fish0/concerns/view_model.rb +20 -0
- data/lib/fish0/configuration.rb +30 -0
- data/lib/fish0/engine.rb +12 -0
- data/lib/fish0/exceptions.rb +3 -0
- data/lib/fish0/model.rb +10 -0
- data/lib/fish0/paginator.rb +55 -0
- data/lib/fish0/repository.rb +125 -0
- data/lib/fish0/version.rb +3 -0
- data/lib/fish0.rb +33 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/article.rb +5 -0
- data/spec/dummy/app/models/article_id.rb +7 -0
- data/spec/dummy/app/views/layouts/application.html.erb +13 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config/application.rb +29 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +24 -0
- data/spec/dummy/config/environments/production.rb +76 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +9 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/mongo.yml +7 -0
- data/spec/dummy/config/routes.rb +56 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/factories/article.rb +6 -0
- data/spec/lib/repository_spec.rb +24 -0
- data/spec/models/model_spec.rb +13 -0
- data/spec/spec_helper.rb +19 -0
- data/spec/support/factory_girl.rb +3 -0
- data/spec/support/mongo_cleaner.rb +5 -0
- data/spec/support/update_behaviour.rb +7 -0
- metadata +287 -0
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/422.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe Fish0::Repository do
|
4
|
+
let(:repository) { Fish0::Repository.new(collection: 'articles') }
|
5
|
+
let(:scoped_repository) { Fish0::Repository.new(collection: 'articles') }
|
6
|
+
|
7
|
+
describe '#scope' do
|
8
|
+
before do
|
9
|
+
scoped_repository.scope :by_slug, -> (slug) { where(slug: slug) }
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'has no scoped method :by_slug for new repository' do
|
13
|
+
expect(repository).not_to respond_to(:by_slug)
|
14
|
+
end
|
15
|
+
|
16
|
+
it 'has scoped method :by_slug for scoped repository' do
|
17
|
+
expect(scoped_repository).to respond_to(:by_slug)
|
18
|
+
end
|
19
|
+
|
20
|
+
it 'returns self and therefore supports chaining' do
|
21
|
+
expect(scoped_repository.by_slug('news')).to be_an(Fish0::Repository)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Fish0 Models' do
|
4
|
+
it 'has default primary key' do
|
5
|
+
expect(Article.primary_key).to eq(:slug)
|
6
|
+
end
|
7
|
+
|
8
|
+
it 'can override primary key' do
|
9
|
+
expect(ArticleId.primary_key).to eq(:id)
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'has cache key'
|
13
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
ENV['RAILS_ENV'] ||= 'test'
|
2
|
+
|
3
|
+
require File.expand_path('../dummy/config/environment.rb', __FILE__)
|
4
|
+
require 'rspec/rails'
|
5
|
+
# require 'rspec/autorun'
|
6
|
+
require 'factory_girl_rails'
|
7
|
+
require 'ffaker'
|
8
|
+
|
9
|
+
Rails.backtrace_cleaner.remove_silencers!
|
10
|
+
|
11
|
+
# Load support files
|
12
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
13
|
+
|
14
|
+
RSpec.configure do |config|
|
15
|
+
config.mock_with :rspec
|
16
|
+
config.use_transactional_fixtures = true
|
17
|
+
config.infer_base_class_for_anonymous_controllers = false
|
18
|
+
config.order = 'random'
|
19
|
+
end
|
metadata
ADDED
@@ -0,0 +1,287 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: test_fish0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dmitry Zuev
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-05-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activesupport
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activerecord
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4.2'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '4.2'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: mongo
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.2'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.2'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: virtus
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.35'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.35'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '3.4'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '3.4'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec-rails
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.4'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.4'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: capybara
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '2.7'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '2.7'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: factory_girl_rails
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '4.7'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '4.7'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: ffaker
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '2.2'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '2.2'
|
153
|
+
description: |-
|
154
|
+
Plugin for read-only content websites with MongoDB storage.
|
155
|
+
Works perfect with Rambler&Co CQRS projects
|
156
|
+
email:
|
157
|
+
- d.zuev@rambler-co.ru
|
158
|
+
executables: []
|
159
|
+
extensions: []
|
160
|
+
extra_rdoc_files: []
|
161
|
+
files:
|
162
|
+
- MIT-LICENSE
|
163
|
+
- README.md
|
164
|
+
- Rakefile
|
165
|
+
- lib/fish0.rb
|
166
|
+
- lib/fish0/collection.rb
|
167
|
+
- lib/fish0/concerns/base.rb
|
168
|
+
- lib/fish0/concerns/cacheable.rb
|
169
|
+
- lib/fish0/concerns/equalable.rb
|
170
|
+
- lib/fish0/concerns/paginatable.rb
|
171
|
+
- lib/fish0/concerns/view_model.rb
|
172
|
+
- lib/fish0/configuration.rb
|
173
|
+
- lib/fish0/engine.rb
|
174
|
+
- lib/fish0/exceptions.rb
|
175
|
+
- lib/fish0/model.rb
|
176
|
+
- lib/fish0/paginator.rb
|
177
|
+
- lib/fish0/repository.rb
|
178
|
+
- lib/fish0/version.rb
|
179
|
+
- spec/dummy/README.rdoc
|
180
|
+
- spec/dummy/Rakefile
|
181
|
+
- spec/dummy/app/assets/javascripts/application.js
|
182
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
183
|
+
- spec/dummy/app/controllers/application_controller.rb
|
184
|
+
- spec/dummy/app/helpers/application_helper.rb
|
185
|
+
- spec/dummy/app/models/article.rb
|
186
|
+
- spec/dummy/app/models/article_id.rb
|
187
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
188
|
+
- spec/dummy/bin/bundle
|
189
|
+
- spec/dummy/bin/rails
|
190
|
+
- spec/dummy/bin/rake
|
191
|
+
- spec/dummy/bin/setup
|
192
|
+
- spec/dummy/config.ru
|
193
|
+
- spec/dummy/config/application.rb
|
194
|
+
- spec/dummy/config/boot.rb
|
195
|
+
- spec/dummy/config/environment.rb
|
196
|
+
- spec/dummy/config/environments/development.rb
|
197
|
+
- spec/dummy/config/environments/production.rb
|
198
|
+
- spec/dummy/config/environments/test.rb
|
199
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
200
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
201
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
202
|
+
- spec/dummy/config/initializers/inflections.rb
|
203
|
+
- spec/dummy/config/initializers/mime_types.rb
|
204
|
+
- spec/dummy/config/initializers/session_store.rb
|
205
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
206
|
+
- spec/dummy/config/locales/en.yml
|
207
|
+
- spec/dummy/config/mongo.yml
|
208
|
+
- spec/dummy/config/routes.rb
|
209
|
+
- spec/dummy/config/secrets.yml
|
210
|
+
- spec/dummy/public/404.html
|
211
|
+
- spec/dummy/public/422.html
|
212
|
+
- spec/dummy/public/500.html
|
213
|
+
- spec/dummy/public/favicon.ico
|
214
|
+
- spec/factories/article.rb
|
215
|
+
- spec/lib/repository_spec.rb
|
216
|
+
- spec/models/model_spec.rb
|
217
|
+
- spec/spec_helper.rb
|
218
|
+
- spec/support/factory_girl.rb
|
219
|
+
- spec/support/mongo_cleaner.rb
|
220
|
+
- spec/support/update_behaviour.rb
|
221
|
+
homepage: https://github.com/peresvetjke/fish0
|
222
|
+
licenses:
|
223
|
+
- MIT
|
224
|
+
metadata: {}
|
225
|
+
post_install_message: "\n WARNING starting from 0.1.0 coercion is disabled for Fish0::Model
|
226
|
+
by default\n "
|
227
|
+
rdoc_options: []
|
228
|
+
require_paths:
|
229
|
+
- lib
|
230
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
231
|
+
requirements:
|
232
|
+
- - "~>"
|
233
|
+
- !ruby/object:Gem::Version
|
234
|
+
version: '2.0'
|
235
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
236
|
+
requirements:
|
237
|
+
- - ">="
|
238
|
+
- !ruby/object:Gem::Version
|
239
|
+
version: '0'
|
240
|
+
requirements: []
|
241
|
+
rubygems_version: 3.4.6
|
242
|
+
signing_key:
|
243
|
+
specification_version: 4
|
244
|
+
summary: Plugin for read-only content websites
|
245
|
+
test_files:
|
246
|
+
- spec/dummy/README.rdoc
|
247
|
+
- spec/dummy/Rakefile
|
248
|
+
- spec/dummy/app/assets/javascripts/application.js
|
249
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
250
|
+
- spec/dummy/app/controllers/application_controller.rb
|
251
|
+
- spec/dummy/app/helpers/application_helper.rb
|
252
|
+
- spec/dummy/app/models/article.rb
|
253
|
+
- spec/dummy/app/models/article_id.rb
|
254
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
255
|
+
- spec/dummy/bin/bundle
|
256
|
+
- spec/dummy/bin/rails
|
257
|
+
- spec/dummy/bin/rake
|
258
|
+
- spec/dummy/bin/setup
|
259
|
+
- spec/dummy/config/application.rb
|
260
|
+
- spec/dummy/config/boot.rb
|
261
|
+
- spec/dummy/config/environment.rb
|
262
|
+
- spec/dummy/config/environments/development.rb
|
263
|
+
- spec/dummy/config/environments/production.rb
|
264
|
+
- spec/dummy/config/environments/test.rb
|
265
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
266
|
+
- spec/dummy/config/initializers/cookies_serializer.rb
|
267
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
268
|
+
- spec/dummy/config/initializers/inflections.rb
|
269
|
+
- spec/dummy/config/initializers/mime_types.rb
|
270
|
+
- spec/dummy/config/initializers/session_store.rb
|
271
|
+
- spec/dummy/config/initializers/wrap_parameters.rb
|
272
|
+
- spec/dummy/config/locales/en.yml
|
273
|
+
- spec/dummy/config/mongo.yml
|
274
|
+
- spec/dummy/config/routes.rb
|
275
|
+
- spec/dummy/config/secrets.yml
|
276
|
+
- spec/dummy/config.ru
|
277
|
+
- spec/dummy/public/404.html
|
278
|
+
- spec/dummy/public/422.html
|
279
|
+
- spec/dummy/public/500.html
|
280
|
+
- spec/dummy/public/favicon.ico
|
281
|
+
- spec/factories/article.rb
|
282
|
+
- spec/lib/repository_spec.rb
|
283
|
+
- spec/models/model_spec.rb
|
284
|
+
- spec/spec_helper.rb
|
285
|
+
- spec/support/factory_girl.rb
|
286
|
+
- spec/support/mongo_cleaner.rb
|
287
|
+
- spec/support/update_behaviour.rb
|