cenit 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2cd593043634f21dfc19b5fabfb699630875349b
4
+ data.tar.gz: aa487e657e0e21efbca2f11c1553322e3b1c694d
5
+ SHA512:
6
+ metadata.gz: daa81dc7cad19dc0943ce0c904ebfe8a91e9c03113069dc6f615bd6927d97e16234610519d6108205c5c2ab11998b3a7e276284e7c80be2522b708b96ea61acb
7
+ data.tar.gz: 6584900671bf9efd6be796e9839b1c7bb08c5e6c133a14c6a07adba1699a255b8faeb71706cc5ed7ad19da1485b153eae2a2e6ebe2017bde72d3d8c9aa5f3e09
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2018 Maikel Arcia Carrazana
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/Rakefile ADDED
@@ -0,0 +1,22 @@
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 = 'Cenit'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('lib/**/*.rb')
14
+ end
15
+
16
+
17
+
18
+
19
+
20
+
21
+ Bundler::GemHelper.install_tasks
22
+
@@ -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 styles
10
+ * defined in the other CSS/SCSS files in this directory. It is generally better to create a new
11
+ * file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
@@ -0,0 +1,9 @@
1
+ module Cenit
2
+ class Controller < ActionController::Base
3
+ protect_from_forgery with: :exception
4
+
5
+ def hello
6
+
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,4 @@
1
+ module Cenit
2
+ module Helper
3
+ end
4
+ end
@@ -0,0 +1,71 @@
1
+ <div style="background-color:#efefef; padding-top: 15px; padding-bottom: 15px;">
2
+ <table border="0" cellpadding="0" cellspacing="0" height="80%" width="46%" id="bodyTable" align="center" style="background-color:white;">
3
+ <tr>
4
+ <td align="center" valign="top">
5
+ <table border="0" cellpadding="10" cellspacing="0" width="600" id="emailContainer">
6
+ <tr>
7
+ <td align="center" valign="top">
8
+
9
+ <div style="background: #555;color: white; padding: 10px; text-align:center">
10
+ <div style="font-size: 24px;font-weight: bolder">
11
+ If you have <span style="color: rgb(234, 116, 0);">evolving</span> integration needs
12
+ </div>
13
+ <div style="font-size: 20px;">
14
+ beyond pre-build point to point integrations
15
+ </div>
16
+ </div>
17
+
18
+ <div style="text-align: left">
19
+ <p>
20
+ Welcome,
21
+ </p>
22
+ <p>
23
+ Thanks for your interest in Cenit IO! These is the <strong>very early beginning</strong> of Cenit as
24
+ a mountable engine. No functionality is yet incorporated but they will come soon. Meanwhile let us
25
+ show you a little about Cenit.
26
+ </p>
27
+ <p>
28
+ Cenit IO <a href="https://cenit.io/">https://cenit.io</a> is a business integration platform to tackle
29
+ evolving integration needs. It makes possible a complete business automation of all operational
30
+ processes in a company, connecting between organization's on-premises infrastructure and cloud
31
+ provider services.
32
+ </p>
33
+ <p>
34
+ Cenit is easy to use for non-specialists to solve common point-to-point integrations, but also
35
+ powerful, with access to the underlying platform capabilities, that allows to deliver heavy duty and
36
+ systematic integrations with specialists ready to support evolving business requirements. If you need
37
+ we can bring you custom development services with our integration specialists.
38
+ </p>
39
+ <p>
40
+ Cenit allows the creation of custom data pipelines to process, store and moves data between
41
+ applications using APIs, that may involve multiple formats (JSON, XML, ASN), standard definitions
42
+ (REST, SOAP, GraphQL, RPC, EDI) and protocol connectors (HTTP(S), FTP, SFTP, SCP) between two or more
43
+ endpoints.
44
+ </p>
45
+ <p>
46
+ It has prepackaged integration contents named “collections”, that users can configure, customize,
47
+ extend and deploy. Its are also possible to share at different levels of visibility across tenants.
48
+ There are now over 270 pre-built shared collections ready to use.
49
+ </p>
50
+ <p>
51
+ Cenit is a general propose integration platform specialized in B2B integrations as the strategy to
52
+ grow (marketplaces, fulfillment solutions, marketing communication, ERP, ecommerce platforms,
53
+ Electronic Data Interchange, etc). It will gradually be extended to other specific domains.
54
+ </p>
55
+ <p>
56
+ Until we set ready this engine to bring all the power of cenit to your rails apps visit our production
57
+ environment at <a href="https://cenit.io">https://cenit.io</a> and try it for free.
58
+ </p>
59
+ <p>
60
+ <br/><a href="https://www.linkedin.com/company/cenit-io">https://linkedin.com/company/cenit-io</a>
61
+ </p>
62
+ </div>
63
+
64
+
65
+ </td>
66
+ </tr>
67
+ </table>
68
+ </td>
69
+ </tr>
70
+ </table>
71
+ </div>
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>CenitEngine</title>
5
+ <%= stylesheet_link_tag "cenit/application", media: "all" %>
6
+ <%= javascript_include_tag "cenit/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,2 @@
1
+
2
+ # Nothing here...
@@ -0,0 +1,3 @@
1
+
2
+ en:
3
+ hello: "Hello world"
data/config/routes.rb ADDED
@@ -0,0 +1,4 @@
1
+ Cenit::Engine.routes.draw do
2
+
3
+ get '/', to: '#hello'
4
+ end
data/lib/cenit.rb ADDED
@@ -0,0 +1,5 @@
1
+ require 'cenit/version'
2
+ require 'cenit/engine'
3
+
4
+ module Cenit
5
+ end
@@ -0,0 +1,9 @@
1
+ module Cenit
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Cenit
4
+
5
+ initializer :assets do |config|
6
+ Rails.application.config.assets.precompile += %w( cenit/**/* )
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ module Cenit
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :cenit do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cenit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Maikel Arcia Carrazana
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-12-20 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: 4.2.10
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.2.10
27
+ description:
28
+ email:
29
+ - macarci@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - MIT-LICENSE
35
+ - Rakefile
36
+ - app/assets/stylesheets/cenit/application.css
37
+ - app/controllers/cenit/controller.rb
38
+ - app/helpers/cenit/helper.rb
39
+ - app/views/cenit/hello.html.erb
40
+ - app/views/layouts/cenit/application.html.erb
41
+ - config/initializers/cenit.rb
42
+ - config/locales/en.yml
43
+ - config/routes.rb
44
+ - lib/cenit.rb
45
+ - lib/cenit/engine.rb
46
+ - lib/cenit/version.rb
47
+ - lib/tasks/cenit_tasks.rake
48
+ homepage: https://github.com/cenit-io/cenit-engine
49
+ licenses:
50
+ - MIT
51
+ metadata: {}
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubyforge_project:
68
+ rubygems_version: 2.6.14
69
+ signing_key:
70
+ specification_version: 4
71
+ summary: A mountable engine with the power of Cenit.
72
+ test_files: []