activeadmin-orderable 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -5
- data/{activeadmin-sortable.gemspec → activeadmin-orderable.gemspec} +4 -4
- data/app/assets/javascripts/{activeadmin-sortable.js → activeadmin-orderable.js} +0 -0
- data/app/assets/stylesheets/{activeadmin-sortable.css → activeadmin-orderable.css} +0 -0
- data/lib/{activeadmin-sortable → activeadmin-orderable}/version.rb +1 -1
- data/lib/{activeadmin-sortable.rb → activeadmin-orderable.rb} +0 -0
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11d1eaedd36412fc99cd65b824ce719e40ee750c
|
4
|
+
data.tar.gz: f780e8ce592b8814247fc733b17ec63cde76a4b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62b7af3178da8fa5cac578f47a30dcc9118312162fa9e1e62026eefd591cd897eeacda2e4b6d65a2b5d45e33172c359d9fbe9c1b70c80d5e540976899ed667a9
|
7
|
+
data.tar.gz: ddd4f1fe2e38ab76b91b1db3f0aec640fceffe421bf685d2b4b019650ca943d672578acb0bd77ff24d3de168dd39c4d2bbb1775eda4392533ecb95697f510e41
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Active Admin
|
1
|
+
# Active Admin Orderable
|
2
2
|
|
3
3
|
This gem extends ActiveAdmin so that your index page's table rows can be
|
4
4
|
sortable via a drag-and-drop interface.
|
@@ -33,18 +33,19 @@ end
|
|
33
33
|
### Add it to your Gemfile
|
34
34
|
|
35
35
|
```ruby
|
36
|
-
gem "activeadmin-
|
36
|
+
gem "activeadmin-orderable"
|
37
37
|
```
|
38
38
|
|
39
39
|
### Include the JavaScript in active_admin.js.coffee
|
40
40
|
|
41
|
-
```
|
42
|
-
#= require activeadmin-
|
41
|
+
```coffeescript
|
42
|
+
#= require activeadmin-orderable
|
43
43
|
```
|
44
44
|
|
45
45
|
### Include the Stylesheet in active_admin.css.scss
|
46
|
+
|
46
47
|
```scss
|
47
|
-
@import "activeadmin-
|
48
|
+
@import "activeadmin-orderable"
|
48
49
|
```
|
49
50
|
|
50
51
|
### Configure your ActiveAdmin Resource
|
@@ -1,16 +1,16 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'activeadmin-
|
4
|
+
require 'activeadmin-orderable/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |gem|
|
7
7
|
gem.name = "activeadmin-orderable"
|
8
8
|
gem.version = Activeadmin::Sortable::VERSION
|
9
9
|
gem.authors = ["Adam McCrea", "Jonathan Gertig"]
|
10
10
|
gem.email = ["adam@adamlogic.com", "jcgertig@gmail.com"]
|
11
|
-
gem.description = %q{Drag and drop
|
12
|
-
gem.summary = %q{Drag and drop
|
13
|
-
gem.homepage = "https://github.com/
|
11
|
+
gem.description = %q{Drag and drop reordering interface for ActiveAdmin tables}
|
12
|
+
gem.summary = %q{Drag and drop reordering interface for ActiveAdmin tables}
|
13
|
+
gem.homepage = "https://github.com/jcgertig/activeadmin-orderable"
|
14
14
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activeadmin-orderable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam McCrea
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
27
|
version: '0.4'
|
28
|
-
description: Drag and drop
|
28
|
+
description: Drag and drop reordering interface for ActiveAdmin tables
|
29
29
|
email:
|
30
30
|
- adam@adamlogic.com
|
31
31
|
- jcgertig@gmail.com
|
@@ -38,12 +38,12 @@ files:
|
|
38
38
|
- LICENSE.txt
|
39
39
|
- README.md
|
40
40
|
- Rakefile
|
41
|
-
- activeadmin-
|
42
|
-
- app/assets/javascripts/activeadmin-
|
43
|
-
- app/assets/stylesheets/activeadmin-
|
44
|
-
- lib/activeadmin-
|
45
|
-
- lib/activeadmin-
|
46
|
-
homepage: https://github.com/
|
41
|
+
- activeadmin-orderable.gemspec
|
42
|
+
- app/assets/javascripts/activeadmin-orderable.js
|
43
|
+
- app/assets/stylesheets/activeadmin-orderable.css
|
44
|
+
- lib/activeadmin-orderable.rb
|
45
|
+
- lib/activeadmin-orderable/version.rb
|
46
|
+
homepage: https://github.com/jcgertig/activeadmin-orderable
|
47
47
|
licenses: []
|
48
48
|
metadata: {}
|
49
49
|
post_install_message:
|
@@ -65,5 +65,5 @@ rubyforge_project:
|
|
65
65
|
rubygems_version: 2.4.5
|
66
66
|
signing_key:
|
67
67
|
specification_version: 4
|
68
|
-
summary: Drag and drop
|
68
|
+
summary: Drag and drop reordering interface for ActiveAdmin tables
|
69
69
|
test_files: []
|