activeadmin_reorderable 0.0.3 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/CONTRIBUTING.md +27 -0
- data/lib/active_admin/reorderable/dsl.rb +1 -1
- data/lib/activeadmin_reorderable/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ba2baf266f9017eb5aa9b28092cbad248c30296
|
4
|
+
data.tar.gz: aac13b30bd7e9ceac019916a2dca6b83493f1783
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc599627c63e489cc162f5e527e50fa209c0df5ce15af88c6c48c4f14e17cd83a126ec6c5bd37afca078ba137510f8d507e15a8f0ba879932ed65127df8b15bd
|
7
|
+
data.tar.gz: 2b417e98afaaf8e867c17a6a4f06010020590470d76333c77e24a9b668127e122d5ba7e16e0efb97c3c73ff954d809a4690a5564b11fafd7ee0c3a06dbbc2485
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# Contributing
|
2
|
+
|
3
|
+
Thank you for considering a contribution to this project!
|
4
|
+
|
5
|
+
## Deployment
|
6
|
+
|
7
|
+
`activeadmin_reorderable` is published on http://rubygems.org. The
|
8
|
+
following steps are necessary to push a new version:
|
9
|
+
|
10
|
+
### Build the gem
|
11
|
+
|
12
|
+
`gem build activeadmin_reorderable.gemspec`
|
13
|
+
|
14
|
+
This will produce an artifact named roughly
|
15
|
+
`activeadmin_reorderable-<version>.gem`.
|
16
|
+
|
17
|
+
### Publish the gem
|
18
|
+
|
19
|
+
`gem push activeadmin_reorderable-<version>.gem`
|
20
|
+
|
21
|
+
You may bump into permissions issues if you have not been added as an
|
22
|
+
owner on the gem. Consult the Viget development team for acess.
|
23
|
+
|
24
|
+
## Reviews
|
25
|
+
|
26
|
+
All changes should be submitted through pull request. Ideally, at
|
27
|
+
least two :+1:s should be given before a pull request is merge.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activeadmin_reorderable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Jones
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2017-10-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activeadmin
|
@@ -34,6 +34,7 @@ extra_rdoc_files: []
|
|
34
34
|
files:
|
35
35
|
- ".gitignore"
|
36
36
|
- CHANGELOG.md
|
37
|
+
- CONTRIBUTING.md
|
37
38
|
- Gemfile
|
38
39
|
- MIT-LICENSE
|
39
40
|
- README.md
|
@@ -67,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
68
|
version: '0'
|
68
69
|
requirements: []
|
69
70
|
rubyforge_project:
|
70
|
-
rubygems_version: 2.
|
71
|
+
rubygems_version: 2.4.5.1
|
71
72
|
signing_key:
|
72
73
|
specification_version: 4
|
73
74
|
summary: Drag and drop reordering for ActiveAdmin tables
|