websin 0.0.2

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: 151a2fe6dab2e1bebfd8414a01b152fdf23d8b29
4
+ data.tar.gz: 4494f2962dac4fdbf764692caabc76a13a00baed
5
+ SHA512:
6
+ metadata.gz: 27fe791b9ae0c7677c8ee08572e71932c1fdc2db2514f319041ef6c287b0b79f0bd6422bc21be9e63801a244390f6b604736d41284d0384d3fcaf77cbb89a9b9
7
+ data.tar.gz: ba20c45839d97ef7e88ea14f857a82143e497b56f2ff678b387046d35d573ff694688b9c3a6d9e2616f09feaa5137bb1f80b8e76d7333a32cd9497de29ac25f2
data/.gitignore ADDED
@@ -0,0 +1,37 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /lib/bundler/man/
26
+
27
+ # for a library or gem, you might want to ignore these files since the code is
28
+ # intended to run in multiple environments; otherwise, check them in:
29
+ Gemfile.lock
30
+ .ruby-version
31
+ .ruby-gemset
32
+
33
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
+ .rvmrc
35
+
36
+ /views/
37
+ .sass-cache
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <http://unlicense.org>
data/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # websin
2
+
3
+ Simple gem for easy slim template coding. Uses sinatra and thin as server. Additionaly supports slim, sass, scss and coffee.
4
+
5
+ Usage:
6
+
7
+ ```bash
8
+ websin -d PATH_TO_VIEWS_DIR [-p PORT]
9
+ ```
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/websin ADDED
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ # encoding: utf-8
3
+
4
+ require 'slop'
5
+ require 'thin'
6
+ require_relative '../lib/websin.rb'
7
+
8
+ Slop.parse(help: true) do
9
+ banner "Usage: websin -d PATH_TO_VIEWS_DIR [-p PORT]"
10
+
11
+ on :d=, :dir=, 'relative or absolute path to views dir'
12
+ on :p=, :port=, 'port option for thin'
13
+
14
+ run do |opts, args|
15
+ raise RuntimeError, "dir option is required!" unless opts[:dir]
16
+ WebSin.set(:views, File.expand_path(opts[:dir], Dir.pwd))
17
+ dirname = File.expand_path('..', File.dirname(__FILE__))
18
+ Thin::Runner.
19
+ new(["start", "-p#{opts[:port] || 3000}", "-R#{dirname}/config.ru"]).
20
+ run!
21
+ end
22
+ end
23
+
data/config.ru ADDED
@@ -0,0 +1,3 @@
1
+ require File.expand_path('./lib/websin.rb', File.dirname(__FILE__))
2
+
3
+ run WebSin
@@ -0,0 +1,3 @@
1
+ module Websin
2
+ VERSION = "0.0.2"
3
+ end
data/lib/websin.rb ADDED
@@ -0,0 +1,45 @@
1
+ # encoding: utf-8
2
+
3
+ require 'sinatra/base'
4
+ require 'slim'
5
+ require 'coffee'
6
+ require 'sass'
7
+
8
+ class WebSin < Sinatra::Base
9
+ enable :sessions
10
+ enable :logging
11
+
12
+ set :show_exceptions, true
13
+
14
+ helpers do
15
+ def render_css_or_js _name, path
16
+ name = File.basename(_name, '.*')
17
+ Dir[File.join(settings.views, path, "#{name}.*")].each do |file|
18
+ ext = File.extname(file)
19
+ case ext
20
+ when '.sass', '.scss' then return Sass.compile_file(file)
21
+ when '.js', '.css' then return File.read(file)
22
+ when '.coffee'
23
+ return CoffeeScript.compile File.read(file)
24
+ else raise RuntimeError, "File #{File.join(path, _name)} no found!"
25
+ end
26
+ end
27
+ end
28
+ end
29
+
30
+ get '/*' do
31
+ ext = File.extname(params[:captures].first)
32
+ if params[:captures].first.end_with?('/')
33
+ path, name = params[:captures].first, 'index'
34
+ else
35
+ path, name = File.split(params[:captures].first)
36
+ end
37
+
38
+ case ext
39
+ when '.css', '.js' then render_css_or_js(name, path)
40
+ else slim :"#{path}/#{name[0] ? name : 'index'}"
41
+ end
42
+ end
43
+ end
44
+
45
+
data/websin.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'websin/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "websin"
8
+ spec.version = Websin::VERSION
9
+ spec.authors = ["Daniel Mrozek"]
10
+ spec.email = ["mrazicz@gmail.com"]
11
+ spec.description = %q{Simple gem for easy slim template coding}
12
+ spec.summary = %q{Simple gem for easy slim template coding}
13
+ spec.homepage = "https://github.com/mrazicz/websin"
14
+ spec.license = "Unlicense"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_dependency 'sinatra', '~> 1.0'
24
+ spec.add_dependency 'tilt', '~> 1.4'
25
+ spec.add_dependency 'thin'
26
+ spec.add_dependency 'slim'
27
+ spec.add_dependency 'sass'
28
+ spec.add_dependency 'coffee'
29
+ spec.add_dependency 'slop', '~> 3.5.0'
30
+ end
31
+
metadata ADDED
@@ -0,0 +1,182 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: websin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Daniel Mrozek
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-19 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.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sinatra
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '1.0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: tilt
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '1.4'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '1.4'
69
+ - !ruby/object:Gem::Dependency
70
+ name: thin
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: slim
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: sass
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: coffee
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: slop
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ~>
130
+ - !ruby/object:Gem::Version
131
+ version: 3.5.0
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ~>
137
+ - !ruby/object:Gem::Version
138
+ version: 3.5.0
139
+ description: Simple gem for easy slim template coding
140
+ email:
141
+ - mrazicz@gmail.com
142
+ executables:
143
+ - websin
144
+ extensions: []
145
+ extra_rdoc_files: []
146
+ files:
147
+ - .gitignore
148
+ - Gemfile
149
+ - LICENSE
150
+ - README.md
151
+ - Rakefile
152
+ - bin/websin
153
+ - config.ru
154
+ - lib/websin.rb
155
+ - lib/websin/version.rb
156
+ - websin.gemspec
157
+ homepage: https://github.com/mrazicz/websin
158
+ licenses:
159
+ - Unlicense
160
+ metadata: {}
161
+ post_install_message:
162
+ rdoc_options: []
163
+ require_paths:
164
+ - lib
165
+ required_ruby_version: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - '>='
168
+ - !ruby/object:Gem::Version
169
+ version: '0'
170
+ required_rubygems_version: !ruby/object:Gem::Requirement
171
+ requirements:
172
+ - - '>='
173
+ - !ruby/object:Gem::Version
174
+ version: '0'
175
+ requirements: []
176
+ rubyforge_project:
177
+ rubygems_version: 2.1.4
178
+ signing_key:
179
+ specification_version: 4
180
+ summary: Simple gem for easy slim template coding
181
+ test_files: []
182
+ has_rdoc: