github-css 0.1.3 → 0.1.5
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 +4 -4
- data/github-css.gemspec +3 -4
- data/lib/gitcss/{rails.rb → engine.rb} +0 -2
- data/lib/gitcss/{rails/version.rb → version.rb} +1 -1
- data/lib/github-css.rb +7 -0
- data/{app → vendor}/assets/stylesheets/github.css +0 -0
- metadata +7 -8
- data/github-css-0.1.1.gem +0 -0
- data/github-css-0.1.2.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6776a2aa69cd3630a10603aaee2186b3ccc47b81
|
|
4
|
+
data.tar.gz: ddce3ebe6374cbe88c2ec492ee5e3ef51711f1ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 26d5399cf9fcc625ea1b09cad5574f9f8da7ecde08a55460c8e97b1a83b64d22c04c491da60e8c9fbf5a89a32c732622c62d3940115f1c10d99a58ef8a4bb5aa
|
|
7
|
+
data.tar.gz: 6f14c48aa6d43e63727c331c0445028806e012d3bdd22381fbd38c175a8b59e16ae8e93957b505d07987ec89670b4ff8193dca9b93dc9a133306c3fb8b3a61c7
|
data/github-css.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'gitcss/
|
|
4
|
+
require 'gitcss/version'
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "github-css"
|
|
@@ -14,8 +14,7 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.homepage = "https://github.com/venarius/github-css"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
|
-
spec.files = `git ls-files
|
|
18
|
-
spec.bindir = "exe"
|
|
17
|
+
spec.files = `git ls-files`.split("\n")
|
|
19
18
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
|
-
spec.require_paths = ["lib", "
|
|
19
|
+
spec.require_paths = ["lib", "vendor"]
|
|
21
20
|
end
|
data/lib/github-css.rb
ADDED
|
File without changes
|
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github-css
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Lange
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2017-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
@@ -21,14 +21,13 @@ files:
|
|
|
21
21
|
- Gemfile
|
|
22
22
|
- LICENSE
|
|
23
23
|
- Readme.md
|
|
24
|
-
- app/assets/stylesheets/github.css
|
|
25
24
|
- bin/console
|
|
26
25
|
- bin/setup
|
|
27
|
-
- github-css-0.1.1.gem
|
|
28
|
-
- github-css-0.1.2.gem
|
|
29
26
|
- github-css.gemspec
|
|
30
|
-
- lib/gitcss/
|
|
31
|
-
- lib/gitcss/
|
|
27
|
+
- lib/gitcss/engine.rb
|
|
28
|
+
- lib/gitcss/version.rb
|
|
29
|
+
- lib/github-css.rb
|
|
30
|
+
- vendor/assets/stylesheets/github.css
|
|
32
31
|
homepage: https://github.com/venarius/github-css
|
|
33
32
|
licenses:
|
|
34
33
|
- MIT
|
|
@@ -37,7 +36,7 @@ post_install_message:
|
|
|
37
36
|
rdoc_options: []
|
|
38
37
|
require_paths:
|
|
39
38
|
- lib
|
|
40
|
-
-
|
|
39
|
+
- vendor
|
|
41
40
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
42
41
|
requirements:
|
|
43
42
|
- - ">="
|
data/github-css-0.1.1.gem
DELETED
|
Binary file
|
data/github-css-0.1.2.gem
DELETED
|
Binary file
|