vital 1.2.0 → 1.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
  SHA1:
3
- metadata.gz: 501825c9a09d4bd8a69bd43ff0e6b7242c9f3b2a
4
- data.tar.gz: 975cec9ec0d93ac3e78300560394ab7462461feb
3
+ metadata.gz: f0ee5530037e1a65d259a03abe22a1ac3bdd9798
4
+ data.tar.gz: 04e6f6ec5185b25e2be35f0efb5e24ef808dc62f
5
5
  SHA512:
6
- metadata.gz: 842ac75081d194c8ef8394af6ac6f2437c6e9e80328c305d0cfdc32aa51d389b5658039e2f379b025e27e1a28abc4622309b18853f2f693cf6942e4952661220
7
- data.tar.gz: 55b909a499d4c1206007b8cb2c240cde62b61e517bfd5e8005cad0f6ba590a9c5d149f1b698e3399b54764da5df6c90176e34f4ce72bb8573de2375955a65230
6
+ metadata.gz: 3b161f59513242d51add2df6629ebf01bed0566055e30f3440c4ac1c15a6f9e1f05dc3550433380ea2405fa6519cdeb039dd70514eadaeb0d3e1ede86a48f39e
7
+ data.tar.gz: f00a9a68c7806e4182851785ae5b0869af480dbbfd946332a5953cb1e1ad1a06a4aa51aa3c75984b538795425e4e1a0955a8d4aad60b0fdc053f6ae7e7f2cdf9
data/.gitignore CHANGED
@@ -10,6 +10,7 @@
10
10
  /dist/**/*.md
11
11
  /dist/**/*.sass
12
12
  /dist/**/*.scss
13
+ /pkg
13
14
  vital-*.tar.gz
14
15
 
15
16
  # Ignore the build directory
@@ -0,0 +1,15 @@
1
+ **/.*
2
+ *.gemspec
3
+ Gemfile*
4
+ Rakefile
5
+ node_modules
6
+ bower_components
7
+ test
8
+ tests
9
+ build
10
+ pkg
11
+ previews
12
+ docs
13
+ icons
14
+ lib
15
+ releases
@@ -1 +1 @@
1
- 2.2.4
1
+ 2.2.5
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vital (1.2.0)
4
+ vital (1.2.1)
5
5
  sass (>= 3.4)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -24,10 +24,10 @@ A minimally invasive CSS framework for modern web applications.
24
24
  A couple installation options are available:
25
25
 
26
26
  - Download the latest release tarball from https://github.com/doximity/vital/releases.
27
- - Install the `vital` Ruby Gem on your project.
27
+ - Install the `vital` RubyGem, NPM or Bower package on your project.
28
28
  - Use a precompiled release from RawGit.
29
29
 
30
- Check out [our docs](http://doximity.github.io/vital/get-started/) for information on installation methods, framework contents, templates, examples and more.
30
+ Check out [our docs](http://vitalcss.com/get-started/) for information on installation methods, framework contents, templates, examples and more.
31
31
 
32
32
  ## Development
33
33
 
@@ -84,8 +84,10 @@ bundle exec middleman
84
84
  - `git commit -m 'vX.Y.Z'`
85
85
  - `git push origin master`
86
86
  - `bundle exec rake release` to push to RubyGems
87
+ - `npm publish` to push to NPM
87
88
  - `cd docs && bundle exec rake publish` to update GitHub pages
88
- - Visit http://doximity.github.io/vital/ and ensure it has been updated
89
+ - Go to https://github.com/doximity/vital/releases and create a new release with the tarball attached
90
+ - Visit http://vitalcss.com/ and ensure it has been updated
89
91
 
90
92
  ## Reporting Issues and Suggestions
91
93
 
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "vital",
3
+ "homepage": "http://vitalcss.com",
4
+ "authors": [
5
+ "Body Taing <btaing@doximity.com>",
6
+ "Fabio Rehm <frehm@doximity.com>"
7
+ ],
8
+ "description": "A minimally invasive CSS framework for modern web applications.",
9
+ "main": [
10
+ "sass/vital.sass"
11
+ ],
12
+ "license": "Apache-2.0",
13
+ "ignore": [
14
+ "**/.*",
15
+ "*.gemspec",
16
+ "Gemfile*",
17
+ "Rakefile",
18
+ "node_modules",
19
+ "bower_components",
20
+ "test",
21
+ "tests",
22
+ "build",
23
+ "pkg",
24
+ "previews",
25
+ "docs",
26
+ "icons",
27
+ "lib",
28
+ "releases"
29
+ ]
30
+ }
@@ -1,3 +1,3 @@
1
1
  module Vital
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "vital-css",
3
+ "version": "1.2.1",
4
+ "description": "A minimally invasive CSS framework for modern web applications.",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/doximity/vital.git"
8
+ },
9
+ "author": "The Vital Authors (https://github.com/doximity/vital/graphs/contributors)",
10
+ "license": "Apache-2.0",
11
+ "bugs": {
12
+ "url": "https://github.com/doximity/vital/issues"
13
+ },
14
+ "homepage": "https://github.com/doximity/vital#readme"
15
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vital
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Body Taing
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-08-05 00:00:00.000000000 Z
12
+ date: 2016-11-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
@@ -76,6 +76,7 @@ extensions: []
76
76
  extra_rdoc_files: []
77
77
  files:
78
78
  - ".gitignore"
79
+ - ".npmignore"
79
80
  - ".ruby-version"
80
81
  - CHANGELOG.md
81
82
  - CONTRIBUTING.md
@@ -84,6 +85,7 @@ files:
84
85
  - LICENSE.md
85
86
  - README.md
86
87
  - Rakefile
88
+ - bower.json
87
89
  - dist/css/vital.css
88
90
  - dist/css/vital.css.map
89
91
  - dist/css/vital.min.css
@@ -100,6 +102,7 @@ files:
100
102
  - lib/vital.rb
101
103
  - lib/vital/engine.rb
102
104
  - lib/vital/version.rb
105
+ - package.json
103
106
  - releases/v1.0.0/fonts/icons.eot
104
107
  - releases/v1.0.0/fonts/icons.svg
105
108
  - releases/v1.0.0/fonts/icons.ttf