Skip to content

Commit 72b4a3b

Browse files
author
Rodney Dennis
authored
V3 (#128)
* 3.0.0 * WIP * WIP * Rename LICENSE * Update styles * Rename license.md * Remove index.html * Clean up config files * Build * Update .gitignore * Update variables * Update .gitignore * Change colors and color classes * Update package.json - Added npm scripts for building, watching, and pre/post publishing * Cleanup .gitignore * Update webpack.config.js * Build * Update .gitignore * Remove gem related files * Move deps to devdeps * Yarn lock * update readme
1 parent 4f43b4d commit 72b4a3b

File tree

197 files changed

+8822
-7208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+8822
-7208
lines changed

.gitignore

+1-26
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,3 @@
1-
*.gem
2-
*.rbc
3-
.bundle
4-
.config
5-
.yardoc
6-
Gemfile.lock
7-
InstalledFiles
8-
_yardoc
9-
coverage
10-
doc/
11-
lib/bundler/man
12-
pkg
13-
rdoc
14-
spec/reports
15-
test/tmp
16-
test/version_tmp
17-
tmp
18-
.tmp
19-
bower_components/
201
node_modules/
21-
22-
# Ignore .DS_store file
232
.DS_Store
24-
25-
# Ignore Ruby version manager schtuff
26-
.ruby-version
27-
.ruby-gemset
28-
.npm-debug.log
3+
npm-debug.log

.node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7.4.0

Gemfile

-4
This file was deleted.

LICENSE.txt LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013 Belly
1+
Copyright (c) 2017 Belly Inc.
22

33
MIT License
44

README.md

+25-25
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,47 @@
11
# Rolodex
22

3-
Style for [Belly](http://bellycard.com)
3+
[![David](https://img.shields.io/david/dev/bellycard/rolodex.svg)]()
4+
5+
> Functional CSS for Belly
46
57
## Installation
68

7-
### Use with Bower
9+
```bash
10+
yarn add -D rolodex-css
11+
# or
12+
npm install --save-dev rolodex-css
13+
```
14+
15+
### Older Versions
16+
17+
The following instructions are for using rolodex v2.x and earlier.
18+
19+
#### Use with Bower
820

921
Import modules with this path in your Sass files:
1022

1123
```
12-
@import 'bower_components/rolodex/assets/stylesheets/rolodex';
24+
@import 'bower_components/rolodex/assets/stylesheets/rolodex'
1325
```
1426

15-
### Use with Rubygems
27+
#### Use with RubyGems
28+
29+
```bash
30+
gem install rolodex
31+
```
1632

1733
Add to your `Gemfile`:
1834

19-
```
20-
gem 'rolodex'
35+
```ruby
36+
gem "rolodex"
2137
```
2238

2339
Import modules to your Sass files:
2440

25-
```
41+
```sass
2642
@import 'rolodex'
2743
```
2844

29-
## Building
30-
31-
Rolodex uses [Gulp](http://gulpjs.com) to build and minify assets. Before you release an updated version, make sure to run:
32-
33-
```
34-
gulp build
35-
```
36-
37-
## Releasing
38-
39-
Rolodex uses [semver](http://semver.org/) for versioning. Bower will pick up new releases by the tags.
45+
## License
4046

41-
1. Run `$ gulp build` to create the minified files
42-
2. Bump `VERSION` in [rolodex/lib/rolodex/version.rb](https://github.com/bellycard/rolodex/blob/master/lib/rolodex/version.rb)
43-
3. Commit the minified files and version bump (`$ git commit -am 'Release v4.2.0'`)
44-
4. Create a new git tag with the (`$ git tag v4.2.0`)
45-
5. Push the git tag (`$ git push --tags`)
46-
6. Build the new gemspec (`$ gem build rolodex.gemspec`)
47-
7. Push to rubygems.org (`$ gem push rolodex-4.2.0.gem`)
47+
[MIT](/license) © Belly, Inc.

Rakefile

-1
This file was deleted.

assets/dist/rolodex.css

-1
This file was deleted.

0 commit comments

Comments
 (0)