opulent-sinatra 1.0.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a4c1e7ee6822a8146423b585b1ecb85d763eaab8
4
+ data.tar.gz: 1a15cd05fb2368bc6c791575553456e412247408
5
+ SHA512:
6
+ metadata.gz: 7f754efcc0cd4117caf68dcddc2445250d50fb1f91ec14029cf5f43f52fbfa2e5597d5c1261bc14825f268d91b4c8fde272625979acd3a3359e240e75b879138
7
+ data.tar.gz: 373d27416d33808426d016f927b3d94b3b25ee913790202b549b3895e5d961695e3fe42ea7b987bee104cdd7f339a839535882f0fa2f625617cbc922e95de34f
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.1
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Alex Grozav
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,57 @@
1
+ # Opulent::Sinatra
2
+
3
+ Opulent is an Intelligent Web Templating Engine created for extremely fast and efficient Web Development. Based on the idea of lightweight and reusable Web Components, Opulent greatly increases your development speed for any project.
4
+
5
+ Opulent has a beautiful, minimalistic syntax: no tags, indentation based, optional brackets, inline text, inline children and in page definitions.
6
+
7
+ [Read more](https://github.com/opulent/opulent)
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'opulent-sinatra'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install opulent-sinatra
24
+
25
+ ## Usage
26
+
27
+ First of all, create `layout.op` and `index.op` inside of your views folder.
28
+
29
+ Render your views with Opulent inside of Sinatra by simply using:
30
+
31
+ ```ruby
32
+ get '/' do
33
+ opulent :index
34
+ end
35
+ ```
36
+
37
+ You can specify the layout file and pass a block into the rendered page the following way:
38
+
39
+ ```ruby
40
+ get '/' do
41
+ opulent(:index, layout: :layout){}
42
+ end
43
+ ```
44
+
45
+ ## Development
46
+
47
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
48
+
49
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
50
+
51
+ ## Contributing
52
+
53
+ 1. Fork it ( https://github.com/[my-github-username]/opulent-sinatra/fork )
54
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
55
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
56
+ 4. Push to the branch (`git push origin my-new-feature`)
57
+ 5. Create a new Pull Request
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "opulent/sinatra"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,84 @@
1
+ require 'opulent'
2
+ require 'opulent/sinatra/version'
3
+
4
+ # @Sinatra
5
+ module Sinatra
6
+ # @Templates
7
+ module Templates
8
+ def opulent(template, options = {}, locals = {}, &block)
9
+ render_opulent :op, template, options, locals, &block
10
+ end
11
+
12
+ def render_opulent(engine, data, options = {}, locals = {}, &block)
13
+ # merge app-level options
14
+ engine_options = settings.respond_to?(engine) ? settings.send(engine) : {}
15
+ options.merge!(engine_options) { |_key, v1, _v2| v1 }
16
+
17
+ # extract generic options
18
+ locals = options.delete(:locals) || locals || {}
19
+ views = options.delete(:views) || settings.views || './views'
20
+ layout = options[:layout]
21
+ layout = false if layout.nil? && options.include?(:layout)
22
+ eat_errors = layout.nil?
23
+ if layout.nil? ||
24
+ (layout == true && engine_options[:layout] != false)
25
+ layout = engine_options[:layout]
26
+ end
27
+ layout = @default_layout if layout.nil? || layout == true
28
+ layout_options = options.delete(:layout_options) || {}
29
+ content_type = options.delete(:content_type) ||
30
+ options.delete(:default_content_type)
31
+ layout_engine = options.delete(:layout_engine) || engine
32
+ scope = options.delete(:scope) || self
33
+ options.delete(:layout)
34
+
35
+ # set some defaults
36
+ options[:outvar] ||= '@_out_buf'
37
+ options[:default_encoding] ||= settings.default_encoding
38
+
39
+ # compile and render template
40
+ begin
41
+ layout_was = @default_layout
42
+ @default_layout = false
43
+
44
+ if layout
45
+ layout_options = options.merge(
46
+ views: views,
47
+ layout: false,
48
+ eat_errors: eat_errors,
49
+ scope: scope
50
+ ).merge!(layout_options)
51
+
52
+ layout_template = compile_template(
53
+ layout_engine,
54
+ layout,
55
+ layout_options,
56
+ views
57
+ )
58
+ options[:def] = layout_template.def
59
+ end
60
+
61
+ template = compile_template(
62
+ engine,
63
+ data,
64
+ options,
65
+ views
66
+ )
67
+
68
+ output = template.render(scope, locals, &block)
69
+ ensure
70
+ @default_layout = layout_was
71
+ end
72
+
73
+ # render layout
74
+ if layout
75
+ catch(:layout_missing) do
76
+ return layout_template.render(scope, locals) { output }
77
+ end
78
+ end
79
+
80
+ output.extend(ContentTyped).content_type = content_type if content_type
81
+ output
82
+ end
83
+ end
84
+ end
@@ -0,0 +1,5 @@
1
+ module Opulent
2
+ module Sinatra
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'opulent/sinatra/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "opulent-sinatra"
8
+ spec.version = Opulent::Sinatra::VERSION
9
+ spec.authors = ["Alex Grozav"]
10
+ spec.email = ["alex@grozav.com"]
11
+
12
+ spec.summary = %q{Intelligent Templating Engine for Creative Web Developers.}
13
+ spec.description = %q{Opulent is an intelligent Templating Engine created to speed up web development through fast rendering and custom web component definitions.}
14
+ spec.homepage = "http://opulent.io"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.8"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ end
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: opulent-sinatra
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Alex Grozav
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-12-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.8'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Opulent is an intelligent Templating Engine created to speed up web development
42
+ through fast rendering and custom web component definitions.
43
+ email:
44
+ - alex@grozav.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - ".rspec"
51
+ - ".travis.yml"
52
+ - CODE_OF_CONDUCT.md
53
+ - Gemfile
54
+ - LICENSE.md
55
+ - README.md
56
+ - Rakefile
57
+ - bin/console
58
+ - bin/setup
59
+ - lib/opulent/sinatra.rb
60
+ - lib/opulent/sinatra/version.rb
61
+ - opulent-sinatra.gemspec
62
+ homepage: http://opulent.io
63
+ licenses:
64
+ - MIT
65
+ metadata: {}
66
+ post_install_message:
67
+ rdoc_options: []
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ requirements: []
81
+ rubyforge_project:
82
+ rubygems_version: 2.4.6
83
+ signing_key:
84
+ specification_version: 4
85
+ summary: Intelligent Templating Engine for Creative Web Developers.
86
+ test_files: []