lei 0.2.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/bin/_app/_controllers.rb +116 -0
- data/bin/_app/_helpers.rb +191 -0
- data/bin/_app/_root.rb +199 -0
- data/bin/_app/_src.rb +170 -0
- data/bin/_app/_static.rb +7 -0
- data/bin/_app/_views.rb +122 -0
- data/bin/_app/_welcome.rb +13 -0
- data/bin/_new/_content.rb +44 -0
- data/bin/_new/_custom.rb +71 -0
- data/bin/functions.rb +7 -0
- data/bin/lei +65 -0
- data/example/controllers/content.rb +67 -0
- data/example/controllers/custom.rb +33 -0
- data/example/controllers/test.rb +12 -0
- data/example/helpers/content_helpers.rb +131 -0
- data/example/helpers/global_utils.rb +44 -0
- data/example/spec/spec_helper.rb +100 -0
- data/example/spec/test/content_helper_spec.rb +176 -0
- metadata +93 -0
metadata
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lei
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ezra Chang
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-11-01 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.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
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: |
|
42
|
+
This framework glues together Sinatra, Markdown, and LESS to create
|
43
|
+
AMP-ready sites, ready for launch.
|
44
|
+
email:
|
45
|
+
- ezra.mintao.chang@gmail.com
|
46
|
+
executables:
|
47
|
+
- lei
|
48
|
+
extensions: []
|
49
|
+
extra_rdoc_files: []
|
50
|
+
files:
|
51
|
+
- bin/_app/_controllers.rb
|
52
|
+
- bin/_app/_helpers.rb
|
53
|
+
- bin/_app/_root.rb
|
54
|
+
- bin/_app/_src.rb
|
55
|
+
- bin/_app/_static.rb
|
56
|
+
- bin/_app/_views.rb
|
57
|
+
- bin/_app/_welcome.rb
|
58
|
+
- bin/_new/_content.rb
|
59
|
+
- bin/_new/_custom.rb
|
60
|
+
- bin/functions.rb
|
61
|
+
- bin/lei
|
62
|
+
- example/controllers/content.rb
|
63
|
+
- example/controllers/custom.rb
|
64
|
+
- example/controllers/test.rb
|
65
|
+
- example/helpers/content_helpers.rb
|
66
|
+
- example/helpers/global_utils.rb
|
67
|
+
- example/spec/spec_helper.rb
|
68
|
+
- example/spec/test/content_helper_spec.rb
|
69
|
+
homepage: https://jnsq.ninja
|
70
|
+
licenses:
|
71
|
+
- MIT
|
72
|
+
metadata: {}
|
73
|
+
post_install_message:
|
74
|
+
rdoc_options: []
|
75
|
+
require_paths:
|
76
|
+
- lib
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: '0'
|
87
|
+
requirements: []
|
88
|
+
rubyforge_project:
|
89
|
+
rubygems_version: 2.7.6
|
90
|
+
signing_key:
|
91
|
+
specification_version: 4
|
92
|
+
summary: A springboard for AMP-ready static sites
|
93
|
+
test_files: []
|