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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa9278683ad2a591566773d2581f7994a9a17b640be5035f703db922e6a2e07d
4
- data.tar.gz: 7220f881319f25436513e2e921ff496125a317488c25ef4437dee8a750cf4741
3
+ metadata.gz: ffc2ee2138a06184d4eb5f22710c16aa81fb6162a53fb98f17143b5047cd9af7
4
+ data.tar.gz: cbf9aeec47529757ddab707b7c58d8678def57e0eaae04e4689a94fecff21575
5
5
  SHA512:
6
- metadata.gz: 157f44f54285a375d09ed643e720ec523734a4995b8f37aa11f2bcb259b555a8ab4d2e2214fe4a9fa4b5d862715a35d20eeb3e37027f4db27d42527589af0ba4
7
- data.tar.gz: ffe76df5b90552a252b888f1e2a253f6b8c6cc46ecfa25dbf9e03fa6337a33caef696a04309af1663fae534a831e0cda53ec7251fc93a4bc3247423575be8fd3
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.4.2
1
+ 2.6.2
data/dummy/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
  git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3
3
 
4
- ruby '2.4.2'
4
+ ruby '2.6.2'
5
5
 
6
6
  # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
7
7
  gem 'rails', '~> 5.2.0'
data/dummy/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- orthodox (0.1.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 (3.0.9)
164
+ slim (4.0.1)
165
165
  temple (>= 0.7.6, < 0.9)
166
- tilt (>= 1.3.3, < 2.1)
167
- slim-rails (3.1.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 (~> 3.0)
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.0)
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.4.2p198
231
+ ruby 2.6.2p47
232
232
 
233
233
  BUNDLED WITH
234
- 1.16.1
234
+ 1.17.2
@@ -1,3 +1,3 @@
1
1
  module Orthodox
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
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.0
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: 2018-06-28 00:00:00.000000000 Z
12
+ date: 2019-03-20 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails