wcc-styles 0.1.0 → 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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/wcc/styles/version.rb +1 -1
  3. metadata +47 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8168edb3a3c277525950f322c038700947026a2e
4
- data.tar.gz: bed865fcb8f30fe8e53c05e525c09c5c6a6bec97
3
+ metadata.gz: ea6778f107fc33fd69366c3239fa73698d1806b1
4
+ data.tar.gz: d5e182d3d0d10992263f82103ba7dadab50de10c
5
5
  SHA512:
6
- metadata.gz: d490b8f06371f3be68a5e13cfc6d29fb3d5f243c8118174d121f62ff40f1cb06679197993230a2f9f94932dd04ece9b92bc5381bbeefa53e16c31b52dff7eb74
7
- data.tar.gz: 831b8eddc93e927540e5fb617391c0a79cae00359defae652b588744bba1b70e2a41c05f9e84d5414b072ae2d2ade6fe1dbf42307925c50302e74cc5f37a76ed
6
+ metadata.gz: deff1b1eb241e07b5de029b3b822e35cba285e36aac62494ac53547dd36305df6021e056062a525f073e738ef1bef327b68a473b6b4742674245419b55a63736
7
+ data.tar.gz: 411f9c7e7234ac92b80aa1a8e6898e8262d5ec1c19aa6ce7ad2ea33c02e7c0b33d1b7df7356fb4c8f29a86b3776d5910662e8926412374edddeaef937a5be480
@@ -1,5 +1,5 @@
1
1
  module WCC
2
2
  module Styles
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
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.0
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: This gem holds a mountable engine of Watermark's base styles
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://github.com/watermarkchurch
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 a mountable engine of Watermark's base styles
232
+ summary: This gem holds the styles for Watermark's application patterns
190
233
  test_files: []