sibyl 0.1.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 +52 -0
- data/Rakefile +37 -0
- data/app/assets/config/sibyl_manifest.js +2 -0
- data/app/assets/javascripts/sibyl/application.js +13 -0
- data/app/assets/javascripts/sibyl/editor.js +2 -0
- data/app/assets/stylesheets/sibyl/application.css +15 -0
- data/app/assets/stylesheets/sibyl/editor.css +4 -0
- data/app/controllers/sibyl/application_controller.rb +5 -0
- data/app/controllers/sibyl/editor_controller.rb +12 -0
- data/app/helpers/sibyl/application_helper.rb +4 -0
- data/app/helpers/sibyl/editor_helper.rb +4 -0
- data/app/jobs/sibyl/application_job.rb +4 -0
- data/app/mailers/sibyl/application_mailer.rb +6 -0
- data/app/models/sibyl/application_record.rb +5 -0
- data/app/views/layouts/sibyl/application.html.erb +14 -0
- data/app/views/sibyl/editor/edit.html.erb +1 -0
- data/app/views/sibyl/editor/index.html.erb +2 -0
- data/config/routes.rb +4 -0
- data/lib/sibyl/engine.rb +5 -0
- data/lib/sibyl/version.rb +3 -0
- data/lib/sibyl.rb +5 -0
- data/lib/tasks/sibyl_tasks.rake +4 -0
- metadata +101 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 38a28e73c400dd1afbf375f79fd86fe60f7e1600
|
4
|
+
data.tar.gz: 869492e01925afd187f5c739d903c50ef191e855
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ddee4747fe2a9dbd08accc7dfce1321e9c01f88df0d0eb1425f1519c242db55b1f6e6f8b688344a17b887d2450d84deea8621027bf5e92f5785f253bd29cfdf0
|
7
|
+
data.tar.gz: c63f29f19a38d42c2d1e0077631317ff121ed72432e7db3ed23496dad405995601172055f830f1aaf6501b5fd590877e7f9d8f72956333cf9938ca296c0ae35d
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2016 Janet jeffus
|
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,52 @@
|
|
1
|
+
<img src="graphics/sibyl_logo.png" alt="Sibyl Gem" style="width: 600px;"
|
2
|
+
width="600" />
|
3
|
+
|
4
|
+
An important moment in the [hero's
|
5
|
+
journey](http://www.thewritersjourney.com/hero's_journey.htm) is the meeting
|
6
|
+
with the mentor. This person usually gives the hero something important,
|
7
|
+
whether it's an item or just some good advice. This gem is a DIY kit to
|
8
|
+
fill this need in someone's life. In our modern world what holds greater
|
9
|
+
terror than filling out an arcane and mysterious form? At the end of
|
10
|
+
these labrinths lies the treasure of some life changing momentous
|
11
|
+
ocassion. What so many need in this world is someone who will help them
|
12
|
+
along their journey. Do you have what it takes to answer their call and
|
13
|
+
become a digital sibyl? Read on to find out!
|
14
|
+
|
15
|
+
## Installation
|
16
|
+
Add this line to your application's Gemfile:
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
gem 'sibyl'
|
20
|
+
```
|
21
|
+
|
22
|
+
And then execute:
|
23
|
+
```bash
|
24
|
+
$ bundle
|
25
|
+
```
|
26
|
+
|
27
|
+
## Usage
|
28
|
+
|
29
|
+
|
30
|
+
## Contributing
|
31
|
+
|
32
|
+
Please help on this project! I'm a "good enough" Ruby on Rails
|
33
|
+
programmer and could definitely use the help. Work on whatever you think
|
34
|
+
needs work and create a pull request. It's that simple!
|
35
|
+
|
36
|
+
## License
|
37
|
+
|
38
|
+
All portions Copyright (C) 2016 Janet Jeffus
|
39
|
+
|
40
|
+
This program is free software: you can redistribute it and/or modify
|
41
|
+
it under the terms of the GNU General Public License as published by
|
42
|
+
the Free Software Foundation, either version 3 of the License, or
|
43
|
+
(at your option) any later version.
|
44
|
+
|
45
|
+
This program is distributed in the hope that it will be useful,
|
46
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
47
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
48
|
+
GNU General Public License for more details.
|
49
|
+
|
50
|
+
You should have received a copy of the GNU General Public License
|
51
|
+
along with this program. If not, see
|
52
|
+
<http://www.gnu.org/licenses/>.
|
data/Rakefile
ADDED
@@ -0,0 +1,37 @@
|
|
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 = 'Sibyl'
|
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", __FILE__)
|
18
|
+
load 'rails/tasks/engine.rake'
|
19
|
+
|
20
|
+
|
21
|
+
load 'rails/tasks/statistics.rake'
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
require 'bundler/gem_tasks'
|
26
|
+
|
27
|
+
require 'rake/testtask'
|
28
|
+
|
29
|
+
Rake::TestTask.new(:test) do |t|
|
30
|
+
t.libs << 'lib'
|
31
|
+
t.libs << 'test'
|
32
|
+
t.pattern = 'test/**/*_test.rb'
|
33
|
+
t.verbose = false
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
task default: :test
|
@@ -0,0 +1,13 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// compiled file. JavaScript code in this file should be added after the last require_* statement.
|
9
|
+
//
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
11
|
+
// about supported directives.
|
12
|
+
//
|
13
|
+
//= require_tree .
|
@@ -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,14 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Sibyl</title>
|
5
|
+
<%= stylesheet_link_tag "sibyl/application", media: "all" %>
|
6
|
+
<%= javascript_include_tag "sibyl/application" %>
|
7
|
+
<%= csrf_meta_tags %>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<%= yield %>
|
12
|
+
|
13
|
+
</body>
|
14
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
<h1><%= @root %></h1>
|
data/config/routes.rb
ADDED
data/lib/sibyl/engine.rb
ADDED
data/lib/sibyl.rb
ADDED
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sibyl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Janet jeffus
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-10-31 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: 5.0.0
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 5.0.0.1
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 5.0.0
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 5.0.0.1
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: sqlite3
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '0'
|
40
|
+
type: :development
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - ">="
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '0'
|
47
|
+
description: A super easy way to fill out a PDF form from a Rails application.
|
48
|
+
email:
|
49
|
+
- jjeffus@gmail.com
|
50
|
+
executables: []
|
51
|
+
extensions: []
|
52
|
+
extra_rdoc_files: []
|
53
|
+
files:
|
54
|
+
- MIT-LICENSE
|
55
|
+
- README.md
|
56
|
+
- Rakefile
|
57
|
+
- app/assets/config/sibyl_manifest.js
|
58
|
+
- app/assets/javascripts/sibyl/application.js
|
59
|
+
- app/assets/javascripts/sibyl/editor.js
|
60
|
+
- app/assets/stylesheets/sibyl/application.css
|
61
|
+
- app/assets/stylesheets/sibyl/editor.css
|
62
|
+
- app/controllers/sibyl/application_controller.rb
|
63
|
+
- app/controllers/sibyl/editor_controller.rb
|
64
|
+
- app/helpers/sibyl/application_helper.rb
|
65
|
+
- app/helpers/sibyl/editor_helper.rb
|
66
|
+
- app/jobs/sibyl/application_job.rb
|
67
|
+
- app/mailers/sibyl/application_mailer.rb
|
68
|
+
- app/models/sibyl/application_record.rb
|
69
|
+
- app/views/layouts/sibyl/application.html.erb
|
70
|
+
- app/views/sibyl/editor/edit.html.erb
|
71
|
+
- app/views/sibyl/editor/index.html.erb
|
72
|
+
- config/routes.rb
|
73
|
+
- lib/sibyl.rb
|
74
|
+
- lib/sibyl/engine.rb
|
75
|
+
- lib/sibyl/version.rb
|
76
|
+
- lib/tasks/sibyl_tasks.rake
|
77
|
+
homepage: https://github.com/astaria/sibyl
|
78
|
+
licenses:
|
79
|
+
- GPL
|
80
|
+
metadata: {}
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 2.5.1
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: An MVC Rails engine for filling out PDFs.
|
101
|
+
test_files: []
|