orthodox 0.2.0 → 0.2.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 +4 -4
- data/README.md +51 -1
- data/dummy/.ruby-version +1 -1
- data/dummy/Gemfile +1 -1
- data/dummy/Gemfile.lock +8 -8
- data/lib/orthodox/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ffc2ee2138a06184d4eb5f22710c16aa81fb6162a53fb98f17143b5047cd9af7
|
|
4
|
+
data.tar.gz: cbf9aeec47529757ddab707b7c58d8678def57e0eaae04e4689a94fecff21575
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80c9f8491cd2f373e8c81a20a3550e1ec490ea79abb4119e1560b63147baf782a60787096c7d5c9c7db9e1582c4d99da4e215497faef1acbc02d313ce3ef836d
|
|
7
|
+
data.tar.gz: f52c09f564ac290fd3d38673e340f43fe0fc89b9e758e9031e2e724f0af346f97304f9cdad838e2d1ef69a86338b7afee04c1879387cfcf387da5b3274cc5fb3
|
data/README.md
CHANGED
|
@@ -20,6 +20,56 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
|
23
|
+
### A Coffeescript file:
|
|
24
|
+
|
|
25
|
+
rails g coffeescript users
|
|
26
|
+
|
|
27
|
+
Creates
|
|
28
|
+
|
|
29
|
+
window.users = do ->
|
|
30
|
+
|
|
31
|
+
init = ->
|
|
32
|
+
|
|
33
|
+
return { init }
|
|
34
|
+
|
|
35
|
+
### A Coffeescript file with functions:
|
|
36
|
+
|
|
37
|
+
rails g coffeescript users show_all
|
|
38
|
+
|
|
39
|
+
Creates
|
|
40
|
+
|
|
41
|
+
window.users = do ->
|
|
42
|
+
|
|
43
|
+
init = ->
|
|
44
|
+
|
|
45
|
+
showAll = ->
|
|
46
|
+
|
|
47
|
+
return { init }
|
|
48
|
+
|
|
49
|
+
### A Sass file:
|
|
50
|
+
|
|
51
|
+
rails g sass users
|
|
52
|
+
|
|
53
|
+
Creates
|
|
54
|
+
|
|
55
|
+
.user
|
|
56
|
+
// Define sass here
|
|
57
|
+
|
|
58
|
+
### A Sass file with BEM elements:
|
|
59
|
+
|
|
60
|
+
rails g sass users name avatar
|
|
61
|
+
|
|
62
|
+
Creates
|
|
63
|
+
|
|
64
|
+
.user
|
|
65
|
+
// Define sass here
|
|
66
|
+
|
|
67
|
+
.user-name
|
|
68
|
+
// Define sass here
|
|
69
|
+
|
|
70
|
+
.user-avatar
|
|
71
|
+
// Define sass here
|
|
72
|
+
|
|
23
73
|
### An empty controller:
|
|
24
74
|
|
|
25
75
|
rails g controller users
|
|
@@ -73,7 +123,7 @@ Creates:
|
|
|
73
123
|
### A controller with actions and authentication:
|
|
74
124
|
|
|
75
125
|
rails g controller users new create show --authenticate admin
|
|
76
|
-
|
|
126
|
+
|
|
77
127
|
Creates:
|
|
78
128
|
|
|
79
129
|
class Users < ApplicationController
|
data/dummy/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.6.2
|
data/dummy/Gemfile
CHANGED
data/dummy/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: ..
|
|
3
3
|
specs:
|
|
4
|
-
orthodox (0.
|
|
4
|
+
orthodox (0.2.0)
|
|
5
5
|
rails (>= 3.0.0)
|
|
6
6
|
slim-rails
|
|
7
7
|
|
|
@@ -161,13 +161,13 @@ GEM
|
|
|
161
161
|
selenium-webdriver (3.13.0)
|
|
162
162
|
childprocess (~> 0.5)
|
|
163
163
|
rubyzip (~> 1.2)
|
|
164
|
-
slim (
|
|
164
|
+
slim (4.0.1)
|
|
165
165
|
temple (>= 0.7.6, < 0.9)
|
|
166
|
-
tilt (>=
|
|
167
|
-
slim-rails (3.
|
|
166
|
+
tilt (>= 2.0.6, < 2.1)
|
|
167
|
+
slim-rails (3.2.0)
|
|
168
168
|
actionpack (>= 3.1)
|
|
169
169
|
railties (>= 3.1)
|
|
170
|
-
slim (
|
|
170
|
+
slim (>= 3.0, < 5.0)
|
|
171
171
|
spring (2.0.2)
|
|
172
172
|
activesupport (>= 4.2)
|
|
173
173
|
spring-watcher-listen (2.0.1)
|
|
@@ -181,7 +181,7 @@ GEM
|
|
|
181
181
|
activesupport (>= 4.0)
|
|
182
182
|
sprockets (>= 3.0.0)
|
|
183
183
|
sqlite3 (1.3.13)
|
|
184
|
-
temple (0.8.
|
|
184
|
+
temple (0.8.1)
|
|
185
185
|
thor (0.20.0)
|
|
186
186
|
thread_safe (0.3.6)
|
|
187
187
|
tilt (2.0.8)
|
|
@@ -228,7 +228,7 @@ DEPENDENCIES
|
|
|
228
228
|
web-console (>= 3.3.0)
|
|
229
229
|
|
|
230
230
|
RUBY VERSION
|
|
231
|
-
ruby 2.
|
|
231
|
+
ruby 2.6.2p47
|
|
232
232
|
|
|
233
233
|
BUNDLED WITH
|
|
234
|
-
1.
|
|
234
|
+
1.17.2
|
data/lib/orthodox/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: orthodox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bodacious
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2019-03-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|