thecore_print_commons 2.0.3 → 2.0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6f2974a085359b92727a6ec3494bde504080b2f50f7ceae6e4ca90e288ae7274
4
- data.tar.gz: 82d1e631096d0b1b1a26b41688eb8bc3ce5e8b091189db4f4f957db5e47fa1bb
3
+ metadata.gz: 86c74b9cadc64d8b0f75bd0b67364a79c84117947cf4729f993d4734bd0a9838
4
+ data.tar.gz: 4ba907d65c9d61530f5da4a26669f686705acf67e62421b7f2a79bec449ed4d3
5
5
  SHA512:
6
- metadata.gz: 6940e7eaa8b0a23f53be43345247805ef1b33184f2536e1169b5756b50a6704580e50afc2e8af2f1a2703b367e75e6a108123e6488766c5b2f80fdf7af8e9e57
7
- data.tar.gz: c813296335885f5454b403ba6e0e949d7c163a735443071fb7308d4d00e39a82022d6ea3832b471e235ab323b1f0592f1e8dd2445dcf79b89ad696aa0b914a43
6
+ metadata.gz: 5496efffaa44df68348d5a8622bde49880f133990dafd1f59716c21f7f7900830d1a8e4c1c7a74fb3372ded750e91fcc709d6dfb8442219f8754db9912d25910
7
+ data.tar.gz: e2ca1d4b65cbcd51ab76488e38bbc53346266dff3aec30c252a53bb598e3e05f6a34ae250835098408723c492d79673da85a176a630fc19916b66a096e29e3be
@@ -0,0 +1,30 @@
1
+ module Api::PrintJob
2
+ extend ActiveSupport::Concern
3
+
4
+ included do
5
+ # Use @@json_attrs to drive json rendering for
6
+ # API model responses (index, show and update ones).
7
+ # For reference:
8
+ # https://api.rubyonrails.org/classes/ActiveModel/Serializers/JSON.html
9
+ # The object passed accepts only these keys:
10
+ # - only: list [] of model fields to be shown in JSON serialization
11
+ # - except: exclude these fields from the JSON serialization, is a list []
12
+ # - methods: include the result of some method defined in the model
13
+ # - include: include associated models, it's an object {} which also accepts the keys described here
14
+ cattr_accessor :json_attrs
15
+ @@json_attrs = ::ModelDrivenApi.smart_merge (json_attrs || {}), {}
16
+
17
+ # Here you can add custom actions to be called from the API
18
+ # The action must return an serializable (JSON) object.
19
+ # Here you can find an example, in the API could be called like:
20
+ #
21
+ # GET /api/v2/:model/:id?do=test&custom_parameter=hello
22
+ #
23
+ # Please uncomment it to test with a REST client.
24
+ # Please take note on the fact that, if the do params is test, the custom
25
+ # action definition must be, like below self.custom_action_test.
26
+ # def self.custom_action_test id=nil, params=nil
27
+ # { test: [ :first, :second, :third ], id: id, params: params}
28
+ # end
29
+ end
30
+ end
@@ -0,0 +1,30 @@
1
+ module Api::PrintTemplate
2
+ extend ActiveSupport::Concern
3
+
4
+ included do
5
+ # Use @@json_attrs to drive json rendering for
6
+ # API model responses (index, show and update ones).
7
+ # For reference:
8
+ # https://api.rubyonrails.org/classes/ActiveModel/Serializers/JSON.html
9
+ # The object passed accepts only these keys:
10
+ # - only: list [] of model fields to be shown in JSON serialization
11
+ # - except: exclude these fields from the JSON serialization, is a list []
12
+ # - methods: include the result of some method defined in the model
13
+ # - include: include associated models, it's an object {} which also accepts the keys described here
14
+ cattr_accessor :json_attrs
15
+ @@json_attrs = ::ModelDrivenApi.smart_merge (json_attrs || {}), {}
16
+
17
+ # Here you can add custom actions to be called from the API
18
+ # The action must return an serializable (JSON) object.
19
+ # Here you can find an example, in the API could be called like:
20
+ #
21
+ # GET /api/v2/:model/:id?do=test&custom_parameter=hello
22
+ #
23
+ # Please uncomment it to test with a REST client.
24
+ # Please take note on the fact that, if the do params is test, the custom
25
+ # action definition must be, like below self.custom_action_test.
26
+ # def self.custom_action_test id=nil, params=nil
27
+ # { test: [ :first, :second, :third ], id: id, params: params}
28
+ # end
29
+ end
30
+ end
@@ -0,0 +1,45 @@
1
+ module Api::Printer
2
+ extend ActiveSupport::Concern
3
+
4
+ included do
5
+ # Use @@json_attrs to drive json rendering for
6
+ # API model responses (index, show and update ones).
7
+ # For reference:
8
+ # https://api.rubyonrails.org/classes/ActiveModel/Serializers/JSON.html
9
+ # The object passed accepts only these keys:
10
+ # - only: list [] of model fields to be shown in JSON serialization
11
+ # - except: exclude these fields from the JSON serialization, is a list []
12
+ # - methods: include the result of some method defined in the model
13
+ # - include: include associated models, it's an object {} which also accepts the keys described here
14
+ cattr_accessor :json_attrs
15
+ @@json_attrs = ::ModelDrivenApi.smart_merge (json_attrs || {}), {}
16
+
17
+ # Here you can add custom actions to be called from the API
18
+ # The action must return an serializable (JSON) object.
19
+ # Here you can find an example, in the API could be called like:
20
+ #
21
+ # GET /api/v2/:model/:id?do=test&custom_parameter=hello
22
+ #
23
+ # Please uncomment it to test with a REST client.
24
+ # Please take note on the fact that, if the do params is test, the custom
25
+ # action definition must be, like below self.custom_action_test.
26
+ # def self.custom_action_test id=nil, params=nil
27
+ # { test: [ :first, :second, :third ], id: id, params: params}
28
+ # end
29
+
30
+ def self.custom_action_print_single_barcode id, params
31
+ # Example Usage:
32
+ # item = ::Item.joins(:projects).where(projects: {id: params[:order_id].to_i}).first
33
+ # printer = ::Printer.where(supplier_id: current_user.supplier_id, default: true).first
34
+ # single_text = "#{printer.print_template.template.gsub("%DESCRIPTION%", item.description)}"
35
+ # text = single_text * params[:quantity].to_i
36
+ # # Preso l'ordine mi recupero l'item e ne stampo la quantità richiesta
37
+ # ::PrintWorker.perform_async(printer.ip, text)
38
+
39
+ printer = Printer.find(id)
40
+ text = printer.print_template.template.gsub(printer.print_template.translation_matrix.lines.first, params[:barcode])
41
+ ::PrintWorker.perform_async(printer.ip, printer.port, text)
42
+ { info: "Print job sent in background to #{printer.ip} on port #{printer.port}" }
43
+ end
44
+ end
45
+ end
@@ -0,0 +1,19 @@
1
+ module RailsAdmin::PrintJob
2
+ extend ActiveSupport::Concern
3
+ included do
4
+ # Here You can define the RailsAdmin DSL
5
+ rails_admin do
6
+ # rails_admin do
7
+ navigation_label I18n.t("admin.settings.label")
8
+ navigation_icon 'fa fa-check-square'
9
+ parent Printer
10
+
11
+ field :printer
12
+ field :created_at
13
+ field :description
14
+ list do
15
+ field :printed_on_total
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,24 @@
1
+ module RailsAdmin::PrintTemplate
2
+ extend ActiveSupport::Concern
3
+ included do
4
+ # Here You can define the RailsAdmin DSL
5
+ rails_admin do
6
+ navigation_label I18n.t("admin.settings.label")
7
+ navigation_icon 'fa fa-file-text'
8
+ parent Printer
9
+
10
+ field :name
11
+ field :description
12
+
13
+ edit do
14
+ field :template
15
+ field :translation_matrix
16
+ end
17
+
18
+ show do
19
+ field :template
20
+ field :translation_matrix
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,28 @@
1
+ module RailsAdmin::Printer
2
+ extend ActiveSupport::Concern
3
+ included do
4
+ # Here You can define the RailsAdmin DSL
5
+ rails_admin do
6
+ navigation_label I18n.t("admin.settings.label")
7
+ navigation_icon 'fa fa-print'
8
+
9
+ field :print_template
10
+ field :name
11
+ field :ip
12
+ field :port do
13
+ default_value do
14
+ 9100
15
+ end
16
+ end
17
+ field :default, :toggle
18
+ field :temperature
19
+ field :description
20
+
21
+ list do
22
+ configure :description do
23
+ visible false
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,10 @@
1
+ class PrintJob < ApplicationRecord
2
+ include Api::PrintJob
3
+ include RailsAdmin::PrintJob
4
+
5
+ belongs_to :printer, inverse_of: :print_jobs
6
+
7
+ def printed_on_total
8
+ "#{printed}/#{total}"
9
+ end
10
+ end
@@ -0,0 +1,34 @@
1
+ class PrintTemplate < ApplicationRecord
2
+ include Api::PrintTemplate
3
+ include RailsAdmin::PrintTemplate
4
+
5
+ has_many :printers, inverse_of: :print_template
6
+
7
+ validates :name, presence: true
8
+ validates :template, presence: true
9
+
10
+ # def translate args
11
+ # # Rails.logger.info("COME CAZZO SEI FATTO? #{args.inspect}")
12
+ # temp = template.clone
13
+ # temp.gsub!("TEMPERATURE", args[:temperature].to_s)
14
+ # number_of_barcodes.times.with_index do |i|
15
+ # #Rails.logger.debug "MAMAMAMA! #{args[:items][i]}"
16
+ # item = (ChosenItem.find(args[:items][i]) rescue false)
17
+ # HashWithIndifferentAccess.new(YAML.load(translation_matrix)).each_pair do |k, v|
18
+ # Rails.logger.debug "ITEM: #{item.inspect} AND THE STRING: #{v}"
19
+ # temp.gsub!(k, item.is_a?(FalseClass) ? "" : v.split(".").inject(item, :send))
20
+ # end
21
+ # # Rails.logger.debug "MAMAMAMA! #{item.inspect}"
22
+ # # Se item è stringa vuota (quindi non ha .barcode), allora ritorna il campo FD remmato
23
+ # temp.gsub!("BARCODE#{i.to_s.rjust(2, '0')}", (item.barcode rescue "BARCODE#{i.to_s.rjust(2, '0')}"))
24
+ # end
25
+ # # Deleting the lines with BARCODE\d\d in them
26
+ # pivot = ""
27
+ # temp.each_line do |el|
28
+ # pivot += el if /BARCODE\d\d/.match(el).blank?
29
+ # end
30
+ # Rails.logger.info pivot
31
+ # pivot
32
+ # end
33
+
34
+ end
@@ -1,9 +1,8 @@
1
1
  class Printer < ApplicationRecord
2
+ include Api::Printer
3
+ include RailsAdmin::Printer
2
4
  #serialize :translation, Hash
3
5
 
4
- validates :name, presence: true
5
- validates :ip, presence: true
6
-
7
6
  # before_save :check_if_unique_default
8
7
  # validates :qty, presence: true, numericality: { only_integer: true, greater_than: 0 }
9
8
  # validates :translation, presence: true
@@ -34,35 +33,27 @@ class Printer < ApplicationRecord
34
33
  # where(used_in: (USED.index(section.to_sym) + 1))
35
34
  # end
36
35
 
37
- def ip_enum
38
- # Getting from CUPS the list of configured printers
39
- if Settings.ns(:printer_commons).cups_server.blank? || ['127.0.0.1', 'localhost'].include?(Settings.ns(:printer_commons).cups_server)
40
- # Local Cups server
41
- CupsPrinter.get_all_printer_names
42
- else
43
- # Remote Cups server
44
- CupsPrinter.get_all_printer_names hostname: Settings.ns(:printer_commons).cups_server
45
- end
46
- end
36
+ # Usable with CUPS (STUB)
37
+ # def ip_enum
38
+ # # Getting from CUPS the list of configured printers
39
+ # if Settings.ns(:printer_commons).cups_server.blank? || ['127.0.0.1', 'localhost'].include?(Settings.ns(:printer_commons).cups_server)
40
+ # # Local Cups server
41
+ # CupsPrinter.get_all_printer_names
42
+ # else
43
+ # # Remote Cups server
44
+ # CupsPrinter.get_all_printer_names hostname: Settings.ns(:printer_commons).cups_server
45
+ # end
46
+ # end
47
47
 
48
- RailsAdmin.config do |config|
49
- config.model 'Printer' do
50
- navigation_label I18n.t("admin.settings.label")
51
- navigation_icon 'fa fa-print'
48
+ belongs_to :print_template, inverse_of: :printers
49
+ has_many :print_jobs, dependent: :destroy, inverse_of: :printer
52
50
 
53
- field :name
54
- field :ip
55
- field :default, :toggle
56
- field :temperature
57
- field :description
51
+ validates :name, presence: true
52
+ validates :ip, presence: true
53
+ validates :port, presence: true
54
+ validates :print_template, presence: true
58
55
 
59
- list do
60
- configure :description do
61
- visible false
62
- end
63
- end
64
- end
65
- end
56
+
66
57
  # private
67
58
  # def check_if_unique_default
68
59
  # if self.default?
@@ -1,22 +1,79 @@
1
1
  require 'ipaddr'
2
+ require 'socket'
2
3
  class PrintWorker
3
4
  include Sidekiq::Worker
4
5
  sidekiq_options retry: false
5
6
 
6
- def perform printer_cups_name, text
7
- # if Settings.ns(:printer_commons).cups_server.blank? || ['127.0.0.1', 'localhost'].contains(Settings.ns(:printer_commons).cups_server)
8
- # printer = CupsPrinter.new printer_cups_name
9
- # printer.print_data text, 'text/plain'
10
- # printer.close
11
- # else
12
- print_file = "/tmp/print-#{printer_cups_name}-#{Time.now.strftime '%Y%m%d%H%M%S%L'}"
13
- puts "Creating temp file: #{print_file}"
14
- IO.write(print_file, text)
15
- # CupsPrinter.new printer_cups_name, hostname: Settings.ns(:printer_commons).cups_server
16
- # printer.print_data text, 'text/plain', hostname: Settings.ns(:printer_commons).cups_server
17
- puts "Printing with lp command on #{printer_cups_name} of #{Settings.ns(:printer_commons).cups_server} "
18
- `cupsenable "#{printer_cups_name}";lp -d "#{printer_cups_name}" -h "#{Settings.ns(:printer_commons).cups_server}" -o raw "#{print_file}"`
19
- File.delete print_file
20
- # end
7
+ # ZPL print
8
+ def perform ip, port, text
9
+ @pjob = PrintJob.create(printer_id: Printer.find_by(ip: ip), finished: false, iserror: false, total: 0, printed: 0)
10
+ status = check_status(ip)
11
+ print_job_status = false
12
+ if status == "OK"
13
+ begin
14
+ streamSock = TCPSocket.new ip, port
15
+ streamSock.send text, 0
16
+ streamSock.close
17
+ print_job_status = true
18
+ rescue
19
+ @pjob.update(iserror: true, description: "PRINTER ERROR: TIMEOUT")
20
+ print_job_status = false
21
+ end
22
+ else
23
+ @pjob.update(iserror: true, description: "PRINTER ERROR: #{status}")
24
+ print_job_status = false
25
+ end
26
+ # '~hs alla posizione 56 per 8 caratteri la quantità di etichette rimaste'
27
+ total = text.scan(/~PQ(\d+)/).last.first.to_i rescue 0
28
+ @pjob.update(printed: (print_job_status ? total : 0)) # Se risultato true, allora ha stampato tutto, altrimenti non ha stampato nulla
29
+ @pjob.update(total: total) # In realtà è inutile, ora manda tutto quello che può alla stampante, solo lei può andare storta
30
+ @pjob.update(finished: print_job_status)
21
31
  end
32
+
33
+ def check_status printer
34
+ begin
35
+ s = TCPSocket.new(printer, 9100)
36
+ # Must create intepolation between item and template
37
+ # Printer.template può essere anche
38
+ # una parola di comando epr chiedere lo stato della stampante, solo nel caso sia ok,
39
+ # Allora mando la stampa
40
+ s.puts("~hs")
41
+ # Attende per la risposta (si mette in wait)
42
+ response = []
43
+ while (response_text = s.gets)
44
+ response << response_text
45
+ break if response.count == 3
46
+ end
47
+ s.close
48
+ Rails.logger.info "PrintIt: RESPONSE: #{response.inspect}"
49
+ first = response[0].split(",")
50
+ second = response[1].split(",")
51
+ return "HEAD UP" if second[2].to_i == 1
52
+ return "RIBBON OUT" if second[3].to_i == 1
53
+ return "PAPER OUT" if first[1].to_i == 1
54
+ return "PAUSE" if first[2].to_i == 1
55
+ return "OK"
56
+ rescue
57
+ Rails.logger.info "PrintIt: STATUS: UNREACHABLE"
58
+ return "UNREACHABLE"
59
+ end
60
+ end
61
+
62
+ # This is for cups only
63
+ # def perform printer_cups_name, text
64
+ # # if Settings.ns(:printer_commons).cups_server.blank? || ['127.0.0.1', 'localhost'].contains(Settings.ns(:printer_commons).cups_server)
65
+ # # printer = CupsPrinter.new printer_cups_name
66
+ # # printer.print_data text, 'text/plain'
67
+ # # printer.close
68
+ # # else
69
+ # print_file = "/tmp/print-#{printer_cups_name}-#{Time.now.strftime '%Y%m%d%H%M%S%L'}"
70
+ # puts "Creating temp file: #{print_file}"
71
+ # IO.write(print_file, text)
72
+ # # CupsPrinter.new printer_cups_name, hostname: Settings.ns(:printer_commons).cups_server
73
+ # # printer.print_data text, 'text/plain', hostname: Settings.ns(:printer_commons).cups_server
74
+ # puts "Printing with lp command on #{printer_cups_name} of #{Settings.ns(:printer_commons).cups_server} "
75
+ # `cupsenable "#{printer_cups_name}";lp -d "#{printer_cups_name}" -h "#{Settings.ns(:printer_commons).cups_server}" -o raw "#{print_file}"`
76
+ # File.delete print_file
77
+ # # end
78
+ # end
22
79
  end
@@ -2,16 +2,18 @@ module Abilities
2
2
  class ThecorePrintCommon
3
3
  include CanCan::Ability
4
4
  def initialize user
5
- if user
6
- # if the user is logged in, it can do certain tasks regardless his role
7
- if user.admin?
8
- # if the user is an admin, it can do a lot of things, usually
9
- end
5
+ cannot [:destroy, :create, :update, :show], [PrintJob]
6
+ # if user
7
+ # cannot :edi
8
+ # # if the user is logged in, it can do certain tasks regardless his role
9
+ # if user.admin?
10
+ # # if the user is an admin, it can do a lot of things, usually
11
+ # end
10
12
 
11
- if user.has_role? :role
12
- # a specific role, brings specific powers
13
- end
14
- end
13
+ # if user.has_role? :role
14
+ # # a specific role, brings specific powers
15
+ # end
16
+ # end
15
17
  end
16
18
  end
17
19
  end
@@ -1,6 +1,5 @@
1
1
  en:
2
2
  admin:
3
3
  help:
4
- print:
5
- ip: '%{help}. If this select box is empty, it means you just need to configure a printer in CUPS. As an example, you could do it, for a SMB shared printer, running a command like this: sudo lpadmin -p PrinterName -E -v smb://username:password_urlencoded@WORKGROUP/PRINTSERVER/PRINTER -m raw -L "LOCATION"'
6
-
4
+ print_template:
5
+ translation_matrix:
@@ -1,5 +1,5 @@
1
1
  it:
2
2
  admin:
3
3
  help:
4
- print:
5
- ip: '%{help}. Se questa lista è vuota, significa che devi ancora configurare una stampante in CUPS, ad esempio puoi farlo, per una stampante SMB, con un comando simile a questo: sudo lpadmin -p PrinterName -E -v smb://username:password_urlencoded@WORKGROUP/PRINTSERVER/PRINTER -m raw -L "LOCATION"'
4
+ print_template:
5
+ translation_matrix:
@@ -0,0 +1,10 @@
1
+ class CreatePrintJobs < ActiveRecord::Migration[4.2]
2
+ def change
3
+ create_table :print_jobs do |t|
4
+ t.boolean :finished, default: false
5
+ t.references :printer, index: true, foreign_key: true
6
+
7
+ t.timestamps null: false
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,9 @@
1
+ class AddFieldsToPrintJob < ActiveRecord::Migration[4.2]
2
+ def change
3
+ add_column :print_jobs, :iserror, :boolean, default: false
4
+ add_column :print_jobs, :description, :string
5
+ add_index :print_jobs, :description
6
+ add_column :print_jobs, :printed, :integer
7
+ add_column :print_jobs, :total, :integer
8
+ end
9
+ end
@@ -0,0 +1,12 @@
1
+ class CreatePrintTemplates < ActiveRecord::Migration[4.2]
2
+ def change
3
+ create_table :print_templates do |t|
4
+ t.string :name
5
+ t.text :description
6
+ t.text :template
7
+ t.text :translation_matrix
8
+
9
+ t.timestamps null: false
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,5 @@
1
+ class AddPrintTemplateIdToPrinter < ActiveRecord::Migration[4.2]
2
+ def change
3
+ add_reference :printers, :print_template, index: true, foreign_key: true
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddPortToPrinter < ActiveRecord::Migration[4.2]
2
+ def change
3
+ add_column :printers, :port, :integer, default: 9100
4
+ end
5
+ end
data/db/seeds.rb ADDED
@@ -0,0 +1,2 @@
1
+ puts "Loading ThecorePrintCommons seeds"
2
+ Settings.ns(:printer_commons).cups_server = 'localhost'
@@ -2,6 +2,9 @@ module ThecorePrintCommons
2
2
  class Engine < ::Rails::Engine
3
3
 
4
4
  initializer 'thecore_print_commons.add_to_migrations' do |app|
5
+ # Adds the list of Thecore Engines, so to manage seeds loading, i.e.:
6
+ # Thecore::Base.thecore_engines.each { |engine| engine.load_seed }
7
+ Thecore::Base.thecore_engines << self.class
5
8
  unless app.root.to_s.match root.to_s
6
9
  # APPEND TO MAIN APP MIGRATIONS FROM THIS GEM
7
10
  config.paths['db/migrate'].expanded.each do |expanded_path|
@@ -1,3 +1,3 @@
1
1
  module ThecorePrintCommons
2
- VERSION = "#{`git describe --tags $(git rev-list --tags --max-count=1)`}"
2
+ VERSION = "#{`git describe --tags $(git rev-list --tags --max-count=1)`.chomp}"
3
3
  end
@@ -1,5 +1,5 @@
1
1
  require 'thecore_background_jobs'
2
- require 'cupsffi'
2
+ # require 'cupsffi'
3
3
  require "thecore_print_commons/engine"
4
4
 
5
5
  module ThecorePrintCommons
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_print_commons
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-03 00:00:00.000000000 Z
11
+ date: 2021-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thecore_background_jobs
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '2.0'
27
- - !ruby/object:Gem::Dependency
28
- name: cupsffi
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '0.1'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '0.1'
41
27
  description: Thecorized thecore_print_commons full description.
42
28
  email:
43
29
  - gabriele.tassoni@gmail.com
@@ -49,6 +35,14 @@ files:
49
35
  - README.md
50
36
  - Rakefile
51
37
  - app/assets/config/thecore_print_commons_manifest.js
38
+ - app/models/concerns/api/print_job.rb
39
+ - app/models/concerns/api/print_template.rb
40
+ - app/models/concerns/api/printer.rb
41
+ - app/models/concerns/rails_admin/print_job.rb
42
+ - app/models/concerns/rails_admin/print_template.rb
43
+ - app/models/concerns/rails_admin/printer.rb
44
+ - app/models/print_job.rb
45
+ - app/models/print_template.rb
52
46
  - app/models/printer.rb
53
47
  - app/workers/print_worker.rb
54
48
  - config/initializers/abilities_thecore_print_commons_concern.rb
@@ -59,9 +53,14 @@ files:
59
53
  - config/locales/telnet_print.it.yml
60
54
  - config/routes.rb
61
55
  - db/migrate/20160323152041_create_printers.rb
56
+ - db/migrate/20160407141529_create_print_jobs.rb
57
+ - db/migrate/20160407152547_add_fields_to_print_job.rb
62
58
  - db/migrate/20160413115407_add_temperature_to_printer.rb
59
+ - db/migrate/20160519093702_create_print_templates.rb
60
+ - db/migrate/20160519124051_add_print_template_id_to_printer.rb
63
61
  - db/migrate/20160629140729_add_default_to_printer.rb
64
- - db/migrate/20181106141858_add_remote_server_setting.rb
62
+ - db/migrate/20160629140730_add_port_to_printer.rb
63
+ - db/seeds.rb
65
64
  - lib/tasks/thecore_print_commons_tasks.rake
66
65
  - lib/thecore_print_commons.rb
67
66
  - lib/thecore_print_commons/engine.rb
@@ -85,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
84
  - !ruby/object:Gem::Version
86
85
  version: '0'
87
86
  requirements: []
88
- rubygems_version: 3.0.3
87
+ rubygems_version: 3.0.3.1
89
88
  signing_key:
90
89
  specification_version: 4
91
90
  summary: Thecorized thecore_print_commons
@@ -1,6 +0,0 @@
1
- class AddRemoteServerSetting < ActiveRecord::Migration[5.2]
2
- def up
3
- Settings.ns(:printer_commons).cups_server = 'localhost'
4
- end
5
- end
6
-