technology-icons 0.1.2 → 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.
- checksums.yaml +5 -5
- data/.github/workflows/ci.yml +54 -0
- data/.gitignore +32 -3
- data/.rspec +1 -0
- data/.rubocop.yml +34 -0
- data/CHANGELOG.md +34 -0
- data/Gemfile +7 -2
- data/README.md +34 -19
- data/Rakefile +6 -2
- data/UPGRADE_GUIDE.md +24 -0
- data/lib/technology/icons/version.rb +3 -1
- data/lib/technology/icons.rb +2 -0
- data/technology-icons.gemspec +28 -18
- metadata +75 -22
- data/.travis.yml +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 8f962efef0b4746d868af0894d3e771ad7b4ce4c828673b01772bc5598a843da
|
|
4
|
+
data.tar.gz: 9f9d9a8e47523635d62669cc376f8924fc362eca74541d04dafa019975547638
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a33c6d7e3ec2df42519a36159c78c37b01ac5d241e7341a8dc1bbe385c4036781acc4b6c9d054089684e3af637d564fed237e257280b501ae507485840d80c5
|
|
7
|
+
data.tar.gz: 51afced6bc74e6523adaaec6a9f4b019204899be6111a90e1c224b4f402f5db3a35abf1f36021a1a1c08d484c8046d3d77ead84a70b33f175c90da5cb5b11c8e
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ main, master, modernize ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ main, master, modernize ]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
test:
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
strategy:
|
|
13
|
+
fail-fast: false
|
|
14
|
+
matrix:
|
|
15
|
+
ruby: ['3.0', '3.1', '3.2', '3.3']
|
|
16
|
+
rails: ['6.0', '6.1', '7.0', '7.1', '7.2', '8.0']
|
|
17
|
+
exclude:
|
|
18
|
+
- ruby: '3.0'
|
|
19
|
+
rails: '7.2'
|
|
20
|
+
- ruby: '3.0'
|
|
21
|
+
rails: '8.0'
|
|
22
|
+
|
|
23
|
+
env:
|
|
24
|
+
RAILS_VERSION: ${{ matrix.rails }}
|
|
25
|
+
|
|
26
|
+
steps:
|
|
27
|
+
- uses: actions/checkout@v4
|
|
28
|
+
|
|
29
|
+
- name: Set up Ruby
|
|
30
|
+
uses: ruby/setup-ruby@v1
|
|
31
|
+
with:
|
|
32
|
+
ruby-version: ${{ matrix.ruby }}
|
|
33
|
+
bundler-cache: true
|
|
34
|
+
|
|
35
|
+
- name: Run tests
|
|
36
|
+
run: bundle exec rake
|
|
37
|
+
|
|
38
|
+
- name: Run RuboCop
|
|
39
|
+
run: bundle exec rubocop
|
|
40
|
+
|
|
41
|
+
security:
|
|
42
|
+
runs-on: ubuntu-latest
|
|
43
|
+
|
|
44
|
+
steps:
|
|
45
|
+
- uses: actions/checkout@v4
|
|
46
|
+
|
|
47
|
+
- name: Set up Ruby
|
|
48
|
+
uses: ruby/setup-ruby@v1
|
|
49
|
+
with:
|
|
50
|
+
ruby-version: '3.3'
|
|
51
|
+
bundler-cache: true
|
|
52
|
+
|
|
53
|
+
- name: Security audit
|
|
54
|
+
run: bundle exec bundle-audit --update
|
data/.gitignore
CHANGED
|
@@ -1,9 +1,38 @@
|
|
|
1
|
+
## Ruby/Bundler
|
|
1
2
|
/.bundle/
|
|
2
|
-
|
|
3
|
+
/vendor/bundle/
|
|
3
4
|
/Gemfile.lock
|
|
5
|
+
|
|
6
|
+
## Documentation
|
|
7
|
+
/.yardoc/
|
|
4
8
|
/_yardoc/
|
|
5
|
-
/coverage/
|
|
6
9
|
/doc/
|
|
7
|
-
/
|
|
10
|
+
/rdoc/
|
|
11
|
+
|
|
12
|
+
## Testing
|
|
13
|
+
/coverage/
|
|
8
14
|
/spec/reports/
|
|
15
|
+
/test/tmp/
|
|
16
|
+
/test/version_tmp/
|
|
17
|
+
|
|
18
|
+
## Build artifacts
|
|
19
|
+
/pkg/
|
|
9
20
|
/tmp/
|
|
21
|
+
*.gem
|
|
22
|
+
|
|
23
|
+
## IDE and OS files
|
|
24
|
+
.DS_Store
|
|
25
|
+
.idea/
|
|
26
|
+
.vscode/
|
|
27
|
+
*.swp
|
|
28
|
+
*.swo
|
|
29
|
+
*~
|
|
30
|
+
.ruby-version
|
|
31
|
+
.ruby-gemset
|
|
32
|
+
|
|
33
|
+
## Environment
|
|
34
|
+
.env
|
|
35
|
+
.env.local
|
|
36
|
+
|
|
37
|
+
## Logs
|
|
38
|
+
npm-debug.log
|
data/.rspec
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
--require spec_helper
|
data/.rubocop.yml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
AllCops:
|
|
2
|
+
TargetRubyVersion: 3.0
|
|
3
|
+
NewCops: enable
|
|
4
|
+
SuggestExtensions: false
|
|
5
|
+
Exclude:
|
|
6
|
+
- 'vendor/**/*'
|
|
7
|
+
- 'bin/**/*'
|
|
8
|
+
|
|
9
|
+
Style/Documentation:
|
|
10
|
+
Enabled: false
|
|
11
|
+
|
|
12
|
+
Style/StringLiterals:
|
|
13
|
+
Enabled: true
|
|
14
|
+
EnforcedStyle: double_quotes
|
|
15
|
+
|
|
16
|
+
Style/FrozenStringLiteralComment:
|
|
17
|
+
Enabled: true
|
|
18
|
+
EnforcedStyle: always
|
|
19
|
+
|
|
20
|
+
Layout/LineLength:
|
|
21
|
+
Max: 120
|
|
22
|
+
Exclude:
|
|
23
|
+
- '*.gemspec'
|
|
24
|
+
|
|
25
|
+
Metrics/BlockLength:
|
|
26
|
+
Exclude:
|
|
27
|
+
- 'spec/**/*'
|
|
28
|
+
- '*.gemspec'
|
|
29
|
+
|
|
30
|
+
Gemspec/DevelopmentDependencies:
|
|
31
|
+
Enabled: false
|
|
32
|
+
|
|
33
|
+
Gemspec/AddRuntimeDependency:
|
|
34
|
+
Enabled: false
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [1.0.0] - 2026-05-30
|
|
6
|
+
|
|
7
|
+
### Breaking Changes
|
|
8
|
+
|
|
9
|
+
- Minimum Ruby version increased to 3.0
|
|
10
|
+
- Minimum Rails version increased to 6.0
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Explicit `railties` runtime dependency (>= 6.0, < 9.0)
|
|
15
|
+
- GitHub Actions CI with Ruby and Rails matrix
|
|
16
|
+
- RuboCop configuration and linting in CI
|
|
17
|
+
- bundler-audit security scanning in CI
|
|
18
|
+
- RSpec test suite
|
|
19
|
+
- CHANGELOG and UPGRADE_GUIDE
|
|
20
|
+
- Expanded gemspec metadata and MFA requirement
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Modernized gemspec and development dependencies
|
|
25
|
+
- Updated README with Requirements and modern asset pipeline notes
|
|
26
|
+
- Removed Travis CI
|
|
27
|
+
|
|
28
|
+
## [0.1.2] - Previous Release
|
|
29
|
+
|
|
30
|
+
- Technology icon webfont packaged as a Rails engine
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
For upgrade instructions, see [UPGRADE_GUIDE.md](UPGRADE_GUIDE.md)
|
data/Gemfile
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
source "https://rubygems.org"
|
|
2
4
|
|
|
3
|
-
# Specify your gem's dependencies in technology-icons.gemspec
|
|
4
5
|
gemspec
|
|
6
|
+
|
|
7
|
+
if (rails_version = ENV.fetch("RAILS_VERSION", nil))
|
|
8
|
+
gem "railties", "~> #{rails_version}.0"
|
|
9
|
+
end
|
data/README.md
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
# Technology::Icons
|
|
2
2
|
|
|
3
|
-
[](https://hakiri.io/github/ethirajsrinivasan/technology-icons/master)
|
|
3
|
+
[](https://github.com/ethirajsrinivasan/technology-icons/actions/workflows/ci.yml)
|
|
4
|
+
[](https://badge.fury.io/rb/technology-icons)
|
|
6
5
|
|
|
6
|
+
Technology icon webfont for Rails applications.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
## Requirements
|
|
9
|
+
|
|
10
|
+
- Ruby >= 3.0
|
|
11
|
+
- Rails >= 6.0
|
|
9
12
|
|
|
10
13
|
## Installation
|
|
11
14
|
|
|
@@ -17,34 +20,46 @@ gem 'technology-icons'
|
|
|
17
20
|
|
|
18
21
|
And then execute:
|
|
19
22
|
|
|
20
|
-
|
|
23
|
+
```bash
|
|
24
|
+
bundle install
|
|
25
|
+
```
|
|
21
26
|
|
|
22
27
|
Or install it yourself as:
|
|
23
28
|
|
|
24
|
-
|
|
29
|
+
```bash
|
|
30
|
+
gem install technology-icons
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Asset Pipeline Setup
|
|
34
|
+
|
|
35
|
+
**For Rails 6.x / 7.x with Sprockets:**
|
|
25
36
|
|
|
37
|
+
Add to your `application.css`:
|
|
26
38
|
|
|
27
|
-
|
|
39
|
+
```css
|
|
40
|
+
*= require technology/icons
|
|
41
|
+
```
|
|
28
42
|
|
|
29
|
-
|
|
43
|
+
**For Rails 7+ with Import Maps:**
|
|
44
|
+
|
|
45
|
+
Pin and import the stylesheet through your application's asset setup if you copy or expose the gem asset path.
|
|
30
46
|
|
|
31
47
|
## Usage
|
|
32
48
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
49
|
+
```html
|
|
50
|
+
<em class="icon-flash"></em> Flash
|
|
51
|
+
<em class="icon-drupal"></em> Drupal
|
|
52
|
+
<a href="#" class="icon-mongodb"></a> MongoDb
|
|
53
|
+
```
|
|
36
54
|
|
|
37
|
-
##
|
|
55
|
+
## Upgrading from 0.x to 1.0
|
|
38
56
|
|
|
57
|
+
Version 1.0.0 requires Ruby 3.0+ and Rails 6.0+. See [UPGRADE_GUIDE.md](UPGRADE_GUIDE.md) for details.
|
|
39
58
|
|
|
40
|
-
|
|
41
|
-
2.Create your feature branch (git checkout -b my-new-feature)
|
|
42
|
-
3.Commit your changes (git commit -am 'Add some feature')
|
|
43
|
-
4.Push to the branch (git push origin my-new-feature)
|
|
44
|
-
5.Create new Pull Request
|
|
59
|
+
## Contributing
|
|
45
60
|
|
|
61
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/ethirajsrinivasan/technology-icons. Contributors are expected to adhere to the [Contributor Covenant](CODE_OF_CONDUCT.md) code of conduct.
|
|
46
62
|
|
|
47
63
|
## License
|
|
48
64
|
|
|
49
|
-
The gem is available as open source under the terms of the [MIT License](
|
|
50
|
-
|
|
65
|
+
The gem is available as open source under the terms of the [MIT License](LICENSE.txt).
|
data/Rakefile
CHANGED
data/UPGRADE_GUIDE.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Upgrade Guide: Technology-Icons 0.x to 1.0
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
Technology-Icons 1.0 modernizes the gem for current Ruby and Rails versions.
|
|
6
|
+
|
|
7
|
+
## What Changed
|
|
8
|
+
|
|
9
|
+
| Component | Old Version | New Version |
|
|
10
|
+
|-----------|-------------|-------------|
|
|
11
|
+
| Ruby | >= 1.9.3 | >= 3.0 |
|
|
12
|
+
| Rails | (implicit) | >= 6.0 |
|
|
13
|
+
|
|
14
|
+
## Upgrade Steps
|
|
15
|
+
|
|
16
|
+
1. Ensure your application runs Ruby 3.0+ and Rails 6.0+
|
|
17
|
+
2. Update your Gemfile: `gem 'technology-icons', '~> 1.0'`
|
|
18
|
+
3. Run `bundle update technology-icons`
|
|
19
|
+
4. Verify `*= require technology/icons` still works in your asset pipeline
|
|
20
|
+
|
|
21
|
+
## Getting Help
|
|
22
|
+
|
|
23
|
+
- [GitHub Issues](https://github.com/ethirajsrinivasan/technology-icons/issues)
|
|
24
|
+
- [CHANGELOG.md](CHANGELOG.md)
|
data/lib/technology/icons.rb
CHANGED
data/technology-icons.gemspec
CHANGED
|
@@ -1,33 +1,43 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
require 'technology/icons/version'
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/technology/icons/version"
|
|
5
4
|
|
|
6
5
|
Gem::Specification.new do |spec|
|
|
7
6
|
spec.name = "technology-icons"
|
|
8
7
|
spec.version = Technology::Icons::VERSION
|
|
9
|
-
spec.authors = ["
|
|
8
|
+
spec.authors = ["ethi"]
|
|
10
9
|
spec.email = ["ethirajsrinivasan@gmail.com"]
|
|
11
10
|
|
|
12
|
-
spec.summary = "
|
|
13
|
-
spec.description = "
|
|
11
|
+
spec.summary = "Technology icon webfont for Rails applications"
|
|
12
|
+
spec.description = "A Rails asset gem that packages a technology-icon webfont for use in Rails applications"
|
|
14
13
|
spec.homepage = "https://github.com/ethirajsrinivasan/technology-icons"
|
|
15
14
|
spec.license = "MIT"
|
|
16
15
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
16
|
+
spec.metadata = {
|
|
17
|
+
"allowed_push_host" => "https://rubygems.org",
|
|
18
|
+
"homepage_uri" => spec.homepage,
|
|
19
|
+
"source_code_uri" => "https://github.com/ethirajsrinivasan/technology-icons",
|
|
20
|
+
"bug_tracker_uri" => "https://github.com/ethirajsrinivasan/technology-icons/issues",
|
|
21
|
+
"changelog_uri" => "https://github.com/ethirajsrinivasan/technology-icons/blob/master/CHANGELOG.md",
|
|
22
|
+
"documentation_uri" => "https://github.com/ethirajsrinivasan/technology-icons/blob/master/README.md",
|
|
23
|
+
"rubygems_mfa_required" => "true"
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
spec.files = Dir.chdir(__dir__) do
|
|
27
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
23
28
|
end
|
|
24
29
|
|
|
25
|
-
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
26
30
|
spec.bindir = "exe"
|
|
27
31
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
28
32
|
spec.require_paths = ["lib"]
|
|
29
|
-
|
|
30
|
-
spec.
|
|
31
|
-
|
|
32
|
-
spec.
|
|
33
|
+
|
|
34
|
+
spec.required_ruby_version = ">= 3.0"
|
|
35
|
+
|
|
36
|
+
spec.add_runtime_dependency "railties", ">= 6.0", "< 9.0"
|
|
37
|
+
|
|
38
|
+
spec.add_development_dependency "bundler", "~> 2.4"
|
|
39
|
+
spec.add_development_dependency "bundler-audit", "~> 0.9"
|
|
40
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
|
41
|
+
spec.add_development_dependency "rspec", "~> 3.12"
|
|
42
|
+
spec.add_development_dependency "rubocop", "~> 1.50"
|
|
33
43
|
end
|
metadata
CHANGED
|
@@ -1,72 +1,123 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: technology-icons
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
autorequire:
|
|
7
|
+
- ethi
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: railties
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '6.0'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '9.0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '6.0'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '9.0'
|
|
13
32
|
- !ruby/object:Gem::Dependency
|
|
14
33
|
name: bundler
|
|
15
34
|
requirement: !ruby/object:Gem::Requirement
|
|
16
35
|
requirements:
|
|
17
36
|
- - "~>"
|
|
18
37
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
38
|
+
version: '2.4'
|
|
39
|
+
type: :development
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '2.4'
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: bundler-audit
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '0.9'
|
|
20
53
|
type: :development
|
|
21
54
|
prerelease: false
|
|
22
55
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
56
|
requirements:
|
|
24
57
|
- - "~>"
|
|
25
58
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
59
|
+
version: '0.9'
|
|
27
60
|
- !ruby/object:Gem::Dependency
|
|
28
61
|
name: rake
|
|
29
62
|
requirement: !ruby/object:Gem::Requirement
|
|
30
63
|
requirements:
|
|
31
64
|
- - "~>"
|
|
32
65
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
66
|
+
version: '13.0'
|
|
34
67
|
type: :development
|
|
35
68
|
prerelease: false
|
|
36
69
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
70
|
requirements:
|
|
38
71
|
- - "~>"
|
|
39
72
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
73
|
+
version: '13.0'
|
|
41
74
|
- !ruby/object:Gem::Dependency
|
|
42
75
|
name: rspec
|
|
43
76
|
requirement: !ruby/object:Gem::Requirement
|
|
44
77
|
requirements:
|
|
45
|
-
- - "
|
|
78
|
+
- - "~>"
|
|
46
79
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
80
|
+
version: '3.12'
|
|
48
81
|
type: :development
|
|
49
82
|
prerelease: false
|
|
50
83
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
84
|
requirements:
|
|
52
|
-
- - "
|
|
85
|
+
- - "~>"
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '3.12'
|
|
88
|
+
- !ruby/object:Gem::Dependency
|
|
89
|
+
name: rubocop
|
|
90
|
+
requirement: !ruby/object:Gem::Requirement
|
|
91
|
+
requirements:
|
|
92
|
+
- - "~>"
|
|
93
|
+
- !ruby/object:Gem::Version
|
|
94
|
+
version: '1.50'
|
|
95
|
+
type: :development
|
|
96
|
+
prerelease: false
|
|
97
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
98
|
+
requirements:
|
|
99
|
+
- - "~>"
|
|
53
100
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
55
|
-
description:
|
|
56
|
-
|
|
101
|
+
version: '1.50'
|
|
102
|
+
description: A Rails asset gem that packages a technology-icon webfont for use in
|
|
103
|
+
Rails applications
|
|
57
104
|
email:
|
|
58
105
|
- ethirajsrinivasan@gmail.com
|
|
59
106
|
executables: []
|
|
60
107
|
extensions: []
|
|
61
108
|
extra_rdoc_files: []
|
|
62
109
|
files:
|
|
110
|
+
- ".github/workflows/ci.yml"
|
|
63
111
|
- ".gitignore"
|
|
64
|
-
- ".
|
|
112
|
+
- ".rspec"
|
|
113
|
+
- ".rubocop.yml"
|
|
114
|
+
- CHANGELOG.md
|
|
65
115
|
- CODE_OF_CONDUCT.md
|
|
66
116
|
- Gemfile
|
|
67
117
|
- LICENSE.txt
|
|
68
118
|
- README.md
|
|
69
119
|
- Rakefile
|
|
120
|
+
- UPGRADE_GUIDE.md
|
|
70
121
|
- app/assets/fonts/technology-icons.eot
|
|
71
122
|
- app/assets/fonts/technology-icons.svg
|
|
72
123
|
- app/assets/fonts/technology-icons.ttf
|
|
@@ -82,7 +133,12 @@ licenses:
|
|
|
82
133
|
- MIT
|
|
83
134
|
metadata:
|
|
84
135
|
allowed_push_host: https://rubygems.org
|
|
85
|
-
|
|
136
|
+
homepage_uri: https://github.com/ethirajsrinivasan/technology-icons
|
|
137
|
+
source_code_uri: https://github.com/ethirajsrinivasan/technology-icons
|
|
138
|
+
bug_tracker_uri: https://github.com/ethirajsrinivasan/technology-icons/issues
|
|
139
|
+
changelog_uri: https://github.com/ethirajsrinivasan/technology-icons/blob/master/CHANGELOG.md
|
|
140
|
+
documentation_uri: https://github.com/ethirajsrinivasan/technology-icons/blob/master/README.md
|
|
141
|
+
rubygems_mfa_required: 'true'
|
|
86
142
|
rdoc_options: []
|
|
87
143
|
require_paths:
|
|
88
144
|
- lib
|
|
@@ -90,17 +146,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
90
146
|
requirements:
|
|
91
147
|
- - ">="
|
|
92
148
|
- !ruby/object:Gem::Version
|
|
93
|
-
version:
|
|
149
|
+
version: '3.0'
|
|
94
150
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
151
|
requirements:
|
|
96
152
|
- - ">="
|
|
97
153
|
- !ruby/object:Gem::Version
|
|
98
154
|
version: '0'
|
|
99
155
|
requirements: []
|
|
100
|
-
|
|
101
|
-
rubygems_version: 2.5.1
|
|
102
|
-
signing_key:
|
|
156
|
+
rubygems_version: 3.6.7
|
|
103
157
|
specification_version: 4
|
|
104
|
-
summary:
|
|
105
|
-
be included in your rails application
|
|
158
|
+
summary: Technology icon webfont for Rails applications
|
|
106
159
|
test_files: []
|