active_material_icon 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 +7 -0
- data/.DS_Store +0 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CHANGELOG.md +15 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +35 -0
- data/LICENSE.txt +21 -0
- data/README.md +85 -0
- data/Rakefile +6 -0
- data/active_material_icon.gemspec +42 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/example.png +0 -0
- data/lib/active_material_icon.rb +8 -0
- data/lib/active_material_icon/menu_item.rb +21 -0
- data/lib/active_material_icon/version.rb +3 -0
- data/lib/active_material_icon/views/menu_item.rb +29 -0
- data/lib/generators/active_material_icon/install_generator.rb +45 -0
- metadata +110 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: ac6cf9d36e4eee05e9112261fad513df5f040501c4816a897b33c12df7bdbd99
|
|
4
|
+
data.tar.gz: a69939853fa73addcc06d294d8e71d27c2326e0ae15ede4017c99060aeeb352d
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 36834c5836dbf6516f7438c21b9535643ddf1a4c056ff07e10295f3d3cde1fbd683c7c67dec852372b84cf648a9d0a7e7c86f4baaed1b95d4fcf9be367611a6a
|
|
7
|
+
data.tar.gz: aa7f1901feecad0ab320810982073a6c89ee527a6b11ee3934e9bdc84d2eb43c7dcdc2e0a15b3597f99eb89d29722ac55686aecee0f7f842e0e51d18326fed3d
|
data/.DS_Store
ADDED
|
Binary file
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
|
10
|
+
orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
* Public or private harassment
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at m.yunan.helmy@gmail.com. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
|
72
|
+
|
|
73
|
+
[homepage]: http://contributor-covenant.org
|
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
active_material_icon (0.1.2)
|
|
5
|
+
|
|
6
|
+
GEM
|
|
7
|
+
remote: https://rubygems.org/
|
|
8
|
+
specs:
|
|
9
|
+
diff-lcs (1.3)
|
|
10
|
+
rake (10.5.0)
|
|
11
|
+
rspec (3.8.0)
|
|
12
|
+
rspec-core (~> 3.8.0)
|
|
13
|
+
rspec-expectations (~> 3.8.0)
|
|
14
|
+
rspec-mocks (~> 3.8.0)
|
|
15
|
+
rspec-core (3.8.2)
|
|
16
|
+
rspec-support (~> 3.8.0)
|
|
17
|
+
rspec-expectations (3.8.4)
|
|
18
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
19
|
+
rspec-support (~> 3.8.0)
|
|
20
|
+
rspec-mocks (3.8.1)
|
|
21
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
22
|
+
rspec-support (~> 3.8.0)
|
|
23
|
+
rspec-support (3.8.2)
|
|
24
|
+
|
|
25
|
+
PLATFORMS
|
|
26
|
+
ruby
|
|
27
|
+
|
|
28
|
+
DEPENDENCIES
|
|
29
|
+
active_material_icon!
|
|
30
|
+
bundler (~> 2.0)
|
|
31
|
+
rake (~> 10.0)
|
|
32
|
+
rspec (~> 3.0)
|
|
33
|
+
|
|
34
|
+
BUNDLED WITH
|
|
35
|
+
2.0.1
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 Yunan Helmy
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# ActiveMaterialIcon
|
|
2
|
+
|
|
3
|
+
ActiveMaterialIcon is an additional menu icon for [active_material](https://github.com/vigetlabs/active_material). It is specified for branch `nh-responsive-redesign`.
|
|
4
|
+
|
|
5
|
+
By installing ActiveMaterialIcon you will have a material icons on your menu.
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
Add this line to your application's Gemfile:
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
gem 'active_admin'
|
|
15
|
+
gem 'active_material', github: 'vigetlabs/active_material', branch: 'nh-responsive-redesign'
|
|
16
|
+
gem 'active_material_icon' # ActiveMaterialIcon after active_admin and active_material
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Please make sure that ActiveMaterialIcon is placed after active_admin and active_material.
|
|
20
|
+
|
|
21
|
+
And then execute:
|
|
22
|
+
|
|
23
|
+
$ bundle
|
|
24
|
+
|
|
25
|
+
Or install it yourself as:
|
|
26
|
+
|
|
27
|
+
$ gem install active_material_icon
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
Before installing ActiveMaterialIcon, in order to make this gem working, you have to :
|
|
31
|
+
|
|
32
|
+
1. Generate active_admin `rails g active_admin:install`
|
|
33
|
+
2. Use [active_material](https://github.com/vigetlabs/active_material#usage) responsive branch `gem 'active_material', github: 'vigetlabs/active_material', branch: 'nh-responsive-redesign'`
|
|
34
|
+
3. Follow [usage](https://github.com/vigetlabs/active_material#usage) of active_material, especially on SCSS `@import "active_material";`
|
|
35
|
+
|
|
36
|
+
Generate installation of ActiveMaterialIcon:
|
|
37
|
+
|
|
38
|
+
$ rails g active_material_icon:install
|
|
39
|
+
|
|
40
|
+
## Changes
|
|
41
|
+
|
|
42
|
+
Some files are changed automatically when you run install generator :
|
|
43
|
+
|
|
44
|
+
1. File `config/initializers/active_admin.rb` before line *# == Menu System*
|
|
45
|
+
2. File `app/assets/stylesheets/active_admin.scss` after line *@import "active_material";*
|
|
46
|
+
|
|
47
|
+
## Usage
|
|
48
|
+
|
|
49
|
+
ActiveMaterialIcon comes with new argument `icon` in menu builder. You could add any material icons on your menu.
|
|
50
|
+
|
|
51
|
+
List of [material icons](https://material.io/tools/icons/?style=baseline).
|
|
52
|
+
|
|
53
|
+
Example :
|
|
54
|
+
|
|
55
|
+
```ruby
|
|
56
|
+
menu priority: 1, label: proc { I18n.t("active_admin.dashboard") }, icon: :home
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Development
|
|
60
|
+
|
|
61
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
62
|
+
|
|
63
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
64
|
+
|
|
65
|
+
## Release
|
|
66
|
+
|
|
67
|
+
To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
68
|
+
|
|
69
|
+
You could use [gem release](https://github.com/svenfuchs/gem-release).
|
|
70
|
+
1. Install gem release using command `gem install gem-release`.
|
|
71
|
+
2. Update version using command `gem bump minor`
|
|
72
|
+
3. Build gem using command `gem build active_material_icon.gemspec`
|
|
73
|
+
4. Release gem using command `gem release`
|
|
74
|
+
|
|
75
|
+
## Contributing
|
|
76
|
+
|
|
77
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/yunanhelmy/active_material_icon. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
78
|
+
|
|
79
|
+
## License
|
|
80
|
+
|
|
81
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
82
|
+
|
|
83
|
+
## Code of Conduct
|
|
84
|
+
|
|
85
|
+
Everyone interacting in the ActiveMaterialIcon project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/yunanhelmy/active_material_icon/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
|
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require "active_material_icon/version"
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "active_material_icon"
|
|
8
|
+
spec.version = ActiveMaterialIcon::VERSION
|
|
9
|
+
spec.authors = ["Yunan Helmy"]
|
|
10
|
+
spec.email = ["m.yunan.helmy@gmail.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = "ActiveMaterialIcon is an additional menu icon for active_material https://github.com/vigetlabs/active_material"
|
|
13
|
+
spec.description = "ActiveMaterialIcon is an additional menu icon for active_material https://github.com/vigetlabs/active_material. It is specified for branch nh-responsive-redesign."
|
|
14
|
+
spec.homepage = "https://github.com/yunanhelmy/active_material_icon"
|
|
15
|
+
spec.license = "MIT"
|
|
16
|
+
|
|
17
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
18
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
19
|
+
if spec.respond_to?(:metadata)
|
|
20
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
21
|
+
|
|
22
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
23
|
+
spec.metadata["source_code_uri"] = "https://github.com/yunanhelmy/active_material_icon"
|
|
24
|
+
spec.metadata["changelog_uri"] = "https://github.com/yunanhelmy/active_material_icon/blob/master/CHANGELOG.md"
|
|
25
|
+
else
|
|
26
|
+
raise "RubyGems 2.0 or newer is required to protect against " \
|
|
27
|
+
"public gem pushes."
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
# Specify which files should be added to the gem when it is released.
|
|
31
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
32
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
33
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
34
|
+
end
|
|
35
|
+
spec.bindir = "exe"
|
|
36
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
37
|
+
spec.require_paths = ["lib"]
|
|
38
|
+
|
|
39
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
|
40
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
41
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
|
42
|
+
end
|
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "active_material_icon"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/example.png
ADDED
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
module ActiveAdmin
|
|
2
|
+
class MenuItem
|
|
3
|
+
|
|
4
|
+
attr_reader :icon
|
|
5
|
+
|
|
6
|
+
def initialize(options = {})
|
|
7
|
+
super() # MenuNode
|
|
8
|
+
@icon = "<i class='material-icons'>#{options[:icon] || "arrow_right" }</i>"
|
|
9
|
+
@label = options[:label]
|
|
10
|
+
@dirty_id = options[:id] || options[:label]
|
|
11
|
+
@url = options[:url] || '#'
|
|
12
|
+
@priority = options[:priority] || 10
|
|
13
|
+
@html_options = options[:html_options] || {}
|
|
14
|
+
@should_display = options[:if] || proc { true }
|
|
15
|
+
@parent = options[:parent]
|
|
16
|
+
|
|
17
|
+
yield(self) if block_given? # Builder style syntax
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
end
|
|
21
|
+
end
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
module ActiveAdmin
|
|
2
|
+
module Views
|
|
3
|
+
|
|
4
|
+
class MenuItem < Component
|
|
5
|
+
|
|
6
|
+
def build(item, options = {})
|
|
7
|
+
super(options.merge(id: item.id))
|
|
8
|
+
@label = [item.icon, " "].join(" ").html_safe + (helpers.render_in_context self, item.label)
|
|
9
|
+
@url = helpers.render_in_context self, item.url
|
|
10
|
+
@priority = item.priority
|
|
11
|
+
@submenu = nil
|
|
12
|
+
|
|
13
|
+
add_class "current" if item.current? assigns[:current_tab]
|
|
14
|
+
|
|
15
|
+
if url
|
|
16
|
+
text_node link_to label, url, item.html_options
|
|
17
|
+
else
|
|
18
|
+
span label, item.html_options
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
if item.items.any?
|
|
22
|
+
add_class "has_nested"
|
|
23
|
+
@submenu = menu(item)
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
module ActiveMaterialIcon
|
|
2
|
+
class InstallGenerator < Rails::Generators::Base
|
|
3
|
+
source_root File.expand_path("../../templates", __FILE__)
|
|
4
|
+
|
|
5
|
+
def inject_css_code
|
|
6
|
+
insert_into_file "app/assets/stylesheets/active_admin.scss", after: '@import "active_material";' do
|
|
7
|
+
"
|
|
8
|
+
|
|
9
|
+
.header-item.tabs li a {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
"
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def inject_utility_nav
|
|
19
|
+
insert_into_file "config/initializers/active_admin.rb", before: "# == Menu System" do
|
|
20
|
+
"
|
|
21
|
+
|
|
22
|
+
config.register_stylesheet 'https://fonts.googleapis.com/icon?family=Material+Icons'
|
|
23
|
+
|
|
24
|
+
config.namespace :admin do |admin|
|
|
25
|
+
admin.build_menu :utility_navigation do |menu|
|
|
26
|
+
menu.add id: 'current_user', priority: 1, html_options: {},
|
|
27
|
+
icon: 'account_circle',
|
|
28
|
+
label: -> { display_name current_active_admin_user },
|
|
29
|
+
url: -> { auto_url_for(current_active_admin_user) },
|
|
30
|
+
if: :current_active_admin_user?
|
|
31
|
+
|
|
32
|
+
menu.add id: 'logout', priority: 2, html_options: {method: (config.logout_link_method || :get)},
|
|
33
|
+
icon: 'logout',
|
|
34
|
+
label: -> { I18n.t 'active_admin.logout' },
|
|
35
|
+
url: -> { render_or_call_method_or_proc_on self, active_admin_namespace.logout_link_path },
|
|
36
|
+
if: :current_active_admin_user?
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
"
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
end
|
|
45
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: active_material_icon
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.3
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Yunan Helmy
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-07-17 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '2.0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '2.0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.0'
|
|
55
|
+
description: ActiveMaterialIcon is an additional menu icon for active_material https://github.com/vigetlabs/active_material.
|
|
56
|
+
It is specified for branch nh-responsive-redesign.
|
|
57
|
+
email:
|
|
58
|
+
- m.yunan.helmy@gmail.com
|
|
59
|
+
executables: []
|
|
60
|
+
extensions: []
|
|
61
|
+
extra_rdoc_files: []
|
|
62
|
+
files:
|
|
63
|
+
- ".DS_Store"
|
|
64
|
+
- ".gitignore"
|
|
65
|
+
- ".rspec"
|
|
66
|
+
- ".travis.yml"
|
|
67
|
+
- CHANGELOG.md
|
|
68
|
+
- CODE_OF_CONDUCT.md
|
|
69
|
+
- Gemfile
|
|
70
|
+
- Gemfile.lock
|
|
71
|
+
- LICENSE.txt
|
|
72
|
+
- README.md
|
|
73
|
+
- Rakefile
|
|
74
|
+
- active_material_icon.gemspec
|
|
75
|
+
- bin/console
|
|
76
|
+
- bin/setup
|
|
77
|
+
- example.png
|
|
78
|
+
- lib/active_material_icon.rb
|
|
79
|
+
- lib/active_material_icon/menu_item.rb
|
|
80
|
+
- lib/active_material_icon/version.rb
|
|
81
|
+
- lib/active_material_icon/views/menu_item.rb
|
|
82
|
+
- lib/generators/active_material_icon/install_generator.rb
|
|
83
|
+
homepage: https://github.com/yunanhelmy/active_material_icon
|
|
84
|
+
licenses:
|
|
85
|
+
- MIT
|
|
86
|
+
metadata:
|
|
87
|
+
allowed_push_host: https://rubygems.org
|
|
88
|
+
homepage_uri: https://github.com/yunanhelmy/active_material_icon
|
|
89
|
+
source_code_uri: https://github.com/yunanhelmy/active_material_icon
|
|
90
|
+
changelog_uri: https://github.com/yunanhelmy/active_material_icon/blob/master/CHANGELOG.md
|
|
91
|
+
post_install_message:
|
|
92
|
+
rdoc_options: []
|
|
93
|
+
require_paths:
|
|
94
|
+
- lib
|
|
95
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
96
|
+
requirements:
|
|
97
|
+
- - ">="
|
|
98
|
+
- !ruby/object:Gem::Version
|
|
99
|
+
version: '0'
|
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
|
+
requirements:
|
|
102
|
+
- - ">="
|
|
103
|
+
- !ruby/object:Gem::Version
|
|
104
|
+
version: '0'
|
|
105
|
+
requirements: []
|
|
106
|
+
rubygems_version: 3.0.3
|
|
107
|
+
signing_key:
|
|
108
|
+
specification_version: 4
|
|
109
|
+
summary: ActiveMaterialIcon is an additional menu icon for active_material https://github.com/vigetlabs/active_material
|
|
110
|
+
test_files: []
|