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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db3cb9d78ede847bf343cb0768841f673b109f00
4
- data.tar.gz: fc77b3de9768a1972aa84280a257fdced9b7a3fa
3
+ metadata.gz: 11d1eaedd36412fc99cd65b824ce719e40ee750c
4
+ data.tar.gz: f780e8ce592b8814247fc733b17ec63cde76a4b4
5
5
  SHA512:
6
- metadata.gz: e8c400ad28ffe89d636178e14d8eadffff1e5f300ec5087cae9589de64b3ca21f3fe5fbf8a9efec63ae6fd97d3a46006583a5b2f39bd9fd8dc0359aa2b4df3a7
7
- data.tar.gz: e6970545c6951e49e69b0a0ec1c77e8c21d8c337f66c3862e9de36f47500acd0ce2b3f82e61073e9033b8f9d6bb981463584c725248af9d7f4c432c066509ddc
6
+ metadata.gz: 62b7af3178da8fa5cac578f47a30dcc9118312162fa9e1e62026eefd591cd897eeacda2e4b6d65a2b5d45e33172c359d9fbe9c1b70c80d5e540976899ed667a9
7
+ data.tar.gz: ddd4f1fe2e38ab76b91b1db3f0aec640fceffe421bf685d2b4b019650ca943d672578acb0bd77ff24d3de168dd39c4d2bbb1775eda4392533ecb95697f510e41
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Active Admin Sortable
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-sortable"
36
+ gem "activeadmin-orderable"
37
37
  ```
38
38
 
39
39
  ### Include the JavaScript in active_admin.js.coffee
40
40
 
41
- ```javascript
42
- #= require activeadmin-sortable
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-sortable"
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-sortable/version'
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 sort interface for ActiveAdmin tables}
12
- gem.summary = %q{Drag and drop sort interface for ActiveAdmin tables}
13
- gem.homepage = "https://github.com/newcontext/activeadmin-sortable"
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) }
@@ -1,5 +1,5 @@
1
1
  module Activeadmin
2
2
  module Sortable
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
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.0
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 sort interface for ActiveAdmin tables
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-sortable.gemspec
42
- - app/assets/javascripts/activeadmin-sortable.js
43
- - app/assets/stylesheets/activeadmin-sortable.css
44
- - lib/activeadmin-sortable.rb
45
- - lib/activeadmin-sortable/version.rb
46
- homepage: https://github.com/newcontext/activeadmin-sortable
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 sort interface for ActiveAdmin tables
68
+ summary: Drag and drop reordering interface for ActiveAdmin tables
69
69
  test_files: []