active_admin_trix 0.0.2 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd53bcfb06558795981db6a060f8ff2fdffac68b1f7f43938589c9bd88cd2b7b
4
- data.tar.gz: a605cf8beeb0506605057799852812eabfb3aefc321ea7e349f871f094a09a66
3
+ metadata.gz: d772d04de58bbc40a2ceffec5e16d39b2f0d01eb213458ea4c3675b5c21ec912
4
+ data.tar.gz: 4c88fc100e5ae0f7bc084f5056a26cc14b93db194e61346b985f8e25a6899c10
5
5
  SHA512:
6
- metadata.gz: 91ede5c56a4d486f4ca3ef880e5e0f0d11da11d99dc4d10f757162c81ceef760e6a1f2ad63595a329cb9b345cc26c2afd95d6f1fddc189a0e5266b83a81704fe
7
- data.tar.gz: 227277deb57bcf7600f80072b1e4e15ec2d36099d7d9d1c3a9030873a9aeb25910a7ddcae9ec60ebdb0f039783ae847b1c119cc62a9f2a2f06da8fd8f91aab3e
6
+ metadata.gz: 726996888cab7a8c43211320dcd8dd8c0c5adbc2d4f0b49d57e9e35047f432ab23daa82511e818115ef82d9382a9d5a8b546c3526e789861390c382c3ed5c99c
7
+ data.tar.gz: 4f97c3fc4a59fcc52c0591711cb5f4ac211173a26a312a6885662bd8c0c0408cfaff4216b8e6b9b4d55392f27c9bd5f5d5af5968b76450c05896c8003aaec12f
@@ -0,0 +1,5 @@
1
+ require 'active_admin_trix/engine' if defined?(::Rails)
2
+ require 'inputs/trix_input'
3
+
4
+ module ActiveAdminTrix
5
+ end
@@ -0,0 +1,4 @@
1
+ module ActiveAdminTrix
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module ActiveAdminTrix
2
+ VERSION = '0.0.3'
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_admin_trix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leihb
@@ -63,11 +63,10 @@ files:
63
63
  - README.md
64
64
  - Rakefile
65
65
  - app/assets/stylesheets/active_admin_trix.scss
66
- - lib/active_admin/inputs/trix_input.rb
67
- - lib/active_admin/trix.rb
68
- - lib/active_admin/trix/engine.rb
69
- - lib/active_admin/trix/version.rb
70
- - lib/tasks/formtastic/trix_tasks.rake
66
+ - lib/active_admin_trix.rb
67
+ - lib/active_admin_trix/engine.rb
68
+ - lib/active_admin_trix/version.rb
69
+ - lib/inputs/trix_input.rb
71
70
  homepage:
72
71
  licenses:
73
72
  - MIT
@@ -1,7 +0,0 @@
1
- require 'active_admin/trix/engine' if defined?(::Rails)
2
- require 'active_admin/inputs/trix_input'
3
-
4
- module ActiveAdmin
5
- module Trix
6
- end
7
- end
@@ -1,7 +0,0 @@
1
- module ActiveAdmin
2
- # Required for trix.css and trix.js to be discoverable in the asset pipeline
3
- module Trix
4
- class Engine < ::Rails::Engine
5
- end
6
- end
7
- end
@@ -1,5 +0,0 @@
1
- module ActiveAdmin
2
- module Trix
3
- VERSION = '0.0.2'
4
- end
5
- end
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :formtastic_trix do
3
- # # Task goes here
4
- # end