activeadmin_materialize_theme 0.1.4 → 0.2.6

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
  SHA256:
3
- metadata.gz: 0335e4467d41b420ae51d5f670bd8c112b2caf2a4f6b59d3e417c9802db976b8
4
- data.tar.gz: 643e6978620b3f680118669d61bc25488e5f60b01475ef690c0268492eaf3fe7
3
+ metadata.gz: 2d4a0962cd3c5fca64ec8d18faa9594c718ab9ba80e146771afc8af2e52f658a
4
+ data.tar.gz: 0ab1b5ff558625a74bc6425e2bcd1e0a888e3112acae49fd59daa8fc930697d3
5
5
  SHA512:
6
- metadata.gz: 1b4d6a75e3967b1447be97167f0de47342cccb0ce707f8e94b99859c8c2fcaf641781fa69f30a52d5a8aba9e9a673069126290e58bbf437584cf26533c5084e0
7
- data.tar.gz: c44687eae71031414fc9d0481a4f0d86f75c203402bbf0ccad29379b2c48317d4699ab7f25c278e58c76421f169d85146041339a4ace31689e41d1cb1429bb5d
6
+ metadata.gz: 5e28637e8587c48759e6e3670f13ced06d8ffe56be49a4780acb2027e34ac523139c3f838768f4207ef469df18dff7939d2c21e19271c352f4cc4dea230806b7
7
+ data.tar.gz: 2256e2d5e4f2a3a55bd4495386e78fb6b18e6786b0f1bd5e546c5e18c039fe1b331099f50295c4f371d05e5dac3edaabb0d51937a712f1e14519485c2c02bbdf
data/README.md CHANGED
@@ -1,9 +1,11 @@
1
- # Active Admin Materialize Theme [![Gem Version](https://badge.fury.io/rb/activeadmin_materialize_theme.svg)](https://badge.fury.io/rb/activeadmin_materialize_theme)
2
- A theme for Active Admin based on Materialize framework.
1
+ # Active Admin Materialize Theme
2
+ [![Gem Version](https://badge.fury.io/rb/activeadmin_materialize_theme.svg)](https://badge.fury.io/rb/activeadmin_materialize_theme) [![CircleCI](https://circleci.com/gh/blocknotes/activeadmin_materialize_theme.svg?style=svg)](https://circleci.com/gh/blocknotes/activeadmin_materialize_theme)
3
3
 
4
- > NOTICE: this is still a beta version
4
+ A theme for Active Admin based on Materialize framework.
5
5
 
6
6
  ## Installation
7
+ Turbolinks is not supported at the moment.
8
+
7
9
  - Add to the Gemfile: `gem 'activeadmin_materialize_theme'` (and execute `bundle`)
8
10
  - In _app/assets/stylesheets/active_admin.scss_) leave only this import line:
9
11
  ```scss
@@ -18,16 +20,20 @@ A theme for Active Admin based on Materialize framework.
18
20
  //= require activeadmin_materialize_theme
19
21
  ```
20
22
 
21
- ## Screenshot
22
- ![form](extra/screenshot.png)
23
+ ## Screenshots
24
+ Index page (with scopes and filters):
25
+ ![index_page](extra/screenshot.png)
26
+
27
+ Edit page (with a nested form):
28
+ ![edit_page](extra/screenshot2.png)
23
29
 
24
30
  ## Do you like it? Star it!
25
- If you use this component just star it. A developer is more motivated to improve a project when there is some interest.
31
+ If you use this component just star it. A developer is more motivated to improve a project when there is some interest. My other [Active Admin components](https://github.com/blocknotes?utf8=✓&tab=repositories&q=activeadmin&type=source).
26
32
 
27
- Take a look at [other Active Admin components](https://github.com/blocknotes?utf8=✓&tab=repositories&q=activeadmin&type=source) that I made if you are curious.
33
+ Or consider offering me a coffee, it's a small thing but it is greatly appreciated: [about me](https://www.blocknot.es/about-me).
28
34
 
29
35
  ## Contributors
30
- [Mattia Roccoberton](http://blocknot.es): author
36
+ - [Mattia Roccoberton](http://blocknot.es): author
31
37
 
32
38
  ## License
33
39
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile CHANGED
@@ -1,34 +1,16 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- begin
4
- require 'bundler/setup'
5
- rescue LoadError
6
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
7
- end
8
-
9
- require 'rdoc/task'
10
-
11
- RDoc::Task.new(:rdoc) do |rdoc|
12
- rdoc.rdoc_dir = 'rdoc'
13
- rdoc.title = 'ActiveadminMaterializeTheme'
14
- rdoc.options << '--line-numbers'
15
- rdoc.rdoc_files.include('README.md')
16
- rdoc.rdoc_files.include('lib/**/*.rb')
17
- end
18
-
19
- APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
20
- load 'rails/tasks/engine.rake'
21
-
22
- load 'rails/tasks/statistics.rake'
23
-
24
3
  require 'bundler/gem_tasks'
25
4
 
26
- require 'rake/testtask'
5
+ begin
6
+ require 'rspec/core/rake_task'
7
+
8
+ RSpec::Core::RakeTask.new(:spec) do |t|
9
+ # t.ruby_opts = %w[-w]
10
+ t.rspec_opts = ['--color', '--format documentation']
11
+ end
27
12
 
28
- Rake::TestTask.new(:test) do |t|
29
- t.libs << 'test'
30
- t.pattern = 'test/**/*_test.rb'
31
- t.verbose = false
13
+ task default: :spec
14
+ rescue LoadError
15
+ puts '! LoadError: no RSpec available'
32
16
  end
33
-
34
- task default: :test
@@ -1,10 +1,12 @@
1
1
  //= require ./materialize/bin/materialize
2
2
 
3
3
  (function () {
4
+ 'use strict'
5
+
4
6
  // --- functions -------------------------------------------------------------
5
- function addClassToElements(class_name, elements) {
7
+ function addClassToElements(elements, class_name) {
6
8
  document.querySelectorAll(elements).forEach(
7
- (el) => el.className += ' ' + class_name
9
+ (el) => el.classList.add(class_name)
8
10
  )
9
11
  }
10
12
 
@@ -13,55 +15,93 @@
13
15
  const checkbox = el.querySelector('[type="checkbox"]')
14
16
  const label = document.createElement('label')
15
17
  const span = document.createElement('span')
18
+ span.className = 'aa_mt_checkbox'
16
19
  label.appendChild(span)
17
20
  el.appendChild(label)
18
21
  label.insertBefore(checkbox, span)
19
22
  })
23
+ const selector = 'body.active_admin .resource_selection_toggle_cell >label, body.active_admin .choices >label'
24
+ document.querySelectorAll(selector).forEach((el) => prepareCheckbox(el))
20
25
  }
21
26
 
22
27
  function initDropdowns() {
23
28
  let cnt = 0;
24
29
  document.querySelectorAll('body.active_admin .dropdown_menu').forEach((el) => {
25
30
  cnt += 1
26
- button = el.querySelector('.dropdown_menu_button')
31
+ const button = el.querySelector('.dropdown_menu_button')
27
32
  button.className += ' dropdown-trigger'
28
33
  button.setAttribute('data-target', `#dropdown-${cnt}`)
29
34
  button.setAttribute('href', 'Javascript:void(0)')
30
- list_wrapper = el.querySelector('.dropdown_menu_list_wrapper')
35
+ const list_wrapper = el.querySelector('.dropdown_menu_list_wrapper')
31
36
  list_wrapper.className += ' dropdown-content'
32
37
  list_wrapper.setAttribute('id', `#dropdown-${cnt}`)
33
38
  })
34
39
  }
35
40
 
36
41
  function initFormFields() {
37
- addClassToElements('input-field', 'body.active_admin .formtastic .input')
38
- addClassToElements('materialize-textarea', 'body.active_admin .formtastic textarea')
39
- document.querySelectorAll('body.active_admin .input-field.boolean > label').forEach((el) => {
40
- const text = el.lastChild
41
- if (text.nodeType == Node.TEXT_NODE) {
42
- const span = document.createElement('span')
43
- span.innerHTML = text.textContent
44
- text.replaceWith(span)
45
- }
42
+ addClassToElements('body.active_admin .formtastic .input', 'input-field')
43
+ addClassToElements('body.active_admin .formtastic textarea', 'materialize-textarea')
44
+ document.querySelectorAll('body.active_admin .input-field.boolean > label').forEach((el) => prepareCheckbox(el))
45
+ }
46
+
47
+ function initNestedEditors() {
48
+ document.querySelectorAll('body.active_admin .has_many_container').forEach((el) => {
49
+ const observer = new MutationObserver((_mutationsList, _observer) => {
50
+ initFormFields()
51
+ })
52
+ observer.observe(el, { childList: true, subtree: true });
53
+ })
54
+ }
55
+
56
+ function initNestedMenu() {
57
+ let nested_menu_cnt = 0
58
+ addClassToElements('body.active_admin .menu_item.has_nested >ul', 'dropdown-content')
59
+ document.querySelectorAll('.menu_item.has_nested').forEach((el) => {
60
+ nested_menu_cnt += 1
61
+ el.childNodes.forEach((node) => {
62
+ if(node.tagName == 'A') {
63
+ node.className += ' dropdown-trigger'
64
+ node.setAttribute('data-target', `nested-menu-${nested_menu_cnt}`)
65
+ }
66
+ else if(node.tagName == 'UL') {
67
+ node.setAttribute('id', `nested-menu-${nested_menu_cnt}`)
68
+ }
69
+ })
46
70
  })
47
71
  }
48
72
 
73
+ function initTabs() {
74
+ document.querySelectorAll('body.active_admin .formtastic >.tabs').forEach(
75
+ (el) => el.classList.remove('tabs')
76
+ )
77
+ addClassToElements('body.active_admin .formtastic .nav-tabs', 'tabs')
78
+ addClassToElements('body.active_admin .formtastic .nav-tabs >li', 'tab')
79
+ }
80
+
81
+ function prepareCheckbox(el) {
82
+ const text = el.lastChild
83
+ if (text.nodeType == Node.TEXT_NODE) {
84
+ const span = document.createElement('span')
85
+ span.innerHTML = text.textContent
86
+ span.className = 'aa_mt_checkbox'
87
+ text.replaceWith(span)
88
+ }
89
+ }
90
+
49
91
  function setup() {
50
- addClassToElements('no-autoinit', 'body.active_admin #header >.tabs')
92
+ addClassToElements('body.active_admin #header >.tabs', 'no-autoinit')
51
93
  initCheckboxes()
52
94
  initDropdowns()
53
95
  initFormFields()
96
+ initNestedMenu()
97
+ initTabs()
54
98
  M.AutoInit()
99
+ initNestedEditors()
55
100
  }
56
101
 
57
102
  // --- events ----------------------------------------------------------------
58
- document.addEventListener('DOMContentLoaded', () => {
59
- setup()
60
- document.querySelectorAll('body.active_admin .has_many_container').forEach((el) => {
61
- const observer = new MutationObserver((_mutationsList, _observer) => {
62
- initFormFields()
63
- })
64
- observer.observe(el, { childList: true, subtree: true });
65
- })
66
- })
103
+ document.addEventListener('DOMContentLoaded', setup)
104
+
105
+ // TODO: check theme loading with Turbolinks
106
+ // document.addEventListener('turbolinks:load', setup)
67
107
  })()
@@ -10,17 +10,25 @@ body.active_admin {
10
10
  @extend .btn;
11
11
  }
12
12
 
13
+ .aa_mt_checkbox {
14
+ padding-left: 2.5rem;
15
+ padding-right: 1.5rem;
16
+ vertical-align: middle;
17
+ }
18
+
13
19
  .col-selectable {
14
20
  text-align: center;
15
21
  }
16
22
 
17
23
  .dropdown_menu_button {
18
- border: 1px solid #ccc;
19
- padding: 0.5rem 0.6rem;
24
+ @extend .btn, .btn-small;
25
+
26
+ vertical-align: middle;
20
27
 
21
28
  &::after {
22
29
  content: ' ≡';
23
- font-size: 2rem;
30
+ font-size: 1.8rem;
31
+ padding-left: 0.5rem;
24
32
  }
25
33
  }
26
34
 
@@ -57,6 +65,29 @@ body.active_admin {
57
65
  }
58
66
  }
59
67
 
68
+ .pagination {
69
+ background: transparent;
70
+ box-shadow: none;
71
+ color: #000;
72
+ height: auto;
73
+ line-height: initial;
74
+ margin-bottom: 1.5rem;
75
+ text-align: center;
76
+
77
+ a {
78
+ color: $link-color;
79
+ }
80
+
81
+ >span {
82
+ display: inline-block;
83
+ padding: 0.5rem;
84
+ }
85
+
86
+ >.current {
87
+ background: #eee;
88
+ }
89
+ }
90
+
60
91
  .sorted-asc::after {
61
92
  content: ' ↑';
62
93
  }
@@ -65,11 +96,6 @@ body.active_admin {
65
96
  content: ' ↓';
66
97
  }
67
98
 
68
- .resource_selection_cell span {
69
- padding: 0 1rem;
70
- vertical-align: middle;
71
- }
72
-
73
99
  .ui-dialog {
74
100
  @extend .modal;
75
101
 
@@ -103,6 +129,12 @@ body.active_admin {
103
129
  &.without_sidebar #main_content_wrapper {
104
130
  @extend .col, .s12;
105
131
  }
132
+
133
+ >#sidebar {
134
+ @extend .col, .s3;
135
+
136
+ padding-left: 0 !important;
137
+ }
106
138
  }
107
139
 
108
140
  #dashboard_default_message {
@@ -111,6 +143,16 @@ body.active_admin {
111
143
  text-align: center;
112
144
  }
113
145
 
146
+ #main_content {
147
+ @extend .card;
148
+
149
+ margin-top: 0.75rem;
150
+
151
+ >.panel {
152
+ padding: 2rem !important;
153
+ }
154
+ }
155
+
114
156
  #wrapper {
115
157
  @extend .container;
116
158
 
@@ -6,13 +6,17 @@ body.active_admin {
6
6
  }
7
7
 
8
8
  .formtastic {
9
- padding: 1rem;
9
+ padding: 2rem;
10
10
 
11
11
  fieldset {
12
- @extend .row;
13
-
14
12
  border: none;
15
13
  margin: 0;
14
+ padding: 0;
15
+ }
16
+
17
+ h3 {
18
+ font-size: 2.2rem;
19
+ margin: 0.4rem 0 0 0;
16
20
  }
17
21
 
18
22
  .actions ol, .inputs ol {
@@ -22,8 +26,7 @@ body.active_admin {
22
26
  }
23
27
 
24
28
  .actions {
25
- margin-top: 1.4rem;
26
- padding: 0;
29
+ margin: 2rem 0 0.5rem 0 !important;
27
30
 
28
31
  a {
29
32
  @extend .btn;
@@ -57,6 +60,15 @@ body.active_admin {
57
60
  }
58
61
  }
59
62
 
63
+ >.errors {
64
+ @extend .z-depth-2;
65
+
66
+ background: color('red', 'base');
67
+ color: #fff;
68
+ margin: 0.7rem 0;
69
+ padding: 1rem;
70
+ }
71
+
60
72
  .field_with_errors {
61
73
  >input {
62
74
  border-bottom: 1px solid color('materialize-red', 'base');
@@ -72,19 +84,13 @@ body.active_admin {
72
84
  margin: 0;
73
85
  }
74
86
 
75
- >.inputs {
76
- @extend .card;
77
-
78
- padding-bottom: 1rem;
79
- padding-top: 3rem;
87
+ .inputs {
80
88
  position: relative;
89
+ margin-bottom: 2rem;
81
90
 
82
91
  >legend {
83
92
  display: block;
84
- font-size: 1.8rem;
85
- left: 1rem;
86
- position: absolute;
87
- top: 1rem;
93
+ font-size: 2.2rem;
88
94
  }
89
95
  }
90
96
 
@@ -111,17 +117,12 @@ body.active_admin {
111
117
  }
112
118
 
113
119
  .has_many_container {
114
- @extend .card;
120
+ @extend .z-depth-1;
115
121
 
116
122
  margin: 1.4rem -0.7rem 0 -0.8rem;
117
- padding: 1rem;
123
+ padding: 2rem;
118
124
  position: relative;
119
125
 
120
- >h3 {
121
- font-size: 2.2rem;
122
- margin: 0.4rem 0 0 0;
123
- }
124
-
125
126
  >.has_many_add {
126
127
  background-color: color('cyan', 'base');
127
128
  margin-top: 0.4rem;
@@ -132,9 +133,14 @@ body.active_admin {
132
133
  }
133
134
 
134
135
  >.inputs {
135
- margin: 0;
136
- padding: 0.8rem;
136
+ margin-bottom: 2rem;
137
137
  }
138
138
  }
139
+
140
+ .nav-tabs {
141
+ @extend .z-depth-1;
142
+
143
+ margin-bottom: 2rem;
144
+ }
139
145
  }
140
146
  }
@@ -12,6 +12,14 @@ body.active_admin .header {
12
12
  display: inline-block;
13
13
  }
14
14
 
15
+ .dropdown-content {
16
+ background: darken($header-bg-color, 10%);
17
+
18
+ a:hover {
19
+ background: darken($header-bg-color, 10%);
20
+ }
21
+ }
22
+
15
23
  #site_title {
16
24
  @extend .col, .s3;
17
25
 
@@ -22,11 +22,37 @@ body.active_admin.index {
22
22
  padding-bottom: 0.3rem !important;
23
23
  padding-top: 0.3rem !important;
24
24
  }
25
+
26
+ .aa_mt_checkbox {
27
+ padding: 0 1rem !important;
28
+ }
25
29
  }
26
30
 
27
- .paginated_collection {
28
- @extend .row;
31
+ .index_as_grid {
32
+ >table {
33
+ display: block;
34
+
35
+ tbody {
36
+ display: block;
37
+ }
38
+
39
+ tr {
40
+ display: flex;
41
+ }
42
+
43
+ img {
44
+ width: 100%;
45
+ }
46
+ }
47
+ }
29
48
 
49
+ .index_as_block {
50
+ .resource_selection_cell {
51
+ display: inline-block;
52
+ }
53
+ }
54
+
55
+ .paginated_collection {
30
56
  margin-bottom: 0;
31
57
  }
32
58
 
@@ -35,10 +61,39 @@ body.active_admin.index {
35
61
  }
36
62
 
37
63
  .table_tools {
38
- @extend .row;
39
-
40
64
  >.batch_actions_selector {
41
- @extend .col, .s12;
65
+ display: inline-block;
66
+ margin-bottom: 1rem;
67
+ margin-right: 2rem;
68
+ }
69
+
70
+ >.scopes {
71
+ display: inline-block;
72
+ }
73
+
74
+ .table_tools_segmented_control {
75
+ border: 1px solid #ddd;
76
+ border-radius: 0.5rem;
77
+ display: inline-block;
78
+ margin: 0 0 0 2rem;
79
+ vertical-align: middle;
80
+
81
+ >li {
82
+ display: inline-block;
83
+ padding: 0.2rem 1rem;
84
+
85
+ &:first-child {
86
+ border-radius: 0.6rem 0 0 0.6rem;
87
+ }
88
+
89
+ &:last-child {
90
+ border-radius: 0 0.6rem 0.6rem 0;
91
+ }
92
+
93
+ &.selected {
94
+ background: #eee;
95
+ }
96
+ }
42
97
  }
43
98
  }
44
99
 
@@ -47,9 +102,7 @@ body.active_admin.index {
47
102
  }
48
103
 
49
104
  #index_footer {
50
- @extend .col, .s12;
51
-
52
- margin-top: 1rem;
105
+ margin-top: 1.5rem;
53
106
 
54
107
  .download_links {
55
108
  display: inline-block;
@@ -61,16 +114,6 @@ body.active_admin.index {
61
114
  }
62
115
  }
63
116
 
64
- #main_content {
65
- @extend .card;
66
- }
67
-
68
- #sidebar {
69
- @extend .col, .s3;
70
-
71
- padding-left: 0 !important;
72
- }
73
-
74
117
  &.admin_comments {
75
118
  .paginated_collection {
76
119
  padding: 0 1.5rem 1.5rem 1.5rem;
@@ -1,11 +1,10 @@
1
1
  body.active_admin.show {
2
2
  .active_admin_comment {
3
3
  margin-top: 1rem;
4
+ padding: 0;
4
5
  }
5
6
 
6
7
  #main_content {
7
- @extend .card;
8
-
9
8
  .attributes_table {
10
9
  tr >th {
11
10
  width: 30rem;
@@ -13,6 +12,7 @@ body.active_admin.show {
13
12
 
14
13
  td, th {
15
14
  padding: 0.5rem;
15
+ word-break: break-word;
16
16
  }
17
17
  }
18
18
 
@@ -28,6 +28,8 @@ body.active_admin .sidebar {
28
28
  .sidebar_section {
29
29
  @extend .card;
30
30
 
31
+ margin-top: 0.75rem;
32
+
31
33
  >.panel_contents {
32
34
  @extend .card-content;
33
35
 
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'activeadmin'
3
4
  require 'activeadmin_materialize_theme/engine'
4
5
 
5
6
  module ActiveadminMaterializeTheme
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveadminMaterializeTheme
4
- VERSION = '0.1.4'
4
+ VERSION = '0.2.6'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeadmin_materialize_theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattia Roccoberton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-10 00:00:00.000000000 Z
11
+ date: 2021-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeadmin
@@ -24,6 +24,160 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: activestorage
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '6.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '6.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: capybara
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.33'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.33'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pry
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.13'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.13'
69
+ - !ruby/object:Gem::Dependency
70
+ name: puma
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '4.3'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '4.3'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec_junit_formatter
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.4'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.4'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rspec-rails
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '4.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '4.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.90'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.90'
125
+ - !ruby/object:Gem::Dependency
126
+ name: sassc
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '2.4'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '2.4'
139
+ - !ruby/object:Gem::Dependency
140
+ name: selenium-webdriver
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '3.142'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '3.142'
153
+ - !ruby/object:Gem::Dependency
154
+ name: sprockets-rails
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '3.2'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '3.2'
167
+ - !ruby/object:Gem::Dependency
168
+ name: sqlite3
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '1.4'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: '1.4'
27
181
  description: A theme for Active Admin based on Materialize framework.
28
182
  email:
29
183
  - mat@blocknot.es
@@ -124,7 +278,7 @@ files:
124
278
  - lib/activeadmin_materialize_theme.rb
125
279
  - lib/activeadmin_materialize_theme/engine.rb
126
280
  - lib/activeadmin_materialize_theme/version.rb
127
- homepage: https://blocknot.es
281
+ homepage: https://github.com/blocknotes/activeadmin_materialize_theme
128
282
  licenses:
129
283
  - MIT
130
284
  metadata: {}