rails_admin_sitemap 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dfe44916b38c67824950142afb4c72bc0e624470
4
- data.tar.gz: 2853ab38fd6a9c843f4274864cb4d3e3e6a4873b
3
+ metadata.gz: a9634fa434d382b9b49c5a14f5a7db71ae16ef21
4
+ data.tar.gz: d284549087675b3e39681fdfb3d5c50f1bc16eaf
5
5
  SHA512:
6
- metadata.gz: 2d9c94c50ab91759efe270c9b58a120f3f5f552027c66071eb1a937bdb1d9ccef3d105096f51abf5320cba42bbcfa718f4eedf17650ea80f9a8f6e4b94ea180c
7
- data.tar.gz: 84449a3079e092cb790ee5f3e281721ad493e5dff0dc8465ab68f2d7951eeca86a9fb50aba4cf66576005d25f0072ffbff6dc2aa215566a70035641d5106733a
6
+ metadata.gz: 4f327e72568cd79e676dd2f865b743ce9930232f2938f42d477b602dfeed7e726abac9d59927ee0d28cd1a9b37ecfc4753c04001ca87a3886c69dda36b8d2589
7
+ data.tar.gz: 363644c31f0acf4436c830d88e3589fb24909d1b6b2ac446e87deb125934287bd003e71dc6e958bed9f41bdea500dce8261caea86889f39f1c07189ca9d6d1f5
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2014 ack43
1
+ Copyright 2014 Alexander Kiseliev
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -5,8 +5,8 @@ ul.nav.pull-right.root_links
5
5
  - data_method = "put" if action.http_methods.include?(:put)
6
6
  - data_method = "delete" if action.http_methods.include?(:delete)
7
7
 
8
- li{class="#{action.action_name}_root_link"}= link_to wording_for(:menu, action), { action: action.action_name, controller: 'rails_admin/main' }, class: (action.pjax? ? "pjax" : ""), data: data_method ? {method: data_method, confirm: t("admin.actions.#{action.action_name}.confirm")} : nil
9
-
8
+ li{class="#{action.action_name}_root_link"}
9
+ = link_to wording_for(:menu, action), { action: action.action_name, controller: 'rails_admin/main' }, class: (action.pjax? ? "pjax" : ""), data: data_method ? {method: data_method, confirm: t("admin.actions.#{action.action_name}.confirm")} : nil
10
10
 
11
11
  - if main_app_root_path = (main_app.root_path rescue false)
12
12
  li= link_to t('admin.home.name').capitalize, main_app_root_path
@@ -16,4 +16,4 @@ ul.nav.pull-right.root_links
16
16
  - if logout_path.present?
17
17
  li= link_to content_tag('span', t('admin.misc.log_out'), class: 'label label-important'), logout_path, method: logout_method
18
18
  - if _current_user.respond_to?(:email) && _current_user.email.present?
19
- li= image_tag "#{(request.ssl? ? 'https://secure' : 'http://www')}.gravatar.com/avatar/#{Digest::MD5.hexdigest _current_user.email}?s=30", style: 'padding-top:5px'
19
+ li= image_tag "#{(request.ssl? ? 'https://secure' : 'http://www')}.gravatar.com/avatar/#{Digest::MD5.hexdigest _current_user.email}?s=30", style: 'padding-top:5px'
@@ -1,3 +1,3 @@
1
1
  module RailsAdminSitemap
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0".freeze
3
3
  end
@@ -5,4 +5,4 @@ require 'rails_admin/config/model'
5
5
 
6
6
  require 'rails_admin_sitemap/config'
7
7
  require 'rails_admin_sitemap/action'
8
- require 'rails_admin_sitemap/engine'
8
+ require 'rails_admin_sitemap/engine'
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_admin_sitemap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Kiseliev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-13 00:00:00.000000000 Z
11
+ date: 2016-11-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rails
14
+ name: rails_admin
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: 0.8.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: 0.8.1
27
27
  description: gem sitemap_generator integration in rails_admin
28
28
  email:
29
29
  - i43ack@gmail.com
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
61
  version: '0'
62
62
  requirements: []
63
63
  rubyforge_project:
64
- rubygems_version: 2.2.2
64
+ rubygems_version: 2.4.8
65
65
  signing_key:
66
66
  specification_version: 4
67
67
  summary: gem sitemap_generator integration in rails_admin