github-css 0.1.2 → 0.1.3

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: 0d76d5cc7c84e704ca41b3b3781c4675a1bff95e
4
- data.tar.gz: 884ae47de6b17160ce0565fc7809c1d76ae9b750
3
+ metadata.gz: 63d277b163bf9c087a093f52e6dfd1d5d0bebaf7
4
+ data.tar.gz: 91342ea828ac3d76d43b3b6074d828207d547898
5
5
  SHA512:
6
- metadata.gz: d163ad2f3ea2e3b0a8921e9777f1627c785131c485b77655d34bed012c83fcfb1620ee055d25291e13d9469644c5e41c1fed45ba01a2a3f3628c3689474f14a3
7
- data.tar.gz: 9dffdcc02057b9627abdbdadd45a9a047163fe742d60469d3a184ebbc0be64e79bfe744d0cf9626e90974a0616fd5dc950d1dd932fa0a04e20cb94ba8bb16cb5
6
+ metadata.gz: f9d15de23359f423cdc2b8bc66b068f4b3d79839c0f79c9129492a3a0a42f1da588acbac39786dc1d2a292822c4da7fb2fdb85b7b1172e6acf567b800231c25b
7
+ data.tar.gz: bf036d9efbe944afdd72b999f30f214c739bc4f3d0ade3867d2058e4dd5575f18efb349557900be63cf88007b4c208ab2df1b60bef13fabc88ab1b4ce6271aa3
data/bin/console CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require "bundler/setup"
4
- require "github/rails"
4
+ require "gitcss/rails"
5
5
 
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
Binary file
Binary file
data/github-css.gemspec CHANGED
@@ -1,11 +1,11 @@
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 'github/rails/version'
4
+ require 'gitcss/rails/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "github-css"
8
- spec.version = Github::Rails::VERSION
8
+ spec.version = Gitcss::Rails::VERSION
9
9
  spec.authors = ["Tim Lange"]
10
10
  spec.email = ["tim.lange@titanhq.de"]
11
11
 
@@ -17,5 +17,5 @@ Gem::Specification.new do |spec|
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
18
  spec.bindir = "exe"
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
- spec.require_paths = ["lib", "vendor"]
20
+ spec.require_paths = ["lib", "app"]
21
21
  end
@@ -0,0 +1,5 @@
1
+ module Gitcss
2
+ module Rails
3
+ VERSION = '0.1.3'
4
+ end
5
+ end
@@ -1,6 +1,6 @@
1
- require "github/rails/version"
1
+ require "gitcss/rails/version"
2
2
 
3
- module Github
3
+ module Gitcss
4
4
  module Rails
5
5
  class Engine < ::Rails::Engine
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github-css
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Lange
@@ -24,9 +24,11 @@ files:
24
24
  - app/assets/stylesheets/github.css
25
25
  - bin/console
26
26
  - bin/setup
27
+ - github-css-0.1.1.gem
28
+ - github-css-0.1.2.gem
27
29
  - github-css.gemspec
28
- - lib/github/rails.rb
29
- - lib/github/rails/version.rb
30
+ - lib/gitcss/rails.rb
31
+ - lib/gitcss/rails/version.rb
30
32
  homepage: https://github.com/venarius/github-css
31
33
  licenses:
32
34
  - MIT
@@ -35,7 +37,7 @@ post_install_message:
35
37
  rdoc_options: []
36
38
  require_paths:
37
39
  - lib
38
- - vendor
40
+ - app
39
41
  required_ruby_version: !ruby/object:Gem::Requirement
40
42
  requirements:
41
43
  - - ">="
@@ -1,5 +0,0 @@
1
- module Github
2
- module Rails
3
- VERSION = '0.1.2'
4
- end
5
- end