wcc-styles 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/wcc/styles/version.rb +1 -1
- metadata +47 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea6778f107fc33fd69366c3239fa73698d1806b1
|
4
|
+
data.tar.gz: d5e182d3d0d10992263f82103ba7dadab50de10c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: deff1b1eb241e07b5de029b3b822e35cba285e36aac62494ac53547dd36305df6021e056062a525f073e738ef1bef327b68a473b6b4742674245419b55a63736
|
7
|
+
data.tar.gz: 411f9c7e7234ac92b80aa1a8e6898e8262d5ec1c19aa6ce7ad2ea33c02e7c0b33d1b7df7356fb4c8f29a86b3776d5910662e8926412374edddeaef937a5be480
|
data/lib/wcc/styles/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wcc-styles
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Watermark Community Church
|
@@ -108,7 +108,50 @@ dependencies:
|
|
108
108
|
- - '='
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: 2.4.5
|
111
|
-
description:
|
111
|
+
description: |+
|
112
|
+
# WCC::Styles
|
113
|
+
|
114
|
+
This gem holds all of the styles for Watermark apps. For Rails apps a
|
115
|
+
Rails Engine will automatically be set up that configures the asset
|
116
|
+
pipeline properly.
|
117
|
+
|
118
|
+
## Installation
|
119
|
+
|
120
|
+
Add these lines to your application's Gemfile:
|
121
|
+
|
122
|
+
```ruby
|
123
|
+
gem 'wcc-styles'
|
124
|
+
|
125
|
+
source 'https://rails-assets.org' do
|
126
|
+
gem 'rails-assets-selectize'
|
127
|
+
gem 'rails-assets-dropzone'
|
128
|
+
gem 'rails-assets-moment'
|
129
|
+
gem 'rails-assets-datetimepicker', '2.4.5'
|
130
|
+
end
|
131
|
+
|
132
|
+
```
|
133
|
+
|
134
|
+
And then execute:
|
135
|
+
|
136
|
+
$ bundle
|
137
|
+
|
138
|
+
## Usage
|
139
|
+
|
140
|
+
The assets are all namespaced in `wcc/styles` within the asset pipeline.
|
141
|
+
So to include styles in an `application.sass` within your application
|
142
|
+
include the following line:
|
143
|
+
|
144
|
+
```sass
|
145
|
+
# Import all styles
|
146
|
+
@import "wcc/styles/base/all";
|
147
|
+
```
|
148
|
+
|
149
|
+
To include the Javascript code add this to your `application.js`:
|
150
|
+
|
151
|
+
```javascript
|
152
|
+
//= require wcc/styles/application
|
153
|
+
```
|
154
|
+
|
112
155
|
email:
|
113
156
|
- dev@watermark.org
|
114
157
|
executables: []
|
@@ -163,7 +206,7 @@ files:
|
|
163
206
|
- lib/wcc/styles/simple_form/historical_date_input.rb
|
164
207
|
- lib/wcc/styles/simple_form/time_picker_input.rb
|
165
208
|
- lib/wcc/styles/version.rb
|
166
|
-
homepage: https://
|
209
|
+
homepage: https://patterns.watermark.org/
|
167
210
|
licenses:
|
168
211
|
- Proprietary
|
169
212
|
metadata: {}
|
@@ -186,5 +229,5 @@ rubyforge_project:
|
|
186
229
|
rubygems_version: 2.2.5
|
187
230
|
signing_key:
|
188
231
|
specification_version: 4
|
189
|
-
summary: This gem holds
|
232
|
+
summary: This gem holds the styles for Watermark's application patterns
|
190
233
|
test_files: []
|