thecore_download_pdf_commons 0.1.1
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 +29 -0
- data/Rakefile +32 -0
- data/app/assets/config/thecore_download_pdf_commons_manifest.js +0 -0
- data/app/assets/javascripts/thecore_download_pdf_commons/index.js +0 -0
- data/app/assets/stylesheets/thecore_download_pdf_commons/index.css +0 -0
- data/config/initializers/abilities_thecore_download_pdf_commons_concern.rb +23 -0
- data/config/initializers/after_initialize_for_thecore_download_pdf_commons.rb +5 -0
- data/config/locales/thecore_download_pdf_commons.en.yml +8 -0
- data/config/locales/thecore_download_pdf_commons.it.yml +8 -0
- data/config/routes.rb +2 -0
- data/lib/tasks/thecore_download_pdf_commons_tasks.rake +4 -0
- data/lib/thecore_download_pdf_commons.rb +41 -0
- data/lib/thecore_download_pdf_commons/engine.rb +15 -0
- data/lib/thecore_download_pdf_commons/version.rb +3 -0
- metadata +101 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 95cc5a3d548cbb893065a5590dd1eb062cbed3136244ffc41c82f0e0647a4446
|
4
|
+
data.tar.gz: 3abf6d0d50d0e1766cb57e3757cdbafffc56308d0fcca4f5dcbfb8c9f04cf16b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c4ccd129fb5c65e838306d5eb190b953431b5f3a63f253ec7447d8a2b3d699c62fc1698fe4553c06fee775ccdcb91ab730ef664d53cb9b0e459abccee983a1e8
|
7
|
+
data.tar.gz: 05a31b3a7aee13885ff5394b0da03531e54d1ac01aaff4f62fba1b9c807133bd4f5bdc6f908515ead8853795d8a05456b85efe50aa6b8ce3ac69c94a6740d034
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2019 Gabriele Tassoni
|
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,29 @@
|
|
1
|
+
# ThecoreDownloadPdfCommons
|
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 'thecore_download_pdf_commons'
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
```bash
|
16
|
+
$ bundle
|
17
|
+
```
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
```bash
|
21
|
+
$ gem install thecore_download_pdf_commons
|
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).
|
29
|
+
# thecore_download_pdf_commons
|
data/Rakefile
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'ThecoreDownloadPdfCommons'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('README.md')
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
+
end
|
16
|
+
|
17
|
+
APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
|
18
|
+
load 'rails/tasks/engine.rake'
|
19
|
+
|
20
|
+
load 'rails/tasks/statistics.rake'
|
21
|
+
|
22
|
+
require 'bundler/gem_tasks'
|
23
|
+
|
24
|
+
require 'rake/testtask'
|
25
|
+
|
26
|
+
Rake::TestTask.new(:test) do |t|
|
27
|
+
t.libs << 'test'
|
28
|
+
t.pattern = 'test/**/*_test.rb'
|
29
|
+
t.verbose = false
|
30
|
+
end
|
31
|
+
|
32
|
+
task default: :test
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,23 @@
|
|
1
|
+
|
2
|
+
require 'active_support/concern'
|
3
|
+
|
4
|
+
module ThecoreDownloadPdfCommonAbilitiesConcern
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
included do
|
7
|
+
def thecore_download_pdf_commons_abilities user
|
8
|
+
if user
|
9
|
+
# if the user is logged in, it can do certain tasks regardless his role
|
10
|
+
if user.admin?
|
11
|
+
# if the user is an admin, it can do a lot of things, usually
|
12
|
+
end
|
13
|
+
|
14
|
+
if user.has_role? :role
|
15
|
+
# a specific role, brings specific powers
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# include the extension
|
23
|
+
TheCoreAbilities.send(:include, ThecoreDownloadPdfCommonAbilitiesConcern)
|
data/config/routes.rb
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
require "thecore_download_pdf_commons/engine"
|
2
|
+
|
3
|
+
require 'thecore'
|
4
|
+
require "prawn"
|
5
|
+
require "prawn/table"
|
6
|
+
module ThecoreDownloadPdfCommons
|
7
|
+
# Your code goes here...
|
8
|
+
def self.table header, footer, rows, table_headers, filename
|
9
|
+
pdf = Prawn::Document.new page_layout: :landscape, page_size: "A4"
|
10
|
+
pdf.repeat :all do
|
11
|
+
# Header
|
12
|
+
pdf.bounding_box [pdf.bounds.left, pdf.bounds.top], width: pdf.bounds.width do
|
13
|
+
pdf.float do
|
14
|
+
pdf.text (header[:left] || ""), size: 8, align: :left
|
15
|
+
end
|
16
|
+
pdf.float do
|
17
|
+
pdf.text (header[:center] || ""), size: 8, align: :center
|
18
|
+
end
|
19
|
+
pdf.text (header[:right] || ""), size: 8, align: :right
|
20
|
+
end
|
21
|
+
# Footer
|
22
|
+
pdf.bounding_box [pdf.bounds.left, pdf.bounds.bottom + 18], width: pdf.bounds.width do
|
23
|
+
pdf.float do
|
24
|
+
pdf.text (footer[:left] || ""), size: 8, align: :left
|
25
|
+
end
|
26
|
+
pdf.float do
|
27
|
+
pdf.text (footer[:center] || ""), size: 8, align: :center
|
28
|
+
end
|
29
|
+
pdf.text (footer[:right] || ""), size: 8, align: :right
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
# Create another box that is placed on the page after our footer is
|
34
|
+
pdf.bounding_box [pdf.bounds.left, pdf.bounds.top-8], width: pdf.bounds.width, height: pdf.bounds.height - 16 do
|
35
|
+
#Generate the rest of your PDF content here
|
36
|
+
pdf.table rows.unshift(table_headers), header: true do |table| table.row(0).font_style = :bold end
|
37
|
+
end
|
38
|
+
|
39
|
+
return pdf.render, {filename: "#{filename}.pdf", type: "application/pdf"}
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module ThecoreDownloadPdfCommons
|
2
|
+
class Engine < ::Rails::Engine
|
3
|
+
|
4
|
+
config.assets.precompile += %w( thecore_download_pdf_commons/index.js thecore_download_pdf_commons/index.css )
|
5
|
+
initializer 'thecore_download_pdf_commons.add_to_migrations' do |app|
|
6
|
+
unless app.root.to_s.match root.to_s
|
7
|
+
# APPEND TO MAIN APP MIGRATIONS FROM THIS GEM
|
8
|
+
config.paths['db/migrate'].expanded.each do |expanded_path|
|
9
|
+
app.config.paths['db/migrate'] << expanded_path
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: thecore_download_pdf_commons
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Gabriele Tassoni
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-09-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: thecore
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.6'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: prawn
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.2'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.2'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: prawn-table
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0.2'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0.2'
|
55
|
+
description: This component sends back to the browser a pdf, in order to let it be
|
56
|
+
downloaded.
|
57
|
+
email:
|
58
|
+
- gabriele.tassoni@gmail.com
|
59
|
+
executables: []
|
60
|
+
extensions: []
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- MIT-LICENSE
|
64
|
+
- README.md
|
65
|
+
- Rakefile
|
66
|
+
- app/assets/config/thecore_download_pdf_commons_manifest.js
|
67
|
+
- app/assets/javascripts/thecore_download_pdf_commons/index.js
|
68
|
+
- app/assets/stylesheets/thecore_download_pdf_commons/index.css
|
69
|
+
- config/initializers/abilities_thecore_download_pdf_commons_concern.rb
|
70
|
+
- config/initializers/after_initialize_for_thecore_download_pdf_commons.rb
|
71
|
+
- config/locales/thecore_download_pdf_commons.en.yml
|
72
|
+
- config/locales/thecore_download_pdf_commons.it.yml
|
73
|
+
- config/routes.rb
|
74
|
+
- lib/tasks/thecore_download_pdf_commons_tasks.rake
|
75
|
+
- lib/thecore_download_pdf_commons.rb
|
76
|
+
- lib/thecore_download_pdf_commons/engine.rb
|
77
|
+
- lib/thecore_download_pdf_commons/version.rb
|
78
|
+
homepage: https://github.com/gabrieletassoni/thecore_download_pdf_commons
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
metadata: {}
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubygems_version: 3.0.1
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: Integration for Thecore with Prawn
|
101
|
+
test_files: []
|