github-css-rails 1.0.1 → 1.1.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87427789ff6fd037079f5000edd89dc3ae7ead98
|
|
4
|
+
data.tar.gz: 3defb580930988322a24df4b88a42f60bad644c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70d2d2897bdcb39ee9d154564645f6e464edf9d12d502aec5dc9c1a5ddfe64cc519e33c95e1ce6282551184e39de45045784aaebcddcf480d240176f6dda454c
|
|
7
|
+
data.tar.gz: 2e12896a149725bb3ab1b1cd90f5d731d4ffd35a1bb2a56c819cc2cbbae2493aef9f35d8b408643278f151dbae9c5d7f90651178591acce0560e10e30f19776c
|
data/README.md
CHANGED
|
@@ -1,30 +1,38 @@
|
|
|
1
1
|
# github-css-rails [](http://badge.fury.io/rb/github-css-rails)
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Gemified by Doc Walker
|
|
4
4
|
|
|
5
5
|
Provides GitHub Flavored Markdown CSS for the Rails 3.1+ asset pipeline.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
Add these lines to your application's Gemfile
|
|
9
|
+
Add these lines to your application's `Gemfile`:
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
```rb
|
|
12
|
+
# github flavored markdown css packaged for the rails asset pipeline
|
|
13
|
+
gem 'github-css-rails', '~> 1.1'
|
|
14
|
+
```
|
|
13
15
|
|
|
14
16
|
And then execute:
|
|
15
17
|
|
|
16
|
-
|
|
18
|
+
```sh
|
|
19
|
+
$ bundle
|
|
20
|
+
```
|
|
17
21
|
|
|
18
22
|
Or install it yourself as:
|
|
19
23
|
|
|
20
|
-
|
|
24
|
+
```sh
|
|
25
|
+
$ gem install github-css-rails
|
|
26
|
+
```
|
|
21
27
|
|
|
22
28
|
## Usage
|
|
23
29
|
|
|
24
30
|
Add these lines to `app/assets/stylesheets/application.css`
|
|
25
31
|
|
|
26
|
-
|
|
27
|
-
|
|
32
|
+
```css
|
|
33
|
+
provides GitHub Flavored Markdown CSS from gem 'github-css-rails':
|
|
34
|
+
= require github-css-rails
|
|
35
|
+
```
|
|
28
36
|
|
|
29
37
|
## Contributing
|
|
30
38
|
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github-css-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Doc Walker
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-07-
|
|
11
|
+
date: 2013-07-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -65,10 +65,11 @@ files:
|
|
|
65
65
|
- README.md
|
|
66
66
|
- Rakefile
|
|
67
67
|
- github-css-rails.gemspec
|
|
68
|
+
- lib/assets/stylesheets/github-css-rails.css
|
|
69
|
+
- lib/assets/stylesheets/github.css
|
|
68
70
|
- lib/github-css-rails.rb
|
|
69
71
|
- lib/github-css-rails/engine.rb
|
|
70
72
|
- lib/github-css-rails/version.rb
|
|
71
|
-
- vendor/assets/stylesheets/github.css
|
|
72
73
|
homepage: https://github.com/jhx/gem-github-css-rails
|
|
73
74
|
licenses:
|
|
74
75
|
- MIT
|