dvl-core 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6734d2e2da51000e63e1820a50c569b96bb078fb
4
- data.tar.gz: 6bde4acd261cfb8e4cf62d5503ad257b93dfab85
3
+ metadata.gz: d11ef2bfb302fcfa94723873b612b9784af5955a
4
+ data.tar.gz: c920115e75d3fed87ea769b3c086231a66d2bd05
5
5
  SHA512:
6
- metadata.gz: f8ab42297ae8cc697c32aa75775832f470bbe0991ac4b5a99bbeb3381688f884aa4dd5102b13fb5b1550e999f567900ffdf6528f2e786344e1fd4c2e5c5d12ce
7
- data.tar.gz: e04303847e6a0262fc7803fd3da1338728508365d9330537de0a90e8a7d29c5fbe2cdf120b81d42f013f6896db024398098b06abde08d1008a7dd9e2688b887f
6
+ metadata.gz: 72ea3141bdd8130324cd90de7b90c945f6b22ac674cce3ec794cc4c6bae4624f5b27f7ede2f073357c8c84fc42023d4c35d87243b7c75cb31e7b9cdc271ca04b
7
+ data.tar.gz: 6378c5e5378d48133de7a7ea335231e291380bba2e194db90871a66ff6c8137fbe5d3b3d1e9a1c7822f5949b404dc47f36aebd9b6c100827ca5ae112e9103b76
data/README.md CHANGED
@@ -29,7 +29,7 @@ gem 'dvl-core'
29
29
 
30
30
  ## License
31
31
 
32
- MIT
32
+ [MIT](http://dobtco.mit-license.org/)
33
33
 
34
34
  [version]: https://img.shields.io/gem/v/dvl-core.svg
35
35
  [build_status]: https://circleci-badges.herokuapp.com/dobtco/dvl-core/87144b68eadac365d9368f5c62e68d3dfcad14bb
@@ -1,5 +1,5 @@
1
1
  module Dvl
2
2
  module Core
3
- VERSION = '0.0.1'
3
+ VERSION = '0.0.2'
4
4
  end
5
5
  end
data/preview/app.rb CHANGED
@@ -233,6 +233,11 @@ class App < Sinatra::Base
233
233
  h5 'Heading 5'
234
234
  h6 'Heading 6'
235
235
  p 'Lorem ipsum.'
236
+
237
+ p.microcopy {
238
+ text 'This is some awesome .microcopy.'
239
+ a.microcopy_action 'Microcopy action'
240
+ }
236
241
  end
237
242
 
238
243
  script src: '//code.jquery.com/jquery-1.11.1.min.js'
@@ -155,4 +155,17 @@ sub {
155
155
  color: $darkerGray;
156
156
  font-size: 0.96rem;
157
157
  letter-spacing: 0.06rem;
158
- }
158
+ }
159
+
160
+ .microcopy {
161
+ background: #f7f7f7;
162
+ font-size: 0.85rem;
163
+ padding: 0.375rem 1rem;
164
+ border-radius: $radius;
165
+ max-width: 22rem;
166
+ }
167
+
168
+ // Actionable links within .microcopy
169
+ .microcopy_action {
170
+ display: block;
171
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dvl-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Becker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-09 00:00:00.000000000 Z
11
+ date: 2014-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -157,10 +157,8 @@ extensions: []
157
157
  extra_rdoc_files: []
158
158
  files:
159
159
  - ".gitignore"
160
- - ".hound.yml"
161
160
  - ".ruby-version"
162
161
  - Gemfile
163
- - LICENSE.md
164
162
  - README.md
165
163
  - circle.yml
166
164
  - dvl-core.gemspec
data/.hound.yml DELETED
@@ -1,5 +0,0 @@
1
- ruby:
2
- enabled: true
3
-
4
- coffee_script:
5
- enabled: true
data/LICENSE.md DELETED
@@ -1,20 +0,0 @@
1
- Copyright 2014 Department of Better Technology
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.