ants 0.3.0 → 0.3.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: 8684f96b36137070f69d0d47d8dc7ffd382791cd
4
- data.tar.gz: 9fc8852366aa9e43600d5f2b1888f43dd906679d
3
+ metadata.gz: 712e55e9082096099f5a7ba01710bbe7db985763
4
+ data.tar.gz: 510bd8d72614fe3722f2829cc3ea05e96f92cf3d
5
5
  SHA512:
6
- metadata.gz: 7266c9d93188a7fca00f2f33c1e1af59f0ea56195518abc374d54157542e40138f0553951bd6b8862ebedb0c73798cabbd64cb27a4a0f7e99f44686453b16ff6
7
- data.tar.gz: 545cc51d36d4f67b8c578ac4742beae24887558225cf235506aba811345fede6349f0a6e2c2f648f7371b2c7e2308990acb475feada440a36023904a338a573f
6
+ metadata.gz: 246bad50408a95ced72c354bc2eadfbcf421bd56c6a9eecb7c961ad4b4a806a45aa401ebaf0b7703e43dc58fc94aa8200d210039eeb33a2192d1e3ac0e3dafeb
7
+ data.tar.gz: 9ba4b32619583139a8a4cf49fd7481a8d1a1941530ddcdec820b09fe6f985f448806aa3ce5410bf56473823349cd0a1682f24dc29683324e9671273d56811d90
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ants (0.3.0)
4
+ ants (0.3.1)
5
5
  devise
6
6
  mongoid (>= 4.0)
7
7
  mongoid-slug (>= 4.0.0)
@@ -5,17 +5,17 @@ class @AntsAdminUsers
5
5
  showWithParent: true
6
6
 
7
7
  arrayStore: new RailsArrayStore({
8
- resource: 'admin'
9
- path: "#{ apiPath }/admin_users"
10
- sortBy: 'name'
8
+ resource: 'admin_user'
9
+ path: "#{ apiPath }/admin_users"
10
+ sortBy: 'name'
11
11
  searchable: true
12
12
  })
13
13
 
14
14
  formSchema:
15
15
  name:
16
- type: 'string'
17
- required: true
18
- label: "Name"
16
+ type: 'string'
17
+ required: true
18
+ label: "Name"
19
19
  placeholder: 'Full name'
20
20
  onInitialize: (input) ->
21
21
  if input.object
@@ -24,8 +24,8 @@ class @AntsAdminUsers
24
24
  input._add_disabled()
25
25
 
26
26
  email:
27
- type: 'string'
28
- required: true
27
+ type: 'string'
28
+ required: true
29
29
  placeholder: 'Email'
30
30
 
31
31
  onInitialize: (input) ->
@@ -40,8 +40,8 @@ class @AntsAdminUsers
40
40
  input.$actions.append input.$avatarBtn
41
41
 
42
42
  password:
43
- type: 'password'
44
- required: true
43
+ type: 'password'
44
+ required: true
45
45
  placeholder: 'Password'
46
46
  onInitialize: (input) ->
47
47
  if input.object
data/lib/ants/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ants
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ants
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Kravets