weeler 1.6.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +2 -10
- data/CHANGELOG.md +12 -0
- data/README.md +9 -21
- data/Rakefile +4 -4
- data/app/assets/javascripts/weeler/init.js +34 -0
- data/app/controllers/weeler/settings_controller.rb +1 -1
- data/app/controllers/weeler/translations_controller.rb +1 -1
- data/app/views/kaminari/weeler/_first_page.html.haml +3 -0
- data/app/views/kaminari/weeler/_gap.html.haml +2 -0
- data/app/views/kaminari/weeler/_last_page.html.haml +3 -0
- data/app/views/kaminari/weeler/_next_page.html.haml +3 -0
- data/app/views/kaminari/weeler/_page.html.haml +2 -0
- data/app/views/kaminari/weeler/_paginator.html.haml +11 -0
- data/app/views/kaminari/weeler/_prev_page.html.haml +3 -0
- data/lib/i18n/backend/weeler.rb +1 -1
- data/lib/weeler/action_controller/acts/restful.rb +1 -1
- data/lib/weeler/engine.rb +0 -2
- data/lib/weeler/version.rb +2 -2
- data/spec/controllers/translations_controller_spec.rb +8 -8
- data/spec/dummy/.ruby-version +1 -0
- data/spec/dummy/Rakefile +2 -2
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/stylesheets/application.css +6 -4
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +0 -3
- data/spec/dummy/app/{assets/javascripts → javascript/packs}/application.js +5 -3
- data/spec/dummy/app/jobs/application_job.rb +7 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/models/post.rb +1 -1
- data/spec/dummy/app/views/layouts/application.html.erb +9 -9
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/rails +1 -1
- data/spec/dummy/bin/setup +33 -0
- data/spec/dummy/config.ru +2 -1
- data/spec/dummy/config/application.rb +19 -13
- data/spec/dummy/config/boot.rb +3 -3
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/environment.rb +2 -2
- data/spec/dummy/config/environments/development.rb +38 -5
- data/spec/dummy/config/environments/production.rb +64 -32
- data/spec/dummy/config/environments/test.rb +20 -8
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +12 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +28 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/mime_types.rb +0 -1
- data/spec/dummy/config/initializers/wrap_parameters.rb +2 -2
- data/spec/dummy/config/puma.rb +38 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/migrate/20140123083704_create_weeler_seos.rb +1 -1
- data/spec/dummy/db/migrate/20140123083705_create_weeler_settings.rb +1 -1
- data/spec/dummy/db/migrate/20140123083706_create_weeler_translations.rb +1 -1
- data/spec/dummy/db/migrate/20140123083707_translate_weeler_seos.rb +1 -1
- data/spec/dummy/db/migrate/20140718103237_create_posts.rb +1 -1
- data/spec/dummy/db/migrate/20140726151210_create_translations.rb +1 -1
- data/spec/dummy/db/migrate/20160330161101_create_weeler_locks.rb +1 -1
- data/spec/dummy/db/migrate/20160330192005_create_weeler_translation_stats.rb +1 -1
- data/spec/dummy/db/schema.rb +56 -64
- data/spec/dummy/{app/mailers/.keep → db/test.sqlite3} +0 -0
- data/spec/dummy/log/development.log +0 -1020
- data/spec/dummy/public/404.html +24 -15
- data/spec/dummy/public/422.html +24 -15
- data/spec/dummy/public/500.html +23 -14
- data/spec/dummy/{app/models/.keep → public/apple-touch-icon-precomposed.png} +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/storage/.keep +0 -0
- data/spec/factories/dummy_posts.rb +3 -3
- data/spec/factories/translations.rb +4 -4
- data/spec/spec_helper.rb +6 -4
- data/spec/weeler/action_controller/acts/restful_spec.rb +5 -4
- data/spec/weeler/i18n/backend/weeler_spec.rb +7 -7
- data/spec/weeler/i18n/humanize_missing_translations_spec.rb +14 -11
- data/weeler.gemspec +17 -12
- metadata +97 -58
- data/app/assets/javascripts/weeler/init.js.coffee +0 -26
- data/app/views/kaminari/weeler/_first_page.html.erb +0 -13
- data/app/views/kaminari/weeler/_gap.html.erb +0 -8
- data/app/views/kaminari/weeler/_last_page.html.erb +0 -13
- data/app/views/kaminari/weeler/_next_page.html.erb +0 -14
- data/app/views/kaminari/weeler/_page.html.erb +0 -12
- data/app/views/kaminari/weeler/_paginator.html.erb +0 -23
- data/app/views/kaminari/weeler/_prev_page.html.erb +0 -13
- data/lib/weeler/action_view/helpers/form_helper.rb +0 -13
- data/lib/weeler/action_view/helpers/image_form_helper.rb +0 -83
- data/spec/dummy/README.rdoc +0 -28
- data/spec/dummy/bin/bundle +0 -3
- data/spec/dummy/config/initializers/secret_token.rb +0 -12
- data/spec/dummy/config/initializers/session_store.rb +0 -3
- data/spec/dummy/log/production.log +0 -4
- data/spec/weeler/action_view/helpers/form_helper_spec.rb +0 -35
data/spec/dummy/public/404.html
CHANGED
@@ -2,17 +2,23 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
5
6
|
<style>
|
6
|
-
|
7
|
+
.rails-default-error-page {
|
7
8
|
background-color: #EFEFEF;
|
8
9
|
color: #2E2F30;
|
9
10
|
text-align: center;
|
10
11
|
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
11
13
|
}
|
12
14
|
|
13
|
-
div.dialog {
|
14
|
-
width:
|
15
|
-
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
16
22
|
border: 1px solid #CCC;
|
17
23
|
border-right-color: #999;
|
18
24
|
border-left-color: #999;
|
@@ -21,38 +27,41 @@
|
|
21
27
|
border-top-left-radius: 9px;
|
22
28
|
border-top-right-radius: 9px;
|
23
29
|
background-color: white;
|
24
|
-
padding: 7px
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
25
32
|
}
|
26
33
|
|
27
|
-
h1 {
|
34
|
+
.rails-default-error-page h1 {
|
28
35
|
font-size: 100%;
|
29
36
|
color: #730E15;
|
30
37
|
line-height: 1.5em;
|
31
38
|
}
|
32
39
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
padding: 1em 0;
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
37
43
|
background-color: #F7F7F7;
|
38
44
|
border: 1px solid #CCC;
|
39
45
|
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
40
47
|
border-bottom-color: #999;
|
41
48
|
border-bottom-left-radius: 4px;
|
42
49
|
border-bottom-right-radius: 4px;
|
43
50
|
border-top-color: #DADADA;
|
44
51
|
color: #666;
|
45
|
-
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
46
53
|
}
|
47
54
|
</style>
|
48
55
|
</head>
|
49
56
|
|
50
|
-
<body>
|
57
|
+
<body class="rails-default-error-page">
|
51
58
|
<!-- This file lives in public/404.html -->
|
52
59
|
<div class="dialog">
|
53
|
-
<
|
54
|
-
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
55
65
|
</div>
|
56
|
-
<p>If you are the application owner check the logs for more information.</p>
|
57
66
|
</body>
|
58
67
|
</html>
|
data/spec/dummy/public/422.html
CHANGED
@@ -2,17 +2,23 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
5
6
|
<style>
|
6
|
-
|
7
|
+
.rails-default-error-page {
|
7
8
|
background-color: #EFEFEF;
|
8
9
|
color: #2E2F30;
|
9
10
|
text-align: center;
|
10
11
|
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
11
13
|
}
|
12
14
|
|
13
|
-
div.dialog {
|
14
|
-
width:
|
15
|
-
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
16
22
|
border: 1px solid #CCC;
|
17
23
|
border-right-color: #999;
|
18
24
|
border-left-color: #999;
|
@@ -21,38 +27,41 @@
|
|
21
27
|
border-top-left-radius: 9px;
|
22
28
|
border-top-right-radius: 9px;
|
23
29
|
background-color: white;
|
24
|
-
padding: 7px
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
25
32
|
}
|
26
33
|
|
27
|
-
h1 {
|
34
|
+
.rails-default-error-page h1 {
|
28
35
|
font-size: 100%;
|
29
36
|
color: #730E15;
|
30
37
|
line-height: 1.5em;
|
31
38
|
}
|
32
39
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
padding: 1em 0;
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
37
43
|
background-color: #F7F7F7;
|
38
44
|
border: 1px solid #CCC;
|
39
45
|
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
40
47
|
border-bottom-color: #999;
|
41
48
|
border-bottom-left-radius: 4px;
|
42
49
|
border-bottom-right-radius: 4px;
|
43
50
|
border-top-color: #DADADA;
|
44
51
|
color: #666;
|
45
|
-
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
46
53
|
}
|
47
54
|
</style>
|
48
55
|
</head>
|
49
56
|
|
50
|
-
<body>
|
57
|
+
<body class="rails-default-error-page">
|
51
58
|
<!-- This file lives in public/422.html -->
|
52
59
|
<div class="dialog">
|
53
|
-
<
|
54
|
-
|
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>
|
55
65
|
</div>
|
56
|
-
<p>If you are the application owner check the logs for more information.</p>
|
57
66
|
</body>
|
58
67
|
</html>
|
data/spec/dummy/public/500.html
CHANGED
@@ -2,17 +2,23 @@
|
|
2
2
|
<html>
|
3
3
|
<head>
|
4
4
|
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
5
6
|
<style>
|
6
|
-
|
7
|
+
.rails-default-error-page {
|
7
8
|
background-color: #EFEFEF;
|
8
9
|
color: #2E2F30;
|
9
10
|
text-align: center;
|
10
11
|
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
11
13
|
}
|
12
14
|
|
13
|
-
div.dialog {
|
14
|
-
width:
|
15
|
-
|
15
|
+
.rails-default-error-page div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
.rails-default-error-page div.dialog > div {
|
16
22
|
border: 1px solid #CCC;
|
17
23
|
border-right-color: #999;
|
18
24
|
border-left-color: #999;
|
@@ -21,37 +27,40 @@
|
|
21
27
|
border-top-left-radius: 9px;
|
22
28
|
border-top-right-radius: 9px;
|
23
29
|
background-color: white;
|
24
|
-
padding: 7px
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
25
32
|
}
|
26
33
|
|
27
|
-
h1 {
|
34
|
+
.rails-default-error-page h1 {
|
28
35
|
font-size: 100%;
|
29
36
|
color: #730E15;
|
30
37
|
line-height: 1.5em;
|
31
38
|
}
|
32
39
|
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
padding: 1em 0;
|
40
|
+
.rails-default-error-page div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
37
43
|
background-color: #F7F7F7;
|
38
44
|
border: 1px solid #CCC;
|
39
45
|
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
40
47
|
border-bottom-color: #999;
|
41
48
|
border-bottom-left-radius: 4px;
|
42
49
|
border-bottom-right-radius: 4px;
|
43
50
|
border-top-color: #DADADA;
|
44
51
|
color: #666;
|
45
|
-
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
46
53
|
}
|
47
54
|
</style>
|
48
55
|
</head>
|
49
56
|
|
50
|
-
<body>
|
57
|
+
<body class="rails-default-error-page">
|
51
58
|
<!-- This file lives in public/500.html -->
|
52
59
|
<div class="dialog">
|
53
|
-
<
|
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>
|
54
64
|
</div>
|
55
|
-
<p>If you are the application owner check the logs for more information.</p>
|
56
65
|
</body>
|
57
66
|
</html>
|
File without changes
|
File without changes
|
File without changes
|
data/spec/spec_helper.rb
CHANGED
@@ -10,9 +10,11 @@ end
|
|
10
10
|
|
11
11
|
ENV['RAILS_ENV'] ||= 'test'
|
12
12
|
|
13
|
-
require File.expand_path(
|
13
|
+
# require File.expand_path('../dummy/config/environment.rb', __FILE__)
|
14
|
+
require File.expand_path('../dummy/config/environment', __FILE__)
|
15
|
+
|
14
16
|
require 'rspec/rails'
|
15
|
-
require '
|
17
|
+
require 'factory_bot'
|
16
18
|
require 'capybara/rspec'
|
17
19
|
require 'database_cleaner'
|
18
20
|
require 'shoulda-matchers'
|
@@ -34,8 +36,8 @@ RSpec.configure do |config|
|
|
34
36
|
|
35
37
|
config.include Rails.application.routes.url_helpers
|
36
38
|
|
37
|
-
#
|
38
|
-
config.include
|
39
|
+
# FactoryBot
|
40
|
+
config.include FactoryBot::Syntax::Methods
|
39
41
|
|
40
42
|
Capybara.javascript_driver = :webkit
|
41
43
|
|
@@ -5,7 +5,7 @@ class Weeler::FoosController < Weeler::ContentController; end
|
|
5
5
|
describe Weeler::ActionController::Acts::Restful, type: :controller do
|
6
6
|
|
7
7
|
before(:each) do
|
8
|
-
|
8
|
+
FactoryBot.create_list(:dummy_post, 2)
|
9
9
|
end
|
10
10
|
|
11
11
|
before do
|
@@ -35,7 +35,7 @@ describe Weeler::ActionController::Acts::Restful, type: :controller do
|
|
35
35
|
routes.draw { get "index" => "weeler/foos#index" }
|
36
36
|
|
37
37
|
get "index"
|
38
|
-
expect(response).to
|
38
|
+
expect(response).to have_http_status(200)
|
39
39
|
end
|
40
40
|
|
41
41
|
specify "assigns posts" do
|
@@ -70,14 +70,15 @@ describe Weeler::ActionController::Acts::Restful, type: :controller do
|
|
70
70
|
describe "GET #edit" do
|
71
71
|
it "returns success status" do
|
72
72
|
get "edit", params: { id: Post.last.id }
|
73
|
-
expect(response).to
|
73
|
+
expect(response).to have_http_status(200)
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
77
|
describe "GET #new" do
|
78
78
|
it "returns success status" do
|
79
79
|
get "new"
|
80
|
-
|
80
|
+
|
81
|
+
expect(response).to have_http_status(200)
|
81
82
|
end
|
82
83
|
end
|
83
84
|
|
@@ -174,7 +174,7 @@ describe I18n::Backend::Weeler do
|
|
174
174
|
end
|
175
175
|
|
176
176
|
it "returns translation" do
|
177
|
-
|
177
|
+
FactoryBot.create(:translation)
|
178
178
|
I18n.backend.backends[0].reload_cache
|
179
179
|
expect(I18n.t("title")).to eq("This is weeler")
|
180
180
|
end
|
@@ -198,12 +198,12 @@ describe I18n::Backend::Weeler do
|
|
198
198
|
context "empty as existing" do
|
199
199
|
before(:all) do
|
200
200
|
Weeler.empty_translation_acts_like_missing = false
|
201
|
-
|
201
|
+
FactoryBot.create(:translation, key: "weeler.test.cms_title", locale: "en", value: "")
|
202
202
|
end
|
203
203
|
|
204
204
|
it "saves the fallback backend value" do
|
205
205
|
I18n.t('weeler.test.cms_title')
|
206
|
-
expect(I18n::Backend::Weeler::Translation.locale(:en).find_by_key('weeler.test.cms_title').value).to eq("")
|
206
|
+
expect(I18n::Backend::Weeler::Translation.locale(:en).find_by_key('weeler.test.cms_title').value).to eq("Weeler is cool")
|
207
207
|
end
|
208
208
|
|
209
209
|
after(:all) do
|
@@ -212,7 +212,7 @@ describe I18n::Backend::Weeler do
|
|
212
212
|
end
|
213
213
|
context "empty as missing" do
|
214
214
|
before(:all) do
|
215
|
-
|
215
|
+
FactoryBot.create(:translation, key: "weeler.test.cms_title", locale: "en", value: "")
|
216
216
|
end
|
217
217
|
|
218
218
|
it "saves the fallback backend value" do
|
@@ -223,7 +223,7 @@ describe I18n::Backend::Weeler do
|
|
223
223
|
end
|
224
224
|
context "value is nil" do
|
225
225
|
before(:all) do
|
226
|
-
|
226
|
+
FactoryBot.create(:translation, key: "weeler.test.cms_title", locale: "en", value: nil)
|
227
227
|
end
|
228
228
|
|
229
229
|
it "saves the fallback backend value" do
|
@@ -266,7 +266,7 @@ describe I18n::Backend::Weeler do
|
|
266
266
|
|
267
267
|
it "creates a stub when a custom separator is used" do
|
268
268
|
I18n.t('foo|baz', :separator => '|')
|
269
|
-
I18n::Backend::Weeler::Translation.locale(:en).lookup("foo.baz").first.
|
269
|
+
I18n::Backend::Weeler::Translation.locale(:en).lookup("foo.baz").first.update!(:value => 'baz!')
|
270
270
|
I18n.backend.backends[0].reload_cache
|
271
271
|
expect(I18n.t('foo|baz', :separator => '|')).to eq('baz!')
|
272
272
|
end
|
@@ -280,7 +280,7 @@ describe I18n::Backend::Weeler do
|
|
280
280
|
it "creates a stub when a custom separator is used and the key contains the flatten separator (a dot character)" do
|
281
281
|
key = 'foo|baz.zab'
|
282
282
|
I18n.t(key, :separator => '|')
|
283
|
-
I18n::Backend::Weeler::Translation.locale(:en).lookup("foo.baz\001zab").first.
|
283
|
+
I18n::Backend::Weeler::Translation.locale(:en).lookup("foo.baz\001zab").first.update!(:value => 'baz!')
|
284
284
|
I18n.backend.backends[0].reload_cache
|
285
285
|
expect(I18n.t(key, :separator => '|')).to eq('baz!')
|
286
286
|
end
|
@@ -1,18 +1,21 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
3
|
describe I18n::HumanizeMissingTranslations do
|
4
|
-
describe
|
5
|
-
context
|
6
|
-
it
|
7
|
-
expect(I18n.t(
|
4
|
+
describe '.call' do
|
5
|
+
context 'when exception is I18n::MissingTranslation' do
|
6
|
+
it 'humanizes missing translations' do
|
7
|
+
expect(I18n.t('some.missing translation')).to eq('Missing translation')
|
8
8
|
end
|
9
9
|
end
|
10
10
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
# TODO: does this test what it suppost to test?
|
12
|
+
#
|
13
|
+
# context 'when exception is not I18n::MissingTranslation' do
|
14
|
+
# it 'does not intercept it' do
|
15
|
+
# allow(I18n::Backend::Transliterator).to receive(:get).and_raise(I18n::ArgumentError)
|
16
|
+
|
17
|
+
# expect { I18n.transliterate('error?') }.to raise_error(I18n::ArgumentError)
|
18
|
+
# end
|
19
|
+
# end
|
17
20
|
end
|
18
21
|
end
|
data/weeler.gemspec
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# coding: utf-8
|
2
1
|
lib = File.expand_path('../lib', __FILE__)
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
3
|
require 'weeler/version'
|
@@ -6,7 +5,7 @@ require 'weeler/version'
|
|
6
5
|
Gem::Specification.new do |spec|
|
7
6
|
spec.name = 'weeler'
|
8
7
|
spec.version = Weeler::VERSION::STRING
|
9
|
-
spec.authors = ['Artūrs Braučs',
|
8
|
+
spec.authors = ['Artūrs Braučs', 'Artis Raugulis']
|
10
9
|
spec.email = ['arturs.braucs@gmail.com', 'artis@devart.lv']
|
11
10
|
spec.description = %q{CMS for weby.lv projects.}
|
12
11
|
spec.summary = %q{CMS for weby.lv projects.}
|
@@ -18,34 +17,40 @@ Gem::Specification.new do |spec|
|
|
18
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
18
|
spec.require_paths = ['lib']
|
20
19
|
|
21
|
-
spec.add_dependency 'rails', '~>
|
22
|
-
|
23
|
-
spec.add_dependency 'rails-settings-cached'
|
20
|
+
spec.add_dependency 'rails', '~> 6.0'
|
21
|
+
|
24
22
|
spec.add_dependency 'globalize'
|
23
|
+
spec.add_dependency 'i18n'
|
25
24
|
|
26
|
-
spec.add_dependency 'kaminari'
|
27
25
|
spec.add_dependency 'haml'
|
26
|
+
|
27
|
+
spec.add_dependency 'kaminari'
|
28
|
+
|
28
29
|
spec.add_dependency 'jquery-turbolinks'
|
29
30
|
spec.add_dependency 'jquery-ui-rails'
|
31
|
+
spec.add_dependency 'rails-settings-cached', '< 2.0'
|
30
32
|
|
31
33
|
spec.add_dependency 'axlsx'
|
32
34
|
spec.add_dependency 'roo'
|
33
35
|
|
34
|
-
spec.add_development_dependency 'bundler'
|
36
|
+
spec.add_development_dependency 'bundler'
|
37
|
+
spec.add_development_dependency 'capybara'
|
38
|
+
spec.add_development_dependency 'factory_bot_rails'
|
35
39
|
spec.add_development_dependency 'rake'
|
36
40
|
spec.add_development_dependency 'rspec'
|
37
|
-
spec.add_development_dependency 'rspec-rails'
|
41
|
+
spec.add_development_dependency 'rspec-rails', '4.0.0.beta3'
|
38
42
|
spec.add_development_dependency 'webrat'
|
39
|
-
|
40
|
-
spec.add_development_dependency 'factory_girl_rails'
|
43
|
+
|
41
44
|
if RUBY_PLATFORM == 'java'
|
42
45
|
spec.add_development_dependency 'activerecord-jdbcpostgresql-adapter'
|
43
46
|
else
|
44
47
|
spec.add_development_dependency 'pg'
|
45
48
|
end
|
49
|
+
|
50
|
+
spec.add_development_dependency 'coveralls'
|
46
51
|
spec.add_development_dependency 'database_cleaner'
|
47
|
-
spec.add_development_dependency 'shoulda-matchers'
|
48
52
|
spec.add_development_dependency 'rails-controller-testing'
|
49
|
-
spec.add_development_dependency '
|
53
|
+
spec.add_development_dependency 'shoulda-matchers'
|
50
54
|
|
55
|
+
spec.add_development_dependency 'pry'
|
51
56
|
end
|