administrate-field-boolean_emoji 0.0.4 → 0.1.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: ead050fed2bcf4fa38f8992a313ef341f7266a04
4
- data.tar.gz: 9dce3296baee99e9107902a269c699f636ce61e7
2
+ SHA256:
3
+ metadata.gz: 6e3790e0d2fddce765bb4a418b965682e362f5d1265c55cc1c3e136a5d7a9b6b
4
+ data.tar.gz: 322ddcb656bdbc751747a1d58cd901b277e2c528b42a8fce5890bc0b57d2e8d1
5
5
  SHA512:
6
- metadata.gz: cabc556caf3c6c8c2d8692dc59c4328ca5704721339a9c832dcad3632614b11715fd8699ff4b266114f75121d8650427378e8fdab42c0d834179c36ba210cd24
7
- data.tar.gz: 95c6d81431f74cb600c8c1fc276ae4cd62967c239bacb83abb127068770457ed77417e0b465700fe7eb168602728040abfee829490b0cce2034d370e40718693
6
+ metadata.gz: 9fd46daed1898162f5546c8a9515f227183040868a6bd364d318fd0f3a378a3a5b4b6765f621f3dc18ad09165ee789464b2286ca40247465c18cd7ba714a020e
7
+ data.tar.gz: c4c49340039f44be3eb49fbe41023f2bac47226b26107e239026cf5c2a41246bcc3339028ce3efaa6a3ed5e40b55dab9a8f4811a4937c794a6a1d7aa3fe18104
data/.gitignore CHANGED
@@ -1 +1,2 @@
1
1
  *.gem
2
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -1,19 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.1.0](https://github.com/zooppa/administrate-field-boolean_emoji/tree/v0.1.0) (2018-03-01)
4
+
5
+ [Full Changelog](https://github.com/zooppa/administrate-field-boolean_emoji/compare/v0.0.4...v0.1.0)
6
+
7
+ * Localize boolean output
8
+
3
9
  ## [v0.0.4](https://github.com/zooppa/administrate-field-boolean_emoji/tree/v0.0.4) (2017-04-03)
10
+
4
11
  [Full Changelog](https://github.com/zooppa/administrate-field-boolean_emoji/compare/v0.0.3...v0.0.4)
5
12
 
6
13
  * Bump up Administrate dependency
7
14
 
8
15
  ## [v0.0.3](https://github.com/zooppa/administrate-field-boolean_emoji/tree/v0.0.3) (2017-03-20)
16
+
9
17
  [Full Changelog](https://github.com/zooppa/administrate-field-boolean_emoji/compare/v0.0.2...v0.0.3)
10
18
 
11
19
  * Bump up Administrate dependency
12
20
 
13
21
  ## [v0.0.2](https://github.com/zooppa/administrate-field-boolean_emoji/tree/v0.0.2) (2016-11-29)
22
+
14
23
  [Full Changelog](https://github.com/zooppa/administrate-field-boolean_emoji/compare/v0.0.1...v0.0.2)
15
24
 
16
25
  * Fix display in index view
17
26
 
18
27
  ## [v0.0.1](https://github.com/zooppa/administrate-field-boolean_emoji/tree/v0.0.1) (2016-11-29)
28
+
19
29
  First release
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
- The MIT License (MIT)
1
+ MIT License
2
2
 
3
- Copyright (c) 2015-2016 z.productions.
3
+ Copyright (c) 2018 Zooppa
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
9
  copies of the Software, and to permit persons to whom the Software is
10
10
  furnished to do so, subject to the following conditions:
11
11
 
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
14
 
15
15
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
16
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
17
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
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.
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Administrate::Field::BooleanEmoji
2
2
 
3
3
  [![Code Climate](https://codeclimate.com/github/zooppa/administrate-field-boolean_emoji/badges/gpa.svg)](https://codeclimate.com/github/zooppa/administrate-field-boolean_emoji)
4
+ [![Build Status](https://semaphoreci.com/api/v1/zooppa/administrate-field-boolean_emoji/branches/master/badge.svg)](https://semaphoreci.com/zooppa/administrate-field-boolean_emoji)
4
5
 
5
6
  A plugin to visually display boolean fields in [Administrate].
6
7
 
@@ -9,7 +10,7 @@ A plugin to visually display boolean fields in [Administrate].
9
10
  Add it to your `Gemfile`:
10
11
 
11
12
  ```ruby
12
- gem 'administrate-field-boolean_emoji', '~> 0.0.4'
13
+ gem 'administrate-field-boolean_emoji', '~> 0.1.0'
13
14
  ```
14
15
 
15
16
  Run:
@@ -26,9 +27,21 @@ ATTRIBUTE_TYPES = {
26
27
  }.freeze
27
28
  ```
28
29
 
30
+ ## Customize
31
+
32
+ Customize or overwrite the labels by just adding this to your `config/locales/*.yml`.
33
+
34
+ ```yml
35
+ administrate:
36
+ fields:
37
+ boolean_emoji:
38
+ 'false': 👎
39
+ 'true': 👍
40
+ ```
41
+
29
42
  ## About
30
43
 
31
- `Administrate::Field::BooleanEmoji` is maintained by [z.productions].
44
+ `Administrate::Field::BooleanEmoji` is maintained by [zooppa].
32
45
 
33
- [Administrate]: https://github.com/thoughtbot/administrate
34
- [z.productions]: https://www.z.productions/
46
+ [administrate]: https://github.com/thoughtbot/administrate
47
+ [zooppa]: https://www.zooppa.com/
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -2,12 +2,12 @@ $:.push File.expand_path('../lib', __FILE__)
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = 'administrate-field-boolean_emoji'
5
- gem.version = '0.0.4'
5
+ gem.version = '0.1.0'
6
6
  gem.authors = ['Michele Gerarduzzi']
7
7
  gem.email = ['michele.gerarduzzi@gmail.com']
8
8
  gem.homepage = 'https://github.com/zooppa/administrate-field-boolean_emoji'
9
- gem.summary = 'A plugin to visually display boolean fields in Administrate'
10
- gem.description = gem.summary
9
+ gem.summary = 'Boolean fields custom visualization in Administrate'
10
+ gem.description = 'A plugin to visually display boolean fields in Administrate'
11
11
  gem.license = 'MIT'
12
12
 
13
13
  gem.require_paths = ['lib']
@@ -15,5 +15,8 @@ Gem::Specification.new do |gem|
15
15
  gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
16
 
17
17
  gem.add_runtime_dependency 'administrate', '< 1.0.0'
18
- gem.add_runtime_dependency 'rails', '>= 4.2'
18
+ gem.add_runtime_dependency 'rails', '>= 4.2', '< 6'
19
+
20
+ gem.add_development_dependency 'rake', '~> 12.3'
21
+ gem.add_development_dependency 'rspec', '~> 3.7'
19
22
  end
@@ -10,6 +10,4 @@ This partial renders an emoji based on the value of the attribute.
10
10
  A wrapper around the attribute pulled from the database.
11
11
  %>
12
12
 
13
- <% unless field.data.nil? %>
14
- <%= field.data ? field.positive_emoji : field.negative_emoji %>
15
- <% end %>
13
+ <%= field.lboolean %>
@@ -10,6 +10,4 @@ This partial renders an emoji based on the value of the attribute.
10
10
  A wrapper around the attribute pulled from the database.
11
11
  %>
12
12
 
13
- <% unless field.data.nil? %>
14
- <%= field.data ? field.positive_emoji : field.negative_emoji %>
15
- <% end %>
13
+ <%= field.lboolean %>
@@ -0,0 +1,7 @@
1
+ ---
2
+ de:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': Nein
7
+ 'true': Ja
@@ -0,0 +1,7 @@
1
+ ---
2
+ en-GB:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': No
7
+ 'true': Yes
@@ -0,0 +1,7 @@
1
+ ---
2
+ en-US:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': No
7
+ 'true': Yes
@@ -0,0 +1,7 @@
1
+ ---
2
+ en:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': ❌
7
+ 'true': ✅
@@ -0,0 +1,7 @@
1
+ ---
2
+ es:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': No
7
+ 'true': Sí
@@ -0,0 +1,7 @@
1
+ ---
2
+ fi:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': Ei
7
+ 'true': Joo
@@ -0,0 +1,7 @@
1
+ ---
2
+ fr:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': Non
7
+ 'true': Oui
@@ -0,0 +1,7 @@
1
+ ---
2
+ it:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': No
7
+ 'true': Sì
@@ -0,0 +1,7 @@
1
+ ---
2
+ ja:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': いいえ
7
+ 'true': はい
@@ -0,0 +1,7 @@
1
+ ---
2
+ ko:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': 아니
7
+ 'true': 예
@@ -0,0 +1,7 @@
1
+ ---
2
+ nl:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': Nein
7
+ 'true': Ja
@@ -0,0 +1,7 @@
1
+ ---
2
+ pl:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': Ne
7
+ 'true': Ano
@@ -0,0 +1,7 @@
1
+ ---
2
+ pt:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': Não
7
+ 'true': Sim
@@ -0,0 +1,7 @@
1
+ ---
2
+ ru:
3
+ administrate:
4
+ fields:
5
+ boolean_emoji:
6
+ 'false': да
7
+ 'true': нет
@@ -1,28 +1,13 @@
1
- require 'administrate/field/base'
2
1
  require 'rails'
2
+ require 'administrate/field/base'
3
3
 
4
4
  module Administrate
5
5
  module Field
6
6
  class BooleanEmoji < Administrate::Field::Base
7
7
  class Engine < ::Rails::Engine; end
8
8
 
9
- EMOJIS = {
10
- default: {
11
- positive: '&#9989;',
12
- negative: '&#10060;'
13
- }
14
- }
15
-
16
- def style
17
- :default
18
- end
19
-
20
- def positive_emoji
21
- EMOJIS[style][:positive].html_safe
22
- end
23
-
24
- def negative_emoji
25
- EMOJIS[style][:negative].html_safe
9
+ def lboolean
10
+ data.nil? ? '–' : I18n.t(data.to_s, scope: 'administrate.fields.boolean_emoji')
26
11
  end
27
12
  end
28
13
  end
@@ -0,0 +1,66 @@
1
+ require 'spec_helper'
2
+
3
+ describe Administrate::Field::BooleanEmoji do
4
+ subject { Administrate::Field::BooleanEmoji.new(:boolean, data, :show) }
5
+
6
+ describe '#to_partial_path' do
7
+ let(:data) { true }
8
+
9
+ it 'returns a partial based on the page being rendered' do
10
+ path = subject.to_partial_path
11
+ expect(path).to eq('/fields/boolean_emoji/show')
12
+ end
13
+ end
14
+
15
+ describe '#lboolean' do
16
+ let(:output) { subject.lboolean }
17
+
18
+ context 'with default locale' do
19
+ context 'when nil' do
20
+ let(:data) { nil }
21
+
22
+ it 'returns dash' do
23
+ expect(output).to eq '–'
24
+ end
25
+ end
26
+
27
+ context 'when true' do
28
+ let(:data) { true }
29
+
30
+ it 'returns the localized value' do
31
+ expect(output).to eq '✅'
32
+ end
33
+ end
34
+
35
+ context 'when false' do
36
+ let(:data) { false }
37
+
38
+ it 'returns the localized value' do
39
+ expect(output).to eq '❌'
40
+ end
41
+ end
42
+ end
43
+
44
+ context 'with german locale' do
45
+ around do |example|
46
+ I18n.with_locale(:de) { example.run }
47
+ end
48
+
49
+ context 'when true' do
50
+ let(:data) { true }
51
+
52
+ it 'returns the localized value' do
53
+ expect(output).to eq 'Ja'
54
+ end
55
+ end
56
+
57
+ context 'when false' do
58
+ let(:data) { false }
59
+
60
+ it 'returns the localized value' do
61
+ expect(output).to eq 'Nein'
62
+ end
63
+ end
64
+ end
65
+ end
66
+ end
@@ -0,0 +1,4 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+ require 'administrate/field/boolean_emoji'
3
+
4
+ I18n.load_path << Dir[File.join('config', 'locales', '**', '*.{rb,yml}')]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: administrate-field-boolean_emoji
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michele Gerarduzzi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-03 00:00:00.000000000 Z
11
+ date: 2018-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: administrate
@@ -31,6 +31,9 @@ dependencies:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '4.2'
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: '6'
34
37
  type: :runtime
35
38
  prerelease: false
36
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -38,6 +41,37 @@ dependencies:
38
41
  - - ">="
39
42
  - !ruby/object:Gem::Version
40
43
  version: '4.2'
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '6'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rake
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '12.3'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '12.3'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rspec
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '3.7'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '3.7'
41
75
  description: A plugin to visually display boolean fields in Administrate
42
76
  email:
43
77
  - michele.gerarduzzi@gmail.com
@@ -46,16 +80,33 @@ extensions: []
46
80
  extra_rdoc_files: []
47
81
  files:
48
82
  - ".gitignore"
83
+ - ".rspec"
49
84
  - CHANGELOG.md
50
85
  - Gemfile
51
- - Gemfile.lock
52
86
  - LICENSE.md
53
87
  - README.md
88
+ - Rakefile
54
89
  - administrate-field-boolean_emoji.gemspec
55
90
  - app/views/fields/boolean_emoji/_form.html.erb
56
91
  - app/views/fields/boolean_emoji/_index.html.erb
57
92
  - app/views/fields/boolean_emoji/_show.html.erb
93
+ - config/locales/administrate.de.yml
94
+ - config/locales/administrate.en-GB.yml
95
+ - config/locales/administrate.en-US.yml
96
+ - config/locales/administrate.en.yml
97
+ - config/locales/administrate.es.yml
98
+ - config/locales/administrate.fi.yml
99
+ - config/locales/administrate.fr.yml
100
+ - config/locales/administrate.it.yml
101
+ - config/locales/administrate.ja.yml
102
+ - config/locales/administrate.ko.yml
103
+ - config/locales/administrate.nl.yml
104
+ - config/locales/administrate.pl.yml
105
+ - config/locales/administrate.pt.yml
106
+ - config/locales/administrate.ru.yml
58
107
  - lib/administrate/field/boolean_emoji.rb
108
+ - spec/lib/administrate/field/boolean_emoji_spec.rb
109
+ - spec/spec_helper.rb
59
110
  homepage: https://github.com/zooppa/administrate-field-boolean_emoji
60
111
  licenses:
61
112
  - MIT
@@ -76,8 +127,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
76
127
  version: '0'
77
128
  requirements: []
78
129
  rubyforge_project:
79
- rubygems_version: 2.6.11
130
+ rubygems_version: 2.7.3
80
131
  signing_key:
81
132
  specification_version: 4
82
- summary: A plugin to visually display boolean fields in Administrate
83
- test_files: []
133
+ summary: Boolean fields custom visualization in Administrate
134
+ test_files:
135
+ - spec/lib/administrate/field/boolean_emoji_spec.rb
136
+ - spec/spec_helper.rb
@@ -1,159 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- administrate-field-boolean_emoji (0.0.4)
5
- administrate (< 1.0.0)
6
- rails (>= 4.2)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.0.2)
12
- actionpack (= 5.0.2)
13
- nio4r (>= 1.2, < 3.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.2)
16
- actionpack (= 5.0.2)
17
- actionview (= 5.0.2)
18
- activejob (= 5.0.2)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.0.2)
22
- actionview (= 5.0.2)
23
- activesupport (= 5.0.2)
24
- rack (~> 2.0)
25
- rack-test (~> 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.0.2)
29
- activesupport (= 5.0.2)
30
- builder (~> 3.1)
31
- erubis (~> 2.7.0)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.0.2)
35
- activesupport (= 5.0.2)
36
- globalid (>= 0.3.6)
37
- activemodel (5.0.2)
38
- activesupport (= 5.0.2)
39
- activerecord (5.0.2)
40
- activemodel (= 5.0.2)
41
- activesupport (= 5.0.2)
42
- arel (~> 7.0)
43
- activesupport (5.0.2)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- administrate (0.4.0)
49
- autoprefixer-rails (~> 6.0)
50
- bourbon (~> 4.2)
51
- datetime_picker_rails (~> 0.0.7)
52
- jquery-rails (~> 4.0)
53
- kaminari (~> 0.16)
54
- momentjs-rails (~> 2.8)
55
- neat (~> 1.1)
56
- normalize-rails (~> 3.0)
57
- rails (>= 4.2, < 5.1)
58
- sass-rails (~> 5.0)
59
- selectize-rails (~> 0.6)
60
- arel (7.1.4)
61
- autoprefixer-rails (6.7.7)
62
- execjs
63
- bourbon (4.3.3)
64
- sass (~> 3.4)
65
- thor (~> 0.19)
66
- builder (3.2.3)
67
- concurrent-ruby (1.0.5)
68
- datetime_picker_rails (0.0.7)
69
- momentjs-rails (>= 2.8.1)
70
- erubis (2.7.0)
71
- execjs (2.7.0)
72
- globalid (0.3.7)
73
- activesupport (>= 4.1.0)
74
- i18n (0.8.1)
75
- jquery-rails (4.2.2)
76
- rails-dom-testing (>= 1, < 3)
77
- railties (>= 4.2.0)
78
- thor (>= 0.14, < 2.0)
79
- kaminari (0.17.0)
80
- actionpack (>= 3.0.0)
81
- activesupport (>= 3.0.0)
82
- loofah (2.0.3)
83
- nokogiri (>= 1.5.9)
84
- mail (2.6.4)
85
- mime-types (>= 1.16, < 4)
86
- method_source (0.8.2)
87
- mime-types (3.1)
88
- mime-types-data (~> 3.2015)
89
- mime-types-data (3.2016.0521)
90
- mini_portile2 (2.1.0)
91
- minitest (5.10.1)
92
- momentjs-rails (2.17.1)
93
- railties (>= 3.1)
94
- neat (1.8.0)
95
- sass (>= 3.3)
96
- thor (~> 0.19)
97
- nio4r (2.0.0)
98
- nokogiri (1.7.1)
99
- mini_portile2 (~> 2.1.0)
100
- normalize-rails (3.0.3)
101
- rack (2.0.1)
102
- rack-test (0.6.3)
103
- rack (>= 1.0)
104
- rails (5.0.2)
105
- actioncable (= 5.0.2)
106
- actionmailer (= 5.0.2)
107
- actionpack (= 5.0.2)
108
- actionview (= 5.0.2)
109
- activejob (= 5.0.2)
110
- activemodel (= 5.0.2)
111
- activerecord (= 5.0.2)
112
- activesupport (= 5.0.2)
113
- bundler (>= 1.3.0, < 2.0)
114
- railties (= 5.0.2)
115
- sprockets-rails (>= 2.0.0)
116
- rails-dom-testing (2.0.2)
117
- activesupport (>= 4.2.0, < 6.0)
118
- nokogiri (~> 1.6)
119
- rails-html-sanitizer (1.0.3)
120
- loofah (~> 2.0)
121
- railties (5.0.2)
122
- actionpack (= 5.0.2)
123
- activesupport (= 5.0.2)
124
- method_source
125
- rake (>= 0.8.7)
126
- thor (>= 0.18.1, < 2.0)
127
- rake (12.0.0)
128
- sass (3.4.23)
129
- sass-rails (5.0.6)
130
- railties (>= 4.0.0, < 6)
131
- sass (~> 3.1)
132
- sprockets (>= 2.8, < 4.0)
133
- sprockets-rails (>= 2.0, < 4.0)
134
- tilt (>= 1.1, < 3)
135
- selectize-rails (0.12.4)
136
- sprockets (3.7.1)
137
- concurrent-ruby (~> 1.0)
138
- rack (> 1, < 3)
139
- sprockets-rails (3.2.0)
140
- actionpack (>= 4.0)
141
- activesupport (>= 4.0)
142
- sprockets (>= 3.0.0)
143
- thor (0.19.4)
144
- thread_safe (0.3.6)
145
- tilt (2.0.7)
146
- tzinfo (1.2.2)
147
- thread_safe (~> 0.1)
148
- websocket-driver (0.6.5)
149
- websocket-extensions (>= 0.1.0)
150
- websocket-extensions (0.1.2)
151
-
152
- PLATFORMS
153
- ruby
154
-
155
- DEPENDENCIES
156
- administrate-field-boolean_emoji!
157
-
158
- BUNDLED WITH
159
- 1.14.6