vital 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.npmignore +15 -0
- data/.ruby-version +1 -1
- data/Gemfile.lock +1 -1
- data/README.md +5 -3
- data/bower.json +30 -0
- data/lib/vital/version.rb +1 -1
- data/package.json +15 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0ee5530037e1a65d259a03abe22a1ac3bdd9798
|
4
|
+
data.tar.gz: 04e6f6ec5185b25e2be35f0efb5e24ef808dc62f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b161f59513242d51add2df6629ebf01bed0566055e30f3440c4ac1c15a6f9e1f05dc3550433380ea2405fa6519cdeb039dd70514eadaeb0d3e1ede86a48f39e
|
7
|
+
data.tar.gz: f00a9a68c7806e4182851785ae5b0869af480dbbfd946332a5953cb1e1ad1a06a4aa51aa3c75984b538795425e4e1a0955a8d4aad60b0fdc053f6ae7e7f2cdf9
|
data/.gitignore
CHANGED
data/.npmignore
ADDED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.
|
1
|
+
2.2.5
|
data/Gemfile.lock
CHANGED
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`
|
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://
|
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
|
-
-
|
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
|
|
data/bower.json
ADDED
@@ -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
|
+
}
|
data/lib/vital/version.rb
CHANGED
data/package.json
ADDED
@@ -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.
|
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-
|
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
|