devicon-rails 1.0.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.
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'devicon/rails/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "devicon-rails"
8
+ spec.version = Devicon::Rails::VERSION
9
+ spec.authors = ["Vincent Cornière"]
10
+ spec.email = ["vincent.corniere@gmail.com"]
11
+
12
+ spec.summary = "Devicon v2 for rails"
13
+ spec.description = "Devicon v2 is a font."
14
+ spec.homepage = "https://github.com/dezande/devicon-rails"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+ end
@@ -0,0 +1,8 @@
1
+ require "devicon/rails/version"
2
+
3
+ module Devicon
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ module Devicon
2
+ module Rails
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,58 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: devicon-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Vincent Cornière
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-02-18 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Devicon v2 is a font.
14
+ email:
15
+ - vincent.corniere@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - Gemfile
22
+ - LICENSE.txt
23
+ - README.md
24
+ - Rakefile
25
+ - app/assets/fonts/devicon.eot
26
+ - app/assets/fonts/devicon.svg
27
+ - app/assets/fonts/devicon.ttf
28
+ - app/assets/fonts/devicon.woff
29
+ - app/assets/stylesheets/devicon-colors.css
30
+ - app/assets/stylesheets/devicon.css.scss
31
+ - devicon-rails.gemspec
32
+ - lib/devicon/rails.rb
33
+ - lib/devicon/rails/version.rb
34
+ homepage: https://github.com/dezande/devicon-rails
35
+ licenses:
36
+ - MIT
37
+ metadata: {}
38
+ post_install_message:
39
+ rdoc_options: []
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ requirements: []
53
+ rubyforge_project:
54
+ rubygems_version: 2.5.2
55
+ signing_key:
56
+ specification_version: 4
57
+ summary: Devicon v2 for rails
58
+ test_files: []