sinatra-stagehand 0.1.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 +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.bowerrc +1 -0
- data/.coveralls.yml +3 -0
- data/.env +1 -0
- data/.gitignore +8 -0
- data/.travis.yml +6 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +113 -0
- data/Guardfile +11 -0
- data/README.md +37 -0
- data/Rakefile +8 -0
- data/assets/coffee/application.coffee +2 -0
- data/assets/less/application.less +3 -0
- data/bower.json +9 -0
- data/certs/jbellone.pem +32 -0
- data/config.ru +5 -0
- data/config/environment.rb +14 -0
- data/lib/stagehand.rb +15 -0
- data/lib/stagehand/application.rb +17 -0
- data/lib/stagehand/version.rb +3 -0
- data/public/humans.txt +0 -0
- data/public/robots.txt +0 -0
- data/sinatra-stagehand.gemspec +28 -0
- data/test/test_helper.rb +4 -0
- data/views/index.haml +1 -0
- data/views/layout.haml +9 -0
- metadata +198 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e4fc0fe93cfccbc27c170488c701f34e56c711c2
|
4
|
+
data.tar.gz: 0d3106f75003495a8f41057fa3a6661d45da1a3a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 3bbcc3c9d0c78609f27dc5d98b0f51317762d43ea351fe2d9add3bc2ac638b5aba77c33becfa839b824436874f21516fb04b8ddc4ed5ec9c0c2e11a8a4fa925d
|
7
|
+
data.tar.gz: 2d7b7109e717efb7fb03829ce552300de651be9b9dc1de55f21b04585d93cbd9dc7eab6fb4ae79eea28f1f06395cf7b81eb43fe4590cb802752415cecf049911
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
Binary file
|
data/.bowerrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
{ "directory": "vendor/assets" }
|
data/.coveralls.yml
ADDED
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
sinatra-stagehand (0.1.0)
|
5
|
+
coffee-script (~> 2.2)
|
6
|
+
dotenv (~> 0.9)
|
7
|
+
haml (~> 4.0)
|
8
|
+
less (~> 2.3)
|
9
|
+
sinatra (~> 1.3)
|
10
|
+
sinatra-asset-pipeline (~> 0.3)
|
11
|
+
|
12
|
+
GEM
|
13
|
+
remote: http://rubygems.org/
|
14
|
+
specs:
|
15
|
+
celluloid (0.15.2)
|
16
|
+
timers (~> 1.1.0)
|
17
|
+
coderay (1.1.0)
|
18
|
+
coffee-script (2.2.0)
|
19
|
+
coffee-script-source
|
20
|
+
execjs
|
21
|
+
coffee-script-source (1.6.3)
|
22
|
+
commonjs (0.2.7)
|
23
|
+
coveralls (0.7.0)
|
24
|
+
multi_json (~> 1.3)
|
25
|
+
rest-client
|
26
|
+
simplecov (>= 0.7)
|
27
|
+
term-ansicolor
|
28
|
+
thor
|
29
|
+
docile (1.1.2)
|
30
|
+
dotenv (0.9.0)
|
31
|
+
execjs (2.0.2)
|
32
|
+
ffi (1.9.3)
|
33
|
+
formatador (0.2.4)
|
34
|
+
guard (2.3.0)
|
35
|
+
formatador (>= 0.2.4)
|
36
|
+
listen (~> 2.1)
|
37
|
+
lumberjack (~> 1.0)
|
38
|
+
pry (>= 0.9.12)
|
39
|
+
thor (>= 0.18.1)
|
40
|
+
guard-minitest (2.2.0)
|
41
|
+
guard (~> 2.0)
|
42
|
+
minitest (>= 3.0)
|
43
|
+
haml (4.0.5)
|
44
|
+
tilt
|
45
|
+
hike (1.2.3)
|
46
|
+
less (2.3.3)
|
47
|
+
commonjs (~> 0.2.6)
|
48
|
+
listen (2.4.0)
|
49
|
+
celluloid (>= 0.15.2)
|
50
|
+
rb-fsevent (>= 0.9.3)
|
51
|
+
rb-inotify (>= 0.9)
|
52
|
+
lumberjack (1.0.4)
|
53
|
+
method_source (0.8.2)
|
54
|
+
mime-types (2.1)
|
55
|
+
minitest (5.2.2)
|
56
|
+
multi_json (1.6.1)
|
57
|
+
pry (0.9.12.6)
|
58
|
+
coderay (~> 1.0)
|
59
|
+
method_source (~> 0.8)
|
60
|
+
slop (~> 3.4)
|
61
|
+
rack (1.5.2)
|
62
|
+
rack-protection (1.5.2)
|
63
|
+
rack
|
64
|
+
rake (10.1.1)
|
65
|
+
rb-fsevent (0.9.4)
|
66
|
+
rb-inotify (0.9.3)
|
67
|
+
ffi (>= 0.5.0)
|
68
|
+
rest-client (1.6.7)
|
69
|
+
mime-types (>= 1.16)
|
70
|
+
sass (3.2.14)
|
71
|
+
simplecov (0.8.2)
|
72
|
+
docile (~> 1.1.0)
|
73
|
+
multi_json
|
74
|
+
simplecov-html (~> 0.8.0)
|
75
|
+
simplecov-html (0.8.0)
|
76
|
+
sinatra (1.4.4)
|
77
|
+
rack (~> 1.4)
|
78
|
+
rack-protection (~> 1.4)
|
79
|
+
tilt (~> 1.3, >= 1.3.4)
|
80
|
+
sinatra-asset-pipeline (0.3.3)
|
81
|
+
coffee-script
|
82
|
+
rake
|
83
|
+
sass
|
84
|
+
sinatra
|
85
|
+
sprockets
|
86
|
+
sprockets-helpers
|
87
|
+
sprockets-sass
|
88
|
+
slop (3.4.7)
|
89
|
+
sprockets (2.10.1)
|
90
|
+
hike (~> 1.2)
|
91
|
+
multi_json (~> 1.0)
|
92
|
+
rack (~> 1.0)
|
93
|
+
tilt (~> 1.1, != 1.3.0)
|
94
|
+
sprockets-helpers (1.1.0)
|
95
|
+
sprockets (~> 2.0)
|
96
|
+
sprockets-sass (1.0.2)
|
97
|
+
sprockets (~> 2.0)
|
98
|
+
tilt (~> 1.1)
|
99
|
+
term-ansicolor (1.2.2)
|
100
|
+
tins (~> 0.8)
|
101
|
+
thor (0.18.1)
|
102
|
+
tilt (1.4.1)
|
103
|
+
timers (1.1.0)
|
104
|
+
tins (0.13.1)
|
105
|
+
|
106
|
+
PLATFORMS
|
107
|
+
ruby
|
108
|
+
|
109
|
+
DEPENDENCIES
|
110
|
+
coveralls
|
111
|
+
guard-minitest
|
112
|
+
minitest
|
113
|
+
sinatra-stagehand!
|
data/Guardfile
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
guard :minitest do
|
2
|
+
# with Minitest::Unit
|
3
|
+
watch(%r{^test/(.*)\/?test_(.*)\.rb$})
|
4
|
+
watch(%r{^lib/(.*/)?([^/]+)\.rb$}) { |m| "test/#{m[1]}test_#{m[2]}.rb" }
|
5
|
+
watch(%r{^test/test_helper\.rb$}) { 'test' }
|
6
|
+
|
7
|
+
# with Minitest::Spec
|
8
|
+
# watch(%r{^spec/(.*)_spec\.rb$})
|
9
|
+
# watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
|
10
|
+
# watch(%r{^spec/spec_helper\.rb$}) { 'spec' }
|
11
|
+
end
|
data/README.md
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
Sinatra Stagehand
|
2
|
+
=================
|
3
|
+
Sinatra with Bootstrap, jQuery, Haml, LESS and Sprockets!
|
4
|
+
|
5
|
+
## Requirements
|
6
|
+
* [Node][6]
|
7
|
+
* [Ruby][7] (>= 2.0.0)
|
8
|
+
|
9
|
+
# Out of the Box
|
10
|
+
* Sinatra
|
11
|
+
* [Bower][1]
|
12
|
+
* [Twitter Bootstrap][2]
|
13
|
+
* [jQuery][3]
|
14
|
+
* [Sprockets][4] (Asset Pipeline)
|
15
|
+
* [Font Awesome][5]
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
To get a simple application setup and ready for hacking merely checkout and run
|
19
|
+
a few commands to setup the dependencies.
|
20
|
+
|
21
|
+
$ git clone https://github.com/johnbellone/sinatra-stagehand
|
22
|
+
$ cd sinatra-stagehand
|
23
|
+
$ bundle install --binstubs
|
24
|
+
$ bower install
|
25
|
+
|
26
|
+
When additional packages are adding using [Bower][1] you merely need to run
|
27
|
+
another `bower install` or if updating an existing package `bower update bootstrap`.
|
28
|
+
The same obviously goes for any gems that are being utilized by the project.
|
29
|
+
|
30
|
+
[0]: http://sinatrarb.com
|
31
|
+
[1]: http://bower.io
|
32
|
+
[2]: http://getbootstrap.com
|
33
|
+
[3]: http://jquery.com
|
34
|
+
[4]: https://github.com/sstephenson/sprockets
|
35
|
+
[5]: http://fortawesome.github.io/Font-Awesome/
|
36
|
+
[6]: http://nodejs.org
|
37
|
+
[7]: http://ruby-lang.org
|
data/Rakefile
ADDED
data/bower.json
ADDED
data/certs/jbellone.pem
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIFjjCCA3agAwIBAgIBATANBgkqhkiG9w0BAQUFADBGMRgwFgYDVQQDDA9qb2hu
|
3
|
+
LmJlbGxvbmUuanIxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixk
|
4
|
+
ARkWA2NvbTAeFw0xNDAyMDgyMjA3MzRaFw0xNTAyMDgyMjA3MzRaMEYxGDAWBgNV
|
5
|
+
BAMMD2pvaG4uYmVsbG9uZS5qcjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYK
|
6
|
+
CZImiZPyLGQBGRYDY29tMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA
|
7
|
+
yeEkbmuqlytk80M1mGStgb41RZ4XIc8zBee3966DxWXfYjlfkVDy/J844ElFD073
|
8
|
+
bSplUW3hA3qiLQA5woOsSzV8ySe97v2a+cDbpqrwFkqLZ68VywD7q0wRSD8R+NQC
|
9
|
+
0hjiYlnHRiSi6cbExdq3eyHVaAc223pYURgv9JAs8l49GQgoSiZxJ80wGgGWgaOV
|
10
|
+
zJUTr/Pn1qMD6rVA4Ra9jDhI8frgier/kQsuwYqNh7Pqn3VUclc1YHCbRubqCw/0
|
11
|
+
EYbvlravooKH1JZZ8Ml6A85oimrm6pMEtYyfkJgauom1P8rw24kT280ct6eXhiCO
|
12
|
+
54th3zVpXDSX2XBp/JOpkIQDz467jEN0t0gQ4T/23vPA73xy2EeL5pKmxdbrFrtx
|
13
|
+
ho3BXQ/NnSIoH13Q4rb+fAfJ2ctMgWpRcBz7k3XHSNxMFU4oGq6ufpeYZ5I7zgIk
|
14
|
+
DRzkGtEMLdsdWDm/ea5QsyVdrYJbOMzeWzM4Xtiw/BJHdo5G2mhMBCxpucI7oFK4
|
15
|
+
8EeceGcSVyNM3ty/8yxKnhjM6L/2DsP+HOdP2jhwgEDUmp6wGg5LeZW1+JVMnchS
|
16
|
+
3Ib/NhcPvLR82IqQSMEBzMFNb7KfhLzOb8ZE8iHCWrcuCrRD1dtLoxrLhzKOmbnV
|
17
|
+
YlR/eMB0KcqekQ2mCnFBBi10+pr/p7aL6iZZfDgRkiMCAwEAAaOBhjCBgzAJBgNV
|
18
|
+
HRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUnGFGw7WJx3lzUivNqUGP2vh3
|
19
|
+
WKgwJAYDVR0RBB0wG4EZam9obi5iZWxsb25lLmpyQGdtYWlsLmNvbTAkBgNVHRIE
|
20
|
+
HTAbgRlqb2huLmJlbGxvbmUuanJAZ21haWwuY29tMA0GCSqGSIb3DQEBBQUAA4IC
|
21
|
+
AQAliEjKfbv+6ktK7ZVlDjSQYFtiPVgQbDDeikbJKnKtV9oxnuVimrxS8ZP8ZlQ3
|
22
|
+
zgoMLR4Eoj96Vdvj+gyp7bBpJNQzF24120vfu41FKv7FFMAslWKJ0+3tz5Ncry/R
|
23
|
+
ii8V3Oitor6FcHMpknGJ57W3pe/j+p0uCZPZoO9Lcau6cfCUriqn0D8j7S0roCd4
|
24
|
+
EdDOmQ/aAmiHq9D6Gb6aj+dXc4MPJX8XafnRwjyfQ4wKIdmKiXDgM8TX7JbhxVYv
|
25
|
+
04HckbuSM41rQiIMQT3TIi48nT7KdQgZ/Irc7qvSBxb2sZ4JXAWiJQyEkDa066H+
|
26
|
+
7ys6kmCuGPsxnCuCAnm2meN9IBFbZPWWk2UXLffQRN3m3LJO4xMHdiiuLQ6ec3x6
|
27
|
+
ZCLWwTQQiY70w4lfkBpzpn9ZEt6Qc31LTWwdgWXjTMbaNetqcrQPJ5nH3H2mnmHI
|
28
|
+
4Kmj5kSOOc8pRotdn4d72hmYaG0DZZKbY9z9+kRP8ILLpxR9bguvNo3tvNKpI8L4
|
29
|
+
aCNMPlG5iUexwp2FWJn9F8jWszDrqG91WCb0yEZ/pIHcBvb+FXvjI5G4OWUpFEXD
|
30
|
+
DdBqKAgNigCqwHIOGLO/WfqW+cb3YM4NNPFmjri7mJ+sy8+6gQmo3gRBNv7Xc1Gx
|
31
|
+
Qsl2un8WK+XvCi1QELnJuFuMiBdSiH/Fo0e4qgM4SWZw8A==
|
32
|
+
-----END CERTIFICATE-----
|
data/config.ru
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'bundler/setup'
|
3
|
+
|
4
|
+
# Similar to Heroku, load up a local environment file if it exists. This allows
|
5
|
+
# for us to use variables for database connections, fine tunings, etc.
|
6
|
+
if File.exists?(File.expand_path('../../.env', __FILE__))
|
7
|
+
require 'dotenv'
|
8
|
+
Dotenv.load
|
9
|
+
end
|
10
|
+
|
11
|
+
lib_path = File.expand_path('../../lib', __FILE__)
|
12
|
+
$:.unshift(lib_path) unless $:.include?(lib_path)
|
13
|
+
|
14
|
+
require 'stagehand'
|
data/lib/stagehand.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'sinatra/base'
|
2
|
+
require 'sinatra/asset_pipeline'
|
3
|
+
require 'haml'
|
4
|
+
|
5
|
+
module Stagehand
|
6
|
+
class Application < Sinatra::Base
|
7
|
+
configure do
|
8
|
+
set :root, Stagehand.root
|
9
|
+
end
|
10
|
+
|
11
|
+
register Sinatra::AssetPipeline
|
12
|
+
|
13
|
+
get '/' do
|
14
|
+
haml :index
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/public/humans.txt
ADDED
File without changes
|
data/public/robots.txt
ADDED
File without changes
|
@@ -0,0 +1,28 @@
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
2
|
+
$:.unshift(lib) unless $:.include?(lib)
|
3
|
+
require 'stagehand/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'sinatra-stagehand'
|
7
|
+
spec.version = Stagehand::VERSION
|
8
|
+
spec.authors = ['John Bellone']
|
9
|
+
spec.email = ['john.bellone.jr@gmail.com']
|
10
|
+
spec.description = %q{Sinatra with Bootstrap, Bower, jQuery, Haml, LESS and Sprockets!}
|
11
|
+
spec.summary = IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
12
|
+
spec.homepage = 'https://github.com/johnbellone/sinatra-stagehand'
|
13
|
+
spec.license = 'MIT'
|
14
|
+
spec.cert_chain = ['certs/jbellone.pem']
|
15
|
+
spec.signing_key = File.join(Dir.home, '.config/gem-private_key.pem') if $0 =~ /gem\z/
|
16
|
+
|
17
|
+
spec.files = `git ls-files`.split($/)
|
18
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
19
|
+
spec.test_files = spec.files.grep(%r{^(test|spec)/})
|
20
|
+
spec.require_paths = ['lib']
|
21
|
+
|
22
|
+
spec.add_dependency 'coffee-script', '~> 2.2'
|
23
|
+
spec.add_dependency 'dotenv', '~> 0.9'
|
24
|
+
spec.add_dependency 'haml', '~> 4.0'
|
25
|
+
spec.add_dependency 'less', '~> 2.3'
|
26
|
+
spec.add_dependency 'sinatra', '~> 1.3'
|
27
|
+
spec.add_dependency 'sinatra-asset-pipeline', '~> 0.3'
|
28
|
+
end
|
data/test/test_helper.rb
ADDED
data/views/index.haml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
%p Put this in your pipe and smoke on it
|
data/views/layout.haml
ADDED
metadata
ADDED
@@ -0,0 +1,198 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sinatra-stagehand
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- John Bellone
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain:
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIFjjCCA3agAwIBAgIBATANBgkqhkiG9w0BAQUFADBGMRgwFgYDVQQDDA9qb2hu
|
14
|
+
LmJlbGxvbmUuanIxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixk
|
15
|
+
ARkWA2NvbTAeFw0xNDAyMDgyMjA3MzRaFw0xNTAyMDgyMjA3MzRaMEYxGDAWBgNV
|
16
|
+
BAMMD2pvaG4uYmVsbG9uZS5qcjEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYK
|
17
|
+
CZImiZPyLGQBGRYDY29tMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA
|
18
|
+
yeEkbmuqlytk80M1mGStgb41RZ4XIc8zBee3966DxWXfYjlfkVDy/J844ElFD073
|
19
|
+
bSplUW3hA3qiLQA5woOsSzV8ySe97v2a+cDbpqrwFkqLZ68VywD7q0wRSD8R+NQC
|
20
|
+
0hjiYlnHRiSi6cbExdq3eyHVaAc223pYURgv9JAs8l49GQgoSiZxJ80wGgGWgaOV
|
21
|
+
zJUTr/Pn1qMD6rVA4Ra9jDhI8frgier/kQsuwYqNh7Pqn3VUclc1YHCbRubqCw/0
|
22
|
+
EYbvlravooKH1JZZ8Ml6A85oimrm6pMEtYyfkJgauom1P8rw24kT280ct6eXhiCO
|
23
|
+
54th3zVpXDSX2XBp/JOpkIQDz467jEN0t0gQ4T/23vPA73xy2EeL5pKmxdbrFrtx
|
24
|
+
ho3BXQ/NnSIoH13Q4rb+fAfJ2ctMgWpRcBz7k3XHSNxMFU4oGq6ufpeYZ5I7zgIk
|
25
|
+
DRzkGtEMLdsdWDm/ea5QsyVdrYJbOMzeWzM4Xtiw/BJHdo5G2mhMBCxpucI7oFK4
|
26
|
+
8EeceGcSVyNM3ty/8yxKnhjM6L/2DsP+HOdP2jhwgEDUmp6wGg5LeZW1+JVMnchS
|
27
|
+
3Ib/NhcPvLR82IqQSMEBzMFNb7KfhLzOb8ZE8iHCWrcuCrRD1dtLoxrLhzKOmbnV
|
28
|
+
YlR/eMB0KcqekQ2mCnFBBi10+pr/p7aL6iZZfDgRkiMCAwEAAaOBhjCBgzAJBgNV
|
29
|
+
HRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUnGFGw7WJx3lzUivNqUGP2vh3
|
30
|
+
WKgwJAYDVR0RBB0wG4EZam9obi5iZWxsb25lLmpyQGdtYWlsLmNvbTAkBgNVHRIE
|
31
|
+
HTAbgRlqb2huLmJlbGxvbmUuanJAZ21haWwuY29tMA0GCSqGSIb3DQEBBQUAA4IC
|
32
|
+
AQAliEjKfbv+6ktK7ZVlDjSQYFtiPVgQbDDeikbJKnKtV9oxnuVimrxS8ZP8ZlQ3
|
33
|
+
zgoMLR4Eoj96Vdvj+gyp7bBpJNQzF24120vfu41FKv7FFMAslWKJ0+3tz5Ncry/R
|
34
|
+
ii8V3Oitor6FcHMpknGJ57W3pe/j+p0uCZPZoO9Lcau6cfCUriqn0D8j7S0roCd4
|
35
|
+
EdDOmQ/aAmiHq9D6Gb6aj+dXc4MPJX8XafnRwjyfQ4wKIdmKiXDgM8TX7JbhxVYv
|
36
|
+
04HckbuSM41rQiIMQT3TIi48nT7KdQgZ/Irc7qvSBxb2sZ4JXAWiJQyEkDa066H+
|
37
|
+
7ys6kmCuGPsxnCuCAnm2meN9IBFbZPWWk2UXLffQRN3m3LJO4xMHdiiuLQ6ec3x6
|
38
|
+
ZCLWwTQQiY70w4lfkBpzpn9ZEt6Qc31LTWwdgWXjTMbaNetqcrQPJ5nH3H2mnmHI
|
39
|
+
4Kmj5kSOOc8pRotdn4d72hmYaG0DZZKbY9z9+kRP8ILLpxR9bguvNo3tvNKpI8L4
|
40
|
+
aCNMPlG5iUexwp2FWJn9F8jWszDrqG91WCb0yEZ/pIHcBvb+FXvjI5G4OWUpFEXD
|
41
|
+
DdBqKAgNigCqwHIOGLO/WfqW+cb3YM4NNPFmjri7mJ+sy8+6gQmo3gRBNv7Xc1Gx
|
42
|
+
Qsl2un8WK+XvCi1QELnJuFuMiBdSiH/Fo0e4qgM4SWZw8A==
|
43
|
+
-----END CERTIFICATE-----
|
44
|
+
date: 2014-02-08 00:00:00.000000000 Z
|
45
|
+
dependencies:
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: coffee-script
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ~>
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '2.2'
|
53
|
+
type: :runtime
|
54
|
+
prerelease: false
|
55
|
+
version_requirements: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ~>
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: '2.2'
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: dotenv
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ~>
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0.9'
|
67
|
+
type: :runtime
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ~>
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0.9'
|
74
|
+
- !ruby/object:Gem::Dependency
|
75
|
+
name: haml
|
76
|
+
requirement: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - ~>
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '4.0'
|
81
|
+
type: :runtime
|
82
|
+
prerelease: false
|
83
|
+
version_requirements: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - ~>
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '4.0'
|
88
|
+
- !ruby/object:Gem::Dependency
|
89
|
+
name: less
|
90
|
+
requirement: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ~>
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '2.3'
|
95
|
+
type: :runtime
|
96
|
+
prerelease: false
|
97
|
+
version_requirements: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - ~>
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '2.3'
|
102
|
+
- !ruby/object:Gem::Dependency
|
103
|
+
name: sinatra
|
104
|
+
requirement: !ruby/object:Gem::Requirement
|
105
|
+
requirements:
|
106
|
+
- - ~>
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '1.3'
|
109
|
+
type: :runtime
|
110
|
+
prerelease: false
|
111
|
+
version_requirements: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ~>
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '1.3'
|
116
|
+
- !ruby/object:Gem::Dependency
|
117
|
+
name: sinatra-asset-pipeline
|
118
|
+
requirement: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ~>
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0.3'
|
123
|
+
type: :runtime
|
124
|
+
prerelease: false
|
125
|
+
version_requirements: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - ~>
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '0.3'
|
130
|
+
description: Sinatra with Bootstrap, Bower, jQuery, Haml, LESS and Sprockets!
|
131
|
+
email:
|
132
|
+
- john.bellone.jr@gmail.com
|
133
|
+
executables: []
|
134
|
+
extensions: []
|
135
|
+
extra_rdoc_files: []
|
136
|
+
files:
|
137
|
+
- .bowerrc
|
138
|
+
- .coveralls.yml
|
139
|
+
- .env
|
140
|
+
- .gitignore
|
141
|
+
- .travis.yml
|
142
|
+
- Gemfile
|
143
|
+
- Gemfile.lock
|
144
|
+
- Guardfile
|
145
|
+
- README.md
|
146
|
+
- Rakefile
|
147
|
+
- assets/coffee/application.coffee
|
148
|
+
- assets/less/application.less
|
149
|
+
- bower.json
|
150
|
+
- certs/jbellone.pem
|
151
|
+
- config.ru
|
152
|
+
- config/environment.rb
|
153
|
+
- lib/stagehand.rb
|
154
|
+
- lib/stagehand/application.rb
|
155
|
+
- lib/stagehand/version.rb
|
156
|
+
- public/humans.txt
|
157
|
+
- public/robots.txt
|
158
|
+
- sinatra-stagehand.gemspec
|
159
|
+
- test/test_helper.rb
|
160
|
+
- views/index.haml
|
161
|
+
- views/layout.haml
|
162
|
+
homepage: https://github.com/johnbellone/sinatra-stagehand
|
163
|
+
licenses:
|
164
|
+
- MIT
|
165
|
+
metadata: {}
|
166
|
+
post_install_message:
|
167
|
+
rdoc_options: []
|
168
|
+
require_paths:
|
169
|
+
- lib
|
170
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - '>='
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0'
|
175
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
176
|
+
requirements:
|
177
|
+
- - '>='
|
178
|
+
- !ruby/object:Gem::Version
|
179
|
+
version: '0'
|
180
|
+
requirements: []
|
181
|
+
rubyforge_project:
|
182
|
+
rubygems_version: 2.0.14
|
183
|
+
signing_key:
|
184
|
+
specification_version: 4
|
185
|
+
summary: 'Sinatra Stagehand ================= Sinatra with Bootstrap, jQuery, Haml,
|
186
|
+
LESS and Sprockets! ## Requirements * [Node][6] * [Ruby][7] (>= 2.0.0) # Out of
|
187
|
+
the Box * Sinatra * [Bower][1] * [Twitter Bootstrap][2] * [jQuery][3] * [Sprockets][4]
|
188
|
+
(Asset Pipeline) * [Font Awesome][5] ## Usage To get a simple application setup
|
189
|
+
and ready for hacking merely checkout and run a few commands to setup the dependencies. $
|
190
|
+
git clone https://github.com/johnbellone/sinatra-stagehand $ cd sinatra-stagehand
|
191
|
+
$ bundle install --binstubs $ bower install When additional packages are adding
|
192
|
+
using [Bower][1] you merely need to run another `bower install` or if updating an
|
193
|
+
existing package `bower update bootstrap`. The same obviously goes for any gems
|
194
|
+
that are being utilized by the project. [0]: http://sinatrarb.com [1]: http://bower.io
|
195
|
+
[2]: http://getbootstrap.com [3]: http://jquery.com [4]: https://github.com/sstephenson/sprockets
|
196
|
+
[5]: http://fortawesome.github.io/Font-Awesome/ [6]: http://nodejs.org [7]: http://ruby-lang.org'
|
197
|
+
test_files:
|
198
|
+
- test/test_helper.rb
|
metadata.gz.sig
ADDED
Binary file
|