arctic_admin 3.0.0 → 3.3.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
- SHA1:
3
- metadata.gz: a7cfc06e17629bbafe98f4b1c994d3f81ea2ce41
4
- data.tar.gz: 6bb0720dd1bbe4096ebb7e1cecdff72312f9afab
2
+ SHA256:
3
+ metadata.gz: f6941e04a5fe35cb8dfb68e36db36ab2099a29c556b2bfb439442c87387c6827
4
+ data.tar.gz: d6723be6be3dbbf41c762bf864408a902c989229ad6ea527a6619094b4f04d28
5
5
  SHA512:
6
- metadata.gz: 415e20f92ee1bcacc8d322c96cbb8b06ce204c316320fa4a2980aa2c661ee9c890e2f63c9b9f46d2c62488395e377b1dc47f8f977fb8eeaf7c6b084722b5d61a
7
- data.tar.gz: 9c20857840ef64b120cb688d68eda5a7da221e9ebbc5e2c874b37f7de80d823c89002dd2241020b95d8c47a5a408be6711a9de49aa8fa7243ff2531b6c73b579
6
+ metadata.gz: 3f4305722258dc1735b389db444cb32cf987818b6ee9e110353b814a4245a2930ac234c714f147dd4dab4fc73734e0f6e69bcff4c3c4b892bd165afbf07be1f9
7
+ data.tar.gz: 25ea935c291845e8d52ec6e34689785ca1e13866e6b4a4994ac68129bda1b9311ea47f1f46a628ef2305ad6f5ee6b928d4bda40494d1461476a6d965a382f3db
data/Readme.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # ArcticAdmin
2
2
  [![Gem Version](https://img.shields.io/gem/v/arctic_admin.svg)](https://rubygems.org/gems/arctic_admin)
3
3
  [![Gem Downloads](https://img.shields.io/gem/dt/arctic_admin.svg)](https://rubygems.org/gems/arctic_admin)
4
+ [![Gem Version](https://img.shields.io/npm/v/arctic_admin.svg)](https://www.npmjs.com/package/arctic_admin)
5
+ [![Gem Downloads](https://img.shields.io/npm/dt/arctic_admin.svg)](https://www.npmjs.com/package/arctic_admin)
4
6
 
5
7
  Simple theme for ActiveAdmin :ok_hand:
6
8
 
@@ -12,6 +14,8 @@ Simple theme for ActiveAdmin :ok_hand:
12
14
 
13
15
  ## Installation
14
16
 
17
+ >**⚠️ If you are using webpacker (Standard with Rails 6) look below**
18
+
15
19
  - Add this to your Gemfile:
16
20
 
17
21
  ```ruby
@@ -73,19 +77,52 @@ In your `active_admin.js`, include the js file:
73
77
 
74
78
  :exclamation: **Remove the line `//= require active_admin/base`**
75
79
 
76
- ### Customization
80
+ ## Use with webpacker
77
81
 
78
- For this, you need to use sass to custom the theme.
82
+ ### 1 - Preparation
79
83
 
80
- You can even change basic color of the theme by placing some other variables:
84
+ Install the needed assets with npm or yarn:
81
85
 
82
- If you use the [SCSS](http://sass-lang.com/documentation/file.SASS_REFERENCE.html), add this to your
83
- `active_admin.scss` file:
86
+ ```
87
+ yarn add arctic_admin @fortawesome/fontawesome-free
88
+ ```
89
+
90
+
91
+ ### 2 - CSS
92
+
93
+ In your `app/javascript/stylesheets/active_admin.scss`, add the line:
94
+
95
+ ```scss
96
+ @import '~arctic_admin/src/scss/main';
97
+ ```
98
+
99
+ Remove:
100
+
101
+ ```scss
102
+ @import "~@activeadmin/activeadmin/src/scss/mixins";
103
+ @import "~@activeadmin/activeadmin/src/scss/base";
104
+ ```
105
+
106
+ ### 3 - JS
107
+
108
+ Search for `app/javascript/packs/active_admin.js` in your rails project and add the following lines:
109
+
110
+ ```js
111
+ import "@fortawesome/fontawesome-free/css/all.css";
112
+ import 'arctic_admin'
113
+ ```
114
+
115
+
116
+ ### Customization
117
+
118
+ For this, you need to use SASS to customize the theming.
119
+
120
+ Right now you can change the primary color of the theme by placing the following variable in your `active_admin.scss` file:
84
121
 
85
122
  ```scss
86
123
  $primary-color: #2dbb43;
87
124
 
88
- @import "arctic_admin/base";
125
+ @import "~arctic_admin/src/scss/main";
89
126
  ```
90
127
 
91
128
  If you use the
@@ -95,7 +132,7 @@ add this to your `active_admin.sass` file:
95
132
  ```sass
96
133
  $primary-color: #2dbb43
97
134
 
98
- @import arctic_admin/base
135
+ @import ~arctic_admin/src/scss/main
99
136
  ```
100
137
 
101
138
  Then restart your webserver if it was previously running.
@@ -1,77 +1,4 @@
1
1
  //= require jquery
2
2
  //= require jquery_ujs
3
3
  //= require active_admin/base
4
-
5
- $(function() {
6
- $(document).on('click touchstart', '#sidebar', function(e) {
7
- var position = $(this).position();
8
- var width = $(this).width();
9
- var target = e.target;
10
- if ((e.pageX < position.left) && (target.tagName != 'SELECT') && (target.tagName != 'OPTION')) {
11
- if ($(this).css('right') == '0px') {
12
- $(this).css('position', 'fixed');
13
- $(this).animate({
14
- right: "-="+width
15
- }, 600, function() {
16
- $(this).removeAttr('style');
17
- animationFilterDone = true;
18
- });
19
- } else {
20
- $(this).animate({
21
- right: "+="+width
22
- }, 600, function() {
23
- $(this).css('position', 'absolute');
24
- animationFilterDone = true;
25
- });
26
- }
27
- }
28
- });
29
-
30
- var animationDone = true;
31
- $(document).on('click touchstart', '#utility_nav', function(e) {
32
- var position = $(this).position();
33
- var tabs = $('#tabs');
34
- var width = Math.round(tabs[0].getBoundingClientRect().width);
35
-
36
- if (e.pageX < (position.left + 40)) {
37
- if(animationDone == true) {
38
- animationDone = false;
39
- if (tabs.css('left') == '0px') {
40
- tabs.animate({
41
- left: "-="+width
42
- }, 400, function() {
43
- animationDone = true;
44
- });
45
- } else {
46
- tabs.animate({
47
- left: "+="+width
48
- }, 400, function() {
49
- animationDone = true;
50
- });
51
- }
52
- }
53
- }
54
- });
55
-
56
- $(document).on('click touchstart', 'body', function(e) {
57
- var tabs = $('#tabs');
58
- var width = Math.round(tabs[0].getBoundingClientRect().width);
59
- if (tabs.css('left') == '0px') {
60
- if (e.pageX > width && e.pageY > 60) {
61
- if(animationDone == true) {
62
- animationDone = false;
63
- tabs.animate({
64
- left: "-="+width
65
- }, 400, function() {
66
- animationDone = true;
67
- });
68
- }
69
- }
70
- }
71
- });
72
-
73
- $(document).on('click', '#tabs .has_nested', function(e) {
74
- e.stopPropagation();
75
- $(this).toggleClass('open');
76
- });
77
- });
4
+ //= require ./main
@@ -0,0 +1,99 @@
1
+ $(function () {
2
+ var animationFilterDone = true
3
+ $(document).on('click touchstart', '#sidebar', function (e) {
4
+ if (animationFilterDone == true) {
5
+ var position = $(this).position()
6
+ var width = $(this).width()
7
+ var target = e.target
8
+ if (
9
+ e.pageX < position.left &&
10
+ target.tagName != 'SELECT' &&
11
+ target.tagName != 'OPTION'
12
+ ) {
13
+ if ($(this).css('right') == '0px') {
14
+ $(this).css('position', 'fixed')
15
+ $(this).animate(
16
+ {
17
+ right: '-=' + width
18
+ },
19
+ 600,
20
+ function () {
21
+ $(this).removeAttr('style')
22
+ animationFilterDone = true
23
+ }
24
+ )
25
+ } else {
26
+ $(this).animate(
27
+ {
28
+ right: '+=' + width
29
+ },
30
+ 600,
31
+ function () {
32
+ $(this).css('position', 'absolute')
33
+ animationFilterDone = true
34
+ }
35
+ )
36
+ }
37
+ }
38
+ }
39
+ })
40
+
41
+ var animationDone = true
42
+ $(document).on('click touchstart', '#utility_nav', function (e) {
43
+ var position = $(this).position()
44
+ var tabs = $('#tabs')
45
+ var width = (tabs.length==0)? 0 : Math.round(tabs[0].getBoundingClientRect().width)
46
+ if (e.pageX < position.left + 40) {
47
+ if (animationDone == true) {
48
+ animationDone = false
49
+ if (tabs.css('left') == '0px') {
50
+ tabs.animate(
51
+ {
52
+ left: '-=' + width
53
+ },
54
+ 400,
55
+ function () {
56
+ animationDone = true
57
+ }
58
+ )
59
+ } else {
60
+ tabs.animate(
61
+ {
62
+ left: '+=' + width
63
+ },
64
+ 400,
65
+ function () {
66
+ animationDone = true
67
+ }
68
+ )
69
+ }
70
+ }
71
+ }
72
+ })
73
+
74
+ $(document).on('click touchstart', 'body', function (e) {
75
+ var tabs = $('#tabs')
76
+ var width = (tabs.length==0)? 0 : Math.round(tabs[0].getBoundingClientRect().width)
77
+ if (tabs.css('left') == '0px') {
78
+ if (e.pageX > width && e.pageY > 60) {
79
+ if (animationDone == true) {
80
+ animationDone = false
81
+ tabs.animate(
82
+ {
83
+ left: '-=' + width
84
+ },
85
+ 400,
86
+ function () {
87
+ animationDone = true
88
+ }
89
+ )
90
+ }
91
+ }
92
+ }
93
+ })
94
+
95
+ $(document).on('click', '#tabs .has_nested', function (e) {
96
+ e.stopPropagation()
97
+ $(this).toggleClass('open')
98
+ })
99
+ })
@@ -2,6 +2,11 @@ code {
2
2
  display: block;
3
3
  background-color: #272822;
4
4
  padding: 5px;
5
- margin: 10px 0;
6
5
  color: white;
7
6
  }
7
+
8
+ hr {
9
+ border: 1px solid $border-color;
10
+ color: $primary-color;
11
+ margin: 10px auto 25px auto;
12
+ }
@@ -0,0 +1,54 @@
1
+ @import 'reset';
2
+
3
+ @import './variables/variables';
4
+
5
+ @import './mixins/mixins';
6
+
7
+ @import 'common';
8
+ @import 'buttons';
9
+ @import 'grid';
10
+
11
+ @import './components/columns';
12
+ @import './components/comments';
13
+ @import './components/date_picker';
14
+ @import './components/dialogs';
15
+ @import './components/flash';
16
+ @import './components/form';
17
+ @import './components/inputs';
18
+ @import './components/pagination';
19
+ @import './components/panel_contents';
20
+ @import './components/select2';
21
+ @import './components/status_tag';
22
+ @import './components/tables';
23
+ @import './components/tabs';
24
+
25
+ @import './layouts/filter';
26
+ @import './layouts/footer';
27
+ @import './layouts/header';
28
+ @import './layouts/main_content';
29
+ @import './layouts/sidebar';
30
+ @import './layouts/wrapper';
31
+
32
+ @import './pages/form';
33
+ @import './pages/index';
34
+ @import './pages/login';
35
+ @import './pages/show';
36
+ body {
37
+ font-family: $font-family-body;
38
+ background-color: $body-background;
39
+ color: $text-color;
40
+ }
41
+
42
+ h1,
43
+ h2,
44
+ h3,
45
+ h4,
46
+ h5,
47
+ h6 {
48
+ margin-top: 0;
49
+ }
50
+
51
+ a {
52
+ color: $primary-color;
53
+ text-decoration: none;
54
+ }
@@ -35,4 +35,4 @@
35
35
  text-align: center;
36
36
  }
37
37
  }
38
- }
38
+ }
@@ -40,7 +40,7 @@
40
40
 
41
41
  .inline-hints {
42
42
  margin: 5px 0 20px 25%;
43
- font-size: 14px;
43
+ font-size: $font-size;
44
44
  font-style: italic;
45
45
  }
46
46
 
@@ -48,7 +48,7 @@
48
48
  color: $error;
49
49
  margin-top: 5px;
50
50
  margin-bottom: 20px;
51
- font-size: 14px;
51
+ font-size: $font-size;
52
52
  }
53
53
 
54
54
  label.error {
@@ -8,9 +8,9 @@ input[type="number"], textarea {
8
8
 
9
9
  display: block;
10
10
  width: 100%;
11
- height: 36px;
11
+ height: $input-height;
12
12
  padding: 6px 12px;
13
- font-size: 14px;
13
+ font-size: $font-size;
14
14
  line-height: 1.57142857;
15
15
  color: $text-color;
16
16
  background-color: #fff;
@@ -88,7 +88,7 @@ select {
88
88
  border: 1px solid $border-color;
89
89
  outline: 0;
90
90
  border-radius: $border-radius;
91
- font-size: 14px;
91
+ font-size: $font-size;
92
92
  color: #5a5a5a;
93
93
  @include transition(border-color ease-in-out .15s);
94
94
 
@@ -0,0 +1,50 @@
1
+ .select2-container--default .select2-selection--single .select2-selection__rendered{
2
+ line-height: $input-height;
3
+ color: $text-color;
4
+ font-size: $font-size;
5
+ }
6
+
7
+ .select2-container .select2-selection--single{
8
+ height: $input-height;
9
+ outline: 0;
10
+ }
11
+
12
+ .select2-container--default .select2-selection--single .select2-selection__arrow{
13
+ height: $input-height;
14
+ }
15
+
16
+ .select2-container--default .select2-selection--single {
17
+ border-color: $border-color;
18
+ }
19
+
20
+ .select2-container .select2-selection--single .select2-selection__rendered{
21
+ padding-left: 12px;
22
+ }
23
+
24
+ .select2-dropdown{
25
+ border-color: $border-color;
26
+ }
27
+
28
+ .select2-container--default .select2-results__option--highlighted[aria-selected]{
29
+ background-color: $primary_color;
30
+ }
31
+
32
+ .select2-container--default .select2-search--dropdown .select2-search__field{
33
+ border-color: $border-color;
34
+ }
35
+
36
+ .select2-container--default .select2-results__option[aria-selected=true]{
37
+ background_color: $body-background;
38
+ }
39
+
40
+ .select2-search--dropdown .select2-search__field{
41
+ padding-left: 12px;
42
+ }
43
+
44
+ .select2-results{
45
+ font-size: $font-size;
46
+ }
47
+
48
+ .select2-results__option{
49
+ padding-left: 12px;
50
+ }
@@ -6,12 +6,12 @@
6
6
  padding: 3px 5px 2px 5px;
7
7
  font-size: 0.8em;
8
8
  border-radius: $border-radius;
9
- }
10
9
 
11
- .status_tag.ok, .status_tag.published, .status_tag.complete, .status_tag.completed, .status_tag.green {
12
- background-color: $status-tag-background-valid-color;
13
- }
10
+ &.ok, &.published, &.complete, &.completed, &.green, &.yes {
11
+ background-color: $status-tag-background-valid-color;
12
+ }
14
13
 
15
- .status_tag.cancel, .status_tag.red {
16
- background-color: $status-tag-background-error-color;
17
- }
14
+ &.cancel, &.red, &.no {
15
+ background-color: $status-tag-background-error-color;
16
+ }
17
+ }
@@ -46,7 +46,7 @@ tbody tr {
46
46
  }
47
47
 
48
48
  th {
49
- font-size: 14px;
49
+ font-size: $font-size;
50
50
  }
51
51
 
52
52
  td {
@@ -2,11 +2,11 @@
2
2
  border: 1px solid $border-color;
3
3
 
4
4
  .nav {
5
- text-align: center;
6
5
  border-bottom: 1px solid $border-color;
7
6
 
8
7
  li {
9
8
  display: inline-block;
9
+ text-align: center;
10
10
  @include outline();
11
11
 
12
12
  a {
@@ -22,7 +22,7 @@
22
22
  }
23
23
 
24
24
  .input {
25
- margin-bottom: 15px;
25
+ margin-bottom: 10px;
26
26
 
27
27
  input, select {
28
28
  height: 30px;
@@ -14,11 +14,11 @@ body.active_admin.logged_in {
14
14
  }
15
15
 
16
16
  #active_admin_content {
17
- padding: 30px 0;
17
+ padding: 20px 0;
18
18
  @include clear-fix();
19
19
 
20
20
  @media screen and (min-width: $lg-width) {
21
- padding: 30px 25px;
21
+ padding: 20px 25px;
22
22
  }
23
23
  }
24
24
  }
@@ -23,7 +23,7 @@
23
23
 
24
24
  li {
25
25
  width: 100%;
26
- font-size: 14px;
26
+ font-size: $font-size;
27
27
  line-height: 38px;
28
28
  cursor: pointer;
29
29
 
@@ -95,7 +95,7 @@
95
95
  }
96
96
  }
97
97
 
98
- ul {
98
+ & > ul {
99
99
  display: block;
100
100
  }
101
101
  }
@@ -58,6 +58,6 @@
58
58
  text-rendering: auto;
59
59
  -webkit-font-smoothing: antialiased;
60
60
  -moz-osx-font-smoothing: grayscale;
61
- font: 900 normal normal 14px/1 'Font Awesome 5 Free';
61
+ font: 900 normal normal 14px/1 'Font Awesome 5 Free', 'Font Awesome 5 Pro';
62
62
  content: $code-icon;
63
63
  }
@@ -17,7 +17,7 @@ body.logged_in {
17
17
  margin: auto 0;
18
18
  padding-top: 8px;
19
19
  text-align: right;
20
- font-size: 14px;
20
+ font-size: $font-size;
21
21
 
22
22
  @media screen and (min-width: $sm-width) {
23
23
  padding-bottom: 0;
@@ -85,7 +85,7 @@ body.logged_in {
85
85
  }
86
86
 
87
87
  label {
88
- font-size: 14px;
88
+ font-size: $font-size;
89
89
  cursor: pointer;
90
90
  padding: 5px 5px 5px 0;
91
91
  }
@@ -6,7 +6,7 @@ body.index {
6
6
 
7
7
  .table_tools {
8
8
  margin-bottom: 20px;
9
- font-size: 14px;
9
+ font-size: $font-size;
10
10
 
11
11
  &:after {
12
12
  content: '';
@@ -39,6 +39,10 @@ body.index {
39
39
  position: absolute;
40
40
  z-index: 1;
41
41
  }
42
+
43
+ .indexes.table_tools_segmented_control {
44
+ text-align: right;
45
+ }
42
46
  }
43
47
 
44
48
  .paginated_collection_contents {
@@ -47,7 +51,7 @@ body.index {
47
51
  }
48
52
 
49
53
  #index_footer {
50
- font-size: 14px;
54
+ font-size: $font-size;
51
55
  }
52
56
 
53
57
  .sortable {
@@ -62,7 +66,7 @@ body.index {
62
66
  @include transform(translateY(-50%));
63
67
 
64
68
  @media screen and (min-width: $md-width) {
65
- font-size: 14px/1;
69
+ font-size: $font-size/1;
66
70
  }
67
71
  }
68
72
 
@@ -76,16 +80,23 @@ body.index {
76
80
  }
77
81
 
78
82
  .table_actions {
83
+ margin-bottom: -4px;
84
+
79
85
  .member_link {
80
86
  @include primary-button($primary-color, white);
81
- padding: 2px 9px;
87
+ padding: 4px 8px;
82
88
  margin-right: 4px;
89
+ margin-bottom: 4px;
83
90
  }
84
91
  }
85
-
92
+
86
93
  .scopes {
87
94
  .scope {
88
95
  @include group-button($primary-color);
96
+
97
+ a {
98
+ margin-right: .25rem;
99
+ }
89
100
  }
90
101
  }
91
102
 
@@ -113,4 +124,4 @@ body.index {
113
124
  padding: 15px 10px;
114
125
  }
115
126
  }
116
- }
127
+ }
@@ -6,4 +6,7 @@ $lg-screen-header-width: calc(100% - 250px) !default;
6
6
  $filter-width: 230px !default;
7
7
  $screen-filter-width: calc(100% - 230px) !default;
8
8
  $lg-filter-width: 270px !default;
9
- $lg-screen-filter-width: calc(100% - 270px) !default;
9
+ $lg-screen-filter-width: calc(100% - 270px) !default;
10
+
11
+ $font-size: 14px !default;
12
+ $input-height: 36px !default;
@@ -1,3 +1,3 @@
1
1
  module ArcticAdmin
2
- VERSION = "3.0.0"
2
+ VERSION = "3.3.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arctic_admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clément Prod'homme
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-01 00:00:00.000000000 Z
11
+ date: 2020-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -42,16 +42,22 @@ dependencies:
42
42
  name: activeadmin
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: 1.1.0
48
+ - - "<"
46
49
  - !ruby/object:Gem::Version
47
- version: '2.0'
50
+ version: '3.0'
48
51
  type: :runtime
49
52
  prerelease: false
50
53
  version_requirements: !ruby/object:Gem::Requirement
51
54
  requirements:
52
- - - "~>"
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: 1.1.0
58
+ - - "<"
53
59
  - !ruby/object:Gem::Version
54
- version: '2.0'
60
+ version: '3.0'
55
61
  - !ruby/object:Gem::Dependency
56
62
  name: jquery-rails
57
63
  requirement: !ruby/object:Gem::Requirement
@@ -72,14 +78,14 @@ dependencies:
72
78
  requirements:
73
79
  - - "~>"
74
80
  - !ruby/object:Gem::Version
75
- version: 5.6.1
81
+ version: '5.0'
76
82
  type: :runtime
77
83
  prerelease: false
78
84
  version_requirements: !ruby/object:Gem::Requirement
79
85
  requirements:
80
86
  - - "~>"
81
87
  - !ruby/object:Gem::Version
82
- version: 5.6.1
88
+ version: '5.0'
83
89
  description: A responsive theme for Active Admin
84
90
  email:
85
91
  executables: []
@@ -105,11 +111,13 @@ files:
105
111
  - app/assets/fonts/Lato-Regular.woff
106
112
  - app/assets/fonts/Lato-Regular.woff2
107
113
  - app/assets/javascripts/arctic_admin/base.js
114
+ - app/assets/javascripts/arctic_admin/main.js
108
115
  - app/assets/stylesheets/arctic_admin/_base.scss
109
116
  - app/assets/stylesheets/arctic_admin/_buttons.scss
110
117
  - app/assets/stylesheets/arctic_admin/_common.scss
111
118
  - app/assets/stylesheets/arctic_admin/_fonts.scss
112
119
  - app/assets/stylesheets/arctic_admin/_grid.scss
120
+ - app/assets/stylesheets/arctic_admin/_main.scss
113
121
  - app/assets/stylesheets/arctic_admin/_reset.scss
114
122
  - app/assets/stylesheets/arctic_admin/components/_columns.scss
115
123
  - app/assets/stylesheets/arctic_admin/components/_comments.scss
@@ -120,6 +128,7 @@ files:
120
128
  - app/assets/stylesheets/arctic_admin/components/_inputs.scss
121
129
  - app/assets/stylesheets/arctic_admin/components/_pagination.scss
122
130
  - app/assets/stylesheets/arctic_admin/components/_panel_contents.scss
131
+ - app/assets/stylesheets/arctic_admin/components/_select2.scss
123
132
  - app/assets/stylesheets/arctic_admin/components/_status_tag.scss
124
133
  - app/assets/stylesheets/arctic_admin/components/_tables.scss
125
134
  - app/assets/stylesheets/arctic_admin/components/_tabs.scss
@@ -144,7 +153,7 @@ files:
144
153
  - app/assets/stylesheets/arctic_admin/variables/_variables.scss
145
154
  - lib/arctic_admin.rb
146
155
  - lib/arctic_admin/version.rb
147
- homepage: https://github.com/cle61/arctic_admin
156
+ homepage: https://github.com/cprodhomme/arctic_admin
148
157
  licenses:
149
158
  - MIT
150
159
  metadata: {}
@@ -163,8 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
163
172
  - !ruby/object:Gem::Version
164
173
  version: '0'
165
174
  requirements: []
166
- rubyforge_project:
167
- rubygems_version: 2.6.8
175
+ rubygems_version: 3.0.3
168
176
  signing_key:
169
177
  specification_version: 4
170
178
  summary: Arctic Admin theme for ActiveAdmin