site_blog 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +8 -0
- data/app/assets/config/site_blog_manifest.js +1 -0
- data/app/assets/stylesheets/site_blog/application.css +15 -0
- data/app/controllers/site_blog/application_controller.rb +4 -0
- data/app/controllers/site_blog/articles_controller.rb +54 -0
- data/app/controllers/site_blog/graphql_controller.rb +52 -0
- data/app/controllers/site_blog/tags_controller.rb +53 -0
- data/app/graphql/site_blog/mutations/base_mutation.rb +10 -0
- data/app/graphql/site_blog/schema.rb +28 -0
- data/app/graphql/site_blog/types/article_type.rb +12 -0
- data/app/graphql/site_blog/types/base_argument.rb +6 -0
- data/app/graphql/site_blog/types/base_enum.rb +6 -0
- data/app/graphql/site_blog/types/base_field.rb +7 -0
- data/app/graphql/site_blog/types/base_input_object.rb +7 -0
- data/app/graphql/site_blog/types/base_interface.rb +9 -0
- data/app/graphql/site_blog/types/base_object.rb +7 -0
- data/app/graphql/site_blog/types/base_scalar.rb +6 -0
- data/app/graphql/site_blog/types/base_union.rb +6 -0
- data/app/graphql/site_blog/types/mutation_type.rb +11 -0
- data/app/graphql/site_blog/types/query_type.rb +38 -0
- data/app/graphql/site_blog/types/tag_type.rb +9 -0
- data/app/helpers/blog/application_helper.rb +4 -0
- data/app/helpers/blog/articles_helper.rb +4 -0
- data/app/helpers/blog/tags_helper.rb +4 -0
- data/app/jobs/site_blog/application_job.rb +4 -0
- data/app/mailers/site_blog/application_mailer.rb +6 -0
- data/app/models/site_blog/application_record.rb +5 -0
- data/app/models/site_blog/article.rb +52 -0
- data/app/models/site_blog/tag.rb +5 -0
- data/app/uploaders/site_blog/image_uploader.rb +82 -0
- data/app/views/layouts/blog/application.html.erb +15 -0
- data/config/routes.rb +8 -0
- data/db/migrate/20230201140930_add_article_and_tag.rb +25 -0
- data/lib/site_blog/engine.rb +12 -0
- data/lib/site_blog/version.rb +3 -0
- data/lib/site_blog.rb +6 -0
- data/lib/tasks/site_blog_tasks.rake +4 -0
- metadata +182 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 46d68f1ca04f344b7b2a43c332748d199a295584d6bcb293426efcc4f7dea650
|
4
|
+
data.tar.gz: 4a9ed286fe44e2f56d3e3896228888b66962dce7b6f66061df41e9c8e10fd00a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9378d5a2533e58a055bb8130ec798d436f0714a9db8cd948fd14e12f6a07f1572845b3a5e12b8d653f631bb2ed76fd168c6c6c9ced0f98364034386d19777394
|
7
|
+
data.tar.gz: cc2b496976890a5ef582d82f489af7424b350a9f42c44b43ee648ea9b9ca965d7fdfd41caac4fa3145bb26b43b9364b302484ee427319cb9f291a41340ab0603
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2023 Eldar
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# SiteBlog
|
2
|
+
Short description and motivation.
|
3
|
+
|
4
|
+
## Usage
|
5
|
+
How to use my plugin.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem "site_blog"
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
```bash
|
16
|
+
$ bundle
|
17
|
+
```
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
```bash
|
21
|
+
$ gem install site_blog
|
22
|
+
```
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
Contribution directions go here.
|
26
|
+
|
27
|
+
## License
|
28
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
//= link_directory ../stylesheets/blog .css
|
@@ -0,0 +1,15 @@
|
|
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 any plugin's vendor/assets/stylesheets directory 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 other CSS/SCSS
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
+
* It is generally better to create a new file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
@@ -0,0 +1,54 @@
|
|
1
|
+
module SiteBlog
|
2
|
+
class ArticlesController < ApplicationController
|
3
|
+
before_action :set_article, only: %i[ show update destroy ]
|
4
|
+
|
5
|
+
# GET /articles
|
6
|
+
def index
|
7
|
+
render json: Article.filters(params)
|
8
|
+
end
|
9
|
+
|
10
|
+
# GET /articles/1
|
11
|
+
def show
|
12
|
+
@article.increment!(:view_count)
|
13
|
+
render json: @article
|
14
|
+
end
|
15
|
+
|
16
|
+
# POST /articles
|
17
|
+
def create
|
18
|
+
article = Article.new(article_params)
|
19
|
+
|
20
|
+
if article.save
|
21
|
+
render json: article, status: :created
|
22
|
+
else
|
23
|
+
render json: article.errors, status: :unprocessable_entity
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
# PATCH/PUT /articles/1
|
28
|
+
def update
|
29
|
+
if @article.update(article_params)
|
30
|
+
render json: @article
|
31
|
+
else
|
32
|
+
render json: @article.errors, status: :unprocessable_entity
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
# DELETE /articles/1
|
37
|
+
def destroy
|
38
|
+
@article.destroy
|
39
|
+
render json: { success: true }
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
43
|
+
|
44
|
+
# Use callbacks to share common setup or constraints between actions.
|
45
|
+
def set_article
|
46
|
+
@article = Article.find(params[:id])
|
47
|
+
end
|
48
|
+
|
49
|
+
# Only allow a list of trusted parameters through.
|
50
|
+
def article_params
|
51
|
+
params.require(:article).permit(:title, :description, :image, :tag_id, :archived, :active)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
module SiteBlog
|
2
|
+
class GraphqlController < ApplicationController
|
3
|
+
# If accessing from outside this domain, nullify the session
|
4
|
+
# This allows for outside API access while preventing CSRF attacks,
|
5
|
+
# but you'll have to authenticate your user separately
|
6
|
+
# protect_from_forgery with: :null_session
|
7
|
+
|
8
|
+
def execute
|
9
|
+
variables = prepare_variables(params[:variables])
|
10
|
+
query = params[:query]
|
11
|
+
operation_name = params[:operationName]
|
12
|
+
context = {
|
13
|
+
# Query context goes here, for example:
|
14
|
+
# current_user: current_user,
|
15
|
+
}
|
16
|
+
result = Schema.execute(query, variables: variables, context: context, operation_name: operation_name)
|
17
|
+
render json: result
|
18
|
+
rescue StandardError => e
|
19
|
+
raise e unless Rails.env.development?
|
20
|
+
handle_error_in_development(e)
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
# Handle variables in form data, JSON body, or a blank value
|
26
|
+
def prepare_variables(variables_param)
|
27
|
+
case variables_param
|
28
|
+
when String
|
29
|
+
if variables_param.present?
|
30
|
+
JSON.parse(variables_param) || {}
|
31
|
+
else
|
32
|
+
{}
|
33
|
+
end
|
34
|
+
when Hash
|
35
|
+
variables_param
|
36
|
+
when ActionController::Parameters
|
37
|
+
variables_param.to_unsafe_hash # GraphQL-Ruby will validate name and type of incoming variables.
|
38
|
+
when nil
|
39
|
+
{}
|
40
|
+
else
|
41
|
+
raise ArgumentError, "Unexpected parameter: #{variables_param}"
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def handle_error_in_development(e)
|
46
|
+
logger.error e.message
|
47
|
+
logger.error e.backtrace.join("\n")
|
48
|
+
|
49
|
+
render json: { errors: [{ message: e.message, backtrace: e.backtrace }], data: {} }, status: 500
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module SiteBlog
|
2
|
+
class TagsController < ApplicationController
|
3
|
+
before_action :set_tag, only: %i[ show update destroy ]
|
4
|
+
|
5
|
+
# GET /tags
|
6
|
+
def index
|
7
|
+
render json: Tag.all
|
8
|
+
end
|
9
|
+
|
10
|
+
# GET /tags/1
|
11
|
+
def show
|
12
|
+
render json: @tag
|
13
|
+
end
|
14
|
+
|
15
|
+
# POST /tags
|
16
|
+
def create
|
17
|
+
@tag = Tag.new(tag_params)
|
18
|
+
|
19
|
+
if @tag.save
|
20
|
+
render json: @tag, status: :created
|
21
|
+
else
|
22
|
+
render json: @tag.errors, status: :unprocessable_entity
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# PATCH/PUT /tags/1
|
27
|
+
def update
|
28
|
+
if @tag.update(tag_params)
|
29
|
+
render json: @tag
|
30
|
+
else
|
31
|
+
render json: @tag.errors, status: :unprocessable_entity
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# DELETE /tags/1
|
36
|
+
def destroy
|
37
|
+
@tag.destroy
|
38
|
+
render json: { success: true }
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
|
43
|
+
# Use callbacks to share common setup or constraints between actions.
|
44
|
+
def set_tag
|
45
|
+
@tag = Tag.find(params[:id])
|
46
|
+
end
|
47
|
+
|
48
|
+
# Only allow a list of trusted parameters through.
|
49
|
+
def tag_params
|
50
|
+
params.require(:tag).permit(:title, :arichived)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
module SiteBlog
|
2
|
+
class Schema < GraphQL::Schema
|
3
|
+
mutation(Types::MutationType)
|
4
|
+
query(Types::QueryType)
|
5
|
+
|
6
|
+
# For batch-loading (see https://graphql-ruby.org/dataloader/overview.html)
|
7
|
+
use GraphQL::Dataloader
|
8
|
+
|
9
|
+
# GraphQL-Ruby calls this when something goes wrong while running a query:
|
10
|
+
def self.type_error(err, context)
|
11
|
+
# if err.is_a?(GraphQL::InvalidNullError)
|
12
|
+
# # report to your bug tracker here
|
13
|
+
# return nil
|
14
|
+
# end
|
15
|
+
super
|
16
|
+
end
|
17
|
+
|
18
|
+
# Union and Interface Resolution
|
19
|
+
def self.resolve_type(abstract_type, obj, ctx)
|
20
|
+
# TODO: Implement this method
|
21
|
+
# to return the correct GraphQL object type for `obj`
|
22
|
+
raise(GraphQL::RequiredImplementationMissingError)
|
23
|
+
end
|
24
|
+
|
25
|
+
# Stop validating when it encounters this many errors:
|
26
|
+
validate_max_errors(100)
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
module SiteBlog
|
2
|
+
module Types
|
3
|
+
class ArticleType < Types::BaseObject
|
4
|
+
description "A blog article"
|
5
|
+
field :id, ID, null: false
|
6
|
+
field :title, String, null: false
|
7
|
+
field :html_description, String, null: false
|
8
|
+
field :tag, TagType, null: false, description: "This post's tag"
|
9
|
+
field :created_at, GraphQL::Types::ISO8601DateTime, null: false
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
module SiteBlog
|
2
|
+
module Types
|
3
|
+
class QueryType < Types::BaseObject
|
4
|
+
|
5
|
+
field :articles, [ArticleType], null: false, description: "Вывод всех постов" do
|
6
|
+
argument :page, Int, required: false, description: 'Номер страницы'
|
7
|
+
argument :tag_id, Int, required: false, description: 'ID тега'
|
8
|
+
argument :query, String, required: false, description: 'Поисковый запрос'
|
9
|
+
end
|
10
|
+
|
11
|
+
def articles(page: 1, tag_id: nil, query: nil)
|
12
|
+
Article.preload(:tag).filters({page: page, tag_id: tag_id, query: query})
|
13
|
+
end
|
14
|
+
|
15
|
+
field :article, ArticleType, "Поиск поста по ID" do
|
16
|
+
argument :id, ID
|
17
|
+
end
|
18
|
+
|
19
|
+
def article(id:)
|
20
|
+
Article.find(id)
|
21
|
+
end
|
22
|
+
|
23
|
+
field :tags, [TagType], null: false, description: "Вывод всех тегов"
|
24
|
+
def tags
|
25
|
+
Tag.all
|
26
|
+
end
|
27
|
+
|
28
|
+
field :tag, TagType, "Поиск тега по ID" do
|
29
|
+
argument :id, ID
|
30
|
+
end
|
31
|
+
|
32
|
+
def tag(id:)
|
33
|
+
Tag.find(id)
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
module SiteBlog
|
2
|
+
class Article < ApplicationRecord
|
3
|
+
include PgSearch::Model
|
4
|
+
|
5
|
+
pg_search_scope :search,
|
6
|
+
against: {
|
7
|
+
title: 'A',
|
8
|
+
description: 'B'
|
9
|
+
},
|
10
|
+
using: {
|
11
|
+
tsearch: { prefix: true }
|
12
|
+
}
|
13
|
+
|
14
|
+
mount_uploader :image, SiteBlog::ImageUploader
|
15
|
+
|
16
|
+
belongs_to :tag
|
17
|
+
|
18
|
+
validates :title, presence: true, length: { minimum: 2 , maximum: 250 }
|
19
|
+
validates :description, presence: true
|
20
|
+
validates :image, presence: true
|
21
|
+
validates :tag_id, presence: true
|
22
|
+
validates :slug, presence: true, uniqueness: true, format: { with: /\A[a-z0-9\-_]+\z/ }
|
23
|
+
validates :locale, presence: true
|
24
|
+
|
25
|
+
before_validation :set_slug
|
26
|
+
before_validation :set_locale
|
27
|
+
before_validation :clean_description
|
28
|
+
|
29
|
+
scope :filters, lambda { |params|
|
30
|
+
rel = where(archived: false)
|
31
|
+
rel = rel.where(tag_id: params[:tag_id]) if params[:tag_id].present?
|
32
|
+
rel = rel.search(params[:query]) if params[:query].present?
|
33
|
+
rel.order('created_at DESC').page(params[:page]).per(20)
|
34
|
+
}
|
35
|
+
|
36
|
+
private
|
37
|
+
|
38
|
+
def set_slug
|
39
|
+
text = slug.present? ? slug : title
|
40
|
+
self.slug = Translit.convert(text, :english).parameterize rescue nil
|
41
|
+
end
|
42
|
+
|
43
|
+
def set_locale
|
44
|
+
self.locale = locale || I18n.locale
|
45
|
+
end
|
46
|
+
|
47
|
+
def clean_description
|
48
|
+
self.description = Nokogiri::HTML(self.html_description).text
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
module SiteBlog
|
2
|
+
class ImageUploader < CarrierWave::Uploader::Base
|
3
|
+
include CarrierWave::MiniMagick
|
4
|
+
|
5
|
+
storage :file
|
6
|
+
|
7
|
+
ALLOWED_FORMAT_FILES = ['jpg', 'jpeg', 'png', 'gif']
|
8
|
+
MAX_FILE_SIZE = Rails.env.test? ? 0.5.megabytes : 5.megabytes
|
9
|
+
MIN_RESOLUTION = [500, 500] #height, width in pixels
|
10
|
+
MAX_QUALITY = 90 #%
|
11
|
+
MIN_QUALITY = 70 #%
|
12
|
+
|
13
|
+
def extension_allowlist
|
14
|
+
ALLOWED_FORMAT_FILES
|
15
|
+
end
|
16
|
+
|
17
|
+
def content_type_allowlist
|
18
|
+
ALLOWED_FORMAT_FILES.map {|ext| "image/#{ext}"}
|
19
|
+
end
|
20
|
+
|
21
|
+
def initialize a, b
|
22
|
+
@min_height = MIN_RESOLUTION[0]
|
23
|
+
@min_width = MIN_RESOLUTION[1]
|
24
|
+
@max_file_size = MAX_FILE_SIZE
|
25
|
+
@min_quality = MIN_QUALITY
|
26
|
+
@max_quality = MAX_QUALITY
|
27
|
+
@attribute = :images
|
28
|
+
super a, b
|
29
|
+
end
|
30
|
+
|
31
|
+
version :thumb do
|
32
|
+
process resize_to_fill: [300, 300]
|
33
|
+
end
|
34
|
+
|
35
|
+
process :check_file_size
|
36
|
+
process :check_resolution
|
37
|
+
process :quality
|
38
|
+
|
39
|
+
def check_file_size
|
40
|
+
return unless @max_file_size
|
41
|
+
return unless File.size?(current_path)&.> @max_file_size
|
42
|
+
model.errors.add @attribute, I18n.t('errors.messages.max_size_error',
|
43
|
+
max_size: @max_file_size.unmegabyte,
|
44
|
+
filename: original_filename)
|
45
|
+
end
|
46
|
+
|
47
|
+
def check_resolution
|
48
|
+
@img = ::MiniMagick::Image.open current_path
|
49
|
+
if (@max_height&.< @img.height) || (@max_width&.< @img.width)
|
50
|
+
model.errors.add @attribute, I18n.t('errors.messages.max_resolution', height: @max_height, width: @max_width)
|
51
|
+
end
|
52
|
+
if (@min_height&.> @img.height) || (@min_width&.> @img.width)
|
53
|
+
model.errors.add @attribute, I18n.t('errors.messages.min_resolution', height: @min_height, width: @min_width)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def quality
|
58
|
+
# Для маленьких файлов качество приближается к max (%), по мере роста размера файла, качество линейно
|
59
|
+
# падает. Для максимально разрешенного размера файла это значение составляет min (%)
|
60
|
+
image = MiniMagick::Image.open current_path
|
61
|
+
out_quality = (@max_quality - (@max_quality - @min_quality) * image.size / @max_file_size).round
|
62
|
+
if image.data['quality'].blank? || image.data['quality'] > out_quality
|
63
|
+
`mogrify -quality #{out_quality} #{current_path}`
|
64
|
+
end
|
65
|
+
rescue
|
66
|
+
nil
|
67
|
+
end
|
68
|
+
|
69
|
+
def filename
|
70
|
+
if original_filename
|
71
|
+
"#{model.class.name.downcase}.#{Digest::MD5.hexdigest(original_filename)[0..7]}.#{file.extension}"
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def store_dir
|
76
|
+
return "test/files/db#{ENV['TEST_ENV_NUMBER']}/#{model.class.name.downcase}/#{model.id}" if Rails.env.test?
|
77
|
+
"files/blog/articles/#{model.id}"
|
78
|
+
end
|
79
|
+
|
80
|
+
CarrierWave::SanitizedFile.sanitize_regexp = /[^a-zA-Zа-яА-ЯёЁ0-9\.\-\+_]/u
|
81
|
+
end
|
82
|
+
end
|
data/config/routes.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
class AddArticleAndTag < ActiveRecord::Migration[7.0]
|
2
|
+
def change
|
3
|
+
create_table :site_blog_tags do |t|
|
4
|
+
t.string :title
|
5
|
+
t.boolean :archived, null: false, default: false
|
6
|
+
t.timestamps
|
7
|
+
end
|
8
|
+
|
9
|
+
create_table :site_blog_articles do |t|
|
10
|
+
t.string :title, null: false
|
11
|
+
t.string :slug, null: false
|
12
|
+
t.text :html_description, null: false
|
13
|
+
t.text :description, null: false
|
14
|
+
t.string :image, null: false
|
15
|
+
t.belongs_to :tag, null: false, foreign_key: { to_table: :site_blog_tags }
|
16
|
+
t.integer :view_count, null: false, default: 0
|
17
|
+
t.boolean :archived, null: false, default: false
|
18
|
+
t.boolean :active, null: false, default: true
|
19
|
+
t.string :locale, null: false
|
20
|
+
t.timestamps
|
21
|
+
end
|
22
|
+
|
23
|
+
add_index :site_blog_articles, :slug, unique: true
|
24
|
+
end
|
25
|
+
end
|
data/lib/site_blog.rb
ADDED
metadata
ADDED
@@ -0,0 +1,182 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: site_blog
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eldar
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-02-01 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 7.0.2
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 7.0.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: carrierwave
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: translit
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pg_search
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: kaminari
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: graphql
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: graphiql-rails
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
description: Description of AppComponent
|
112
|
+
email:
|
113
|
+
- eldarweb@mail.ru
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- MIT-LICENSE
|
119
|
+
- README.md
|
120
|
+
- Rakefile
|
121
|
+
- app/assets/config/site_blog_manifest.js
|
122
|
+
- app/assets/stylesheets/site_blog/application.css
|
123
|
+
- app/controllers/site_blog/application_controller.rb
|
124
|
+
- app/controllers/site_blog/articles_controller.rb
|
125
|
+
- app/controllers/site_blog/graphql_controller.rb
|
126
|
+
- app/controllers/site_blog/tags_controller.rb
|
127
|
+
- app/graphql/site_blog/mutations/base_mutation.rb
|
128
|
+
- app/graphql/site_blog/schema.rb
|
129
|
+
- app/graphql/site_blog/types/article_type.rb
|
130
|
+
- app/graphql/site_blog/types/base_argument.rb
|
131
|
+
- app/graphql/site_blog/types/base_enum.rb
|
132
|
+
- app/graphql/site_blog/types/base_field.rb
|
133
|
+
- app/graphql/site_blog/types/base_input_object.rb
|
134
|
+
- app/graphql/site_blog/types/base_interface.rb
|
135
|
+
- app/graphql/site_blog/types/base_object.rb
|
136
|
+
- app/graphql/site_blog/types/base_scalar.rb
|
137
|
+
- app/graphql/site_blog/types/base_union.rb
|
138
|
+
- app/graphql/site_blog/types/mutation_type.rb
|
139
|
+
- app/graphql/site_blog/types/query_type.rb
|
140
|
+
- app/graphql/site_blog/types/tag_type.rb
|
141
|
+
- app/helpers/blog/application_helper.rb
|
142
|
+
- app/helpers/blog/articles_helper.rb
|
143
|
+
- app/helpers/blog/tags_helper.rb
|
144
|
+
- app/jobs/site_blog/application_job.rb
|
145
|
+
- app/mailers/site_blog/application_mailer.rb
|
146
|
+
- app/models/site_blog/application_record.rb
|
147
|
+
- app/models/site_blog/article.rb
|
148
|
+
- app/models/site_blog/tag.rb
|
149
|
+
- app/uploaders/site_blog/image_uploader.rb
|
150
|
+
- app/views/layouts/blog/application.html.erb
|
151
|
+
- config/routes.rb
|
152
|
+
- db/migrate/20230201140930_add_article_and_tag.rb
|
153
|
+
- lib/site_blog.rb
|
154
|
+
- lib/site_blog/engine.rb
|
155
|
+
- lib/site_blog/version.rb
|
156
|
+
- lib/tasks/site_blog_tasks.rake
|
157
|
+
homepage: https://gitlab.telega.in/components-backend/Blog
|
158
|
+
licenses:
|
159
|
+
- MIT
|
160
|
+
metadata:
|
161
|
+
allowed_push_host: https://rubygems.org
|
162
|
+
homepage_uri: https://gitlab.telega.in/components-backend/Blog
|
163
|
+
post_install_message:
|
164
|
+
rdoc_options: []
|
165
|
+
require_paths:
|
166
|
+
- lib
|
167
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
168
|
+
requirements:
|
169
|
+
- - ">="
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
version: '0'
|
172
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
173
|
+
requirements:
|
174
|
+
- - ">="
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
version: '0'
|
177
|
+
requirements: []
|
178
|
+
rubygems_version: 3.3.7
|
179
|
+
signing_key:
|
180
|
+
specification_version: 4
|
181
|
+
summary: Summary of AppComponent
|
182
|
+
test_files: []
|