fullstack-admin 0.1.34 → 0.1.35
Sign up to get free protection for your applications and to get access to all the features.
- data/TODO.tasks +47 -0
- data/VERSION +1 -1
- data/fullstack-admin.gemspec +3 -3
- metadata +4 -4
- data/TODO.md +0 -34
data/TODO.tasks
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
===========================
|
2
|
+
= Fullstack Admin Roadmap =
|
3
|
+
===========================
|
4
|
+
|
5
|
+
- fix delete not removing rows/thumbnails on success
|
6
|
+
|
7
|
+
✓ Better rendering for boolean input
|
8
|
+
|
9
|
+
- Nested forms for Has Many associations
|
10
|
+
✓ Sorting
|
11
|
+
✓ autogenerate from has_many
|
12
|
+
- skip input for associated model
|
13
|
+
|
14
|
+
✓ Fix production issues
|
15
|
+
|
16
|
+
✓ Multiple choice input with chosen
|
17
|
+
|
18
|
+
- Form for accepts_nested_attributes_for and has_one
|
19
|
+
|
20
|
+
- Image inputs
|
21
|
+
- detect smaller image size for thumbnails
|
22
|
+
- inference of input type from model
|
23
|
+
|
24
|
+
- Optional tracking of author/updaters for every model (CMS?)
|
25
|
+
|
26
|
+
|
27
|
+
==================
|
28
|
+
= Long Run Goals =
|
29
|
+
==================
|
30
|
+
|
31
|
+
- Use only twitter bootstrap (drop jquery-ui)
|
32
|
+
- switch to bootstrap datepicker
|
33
|
+
- find alternative to sortable
|
34
|
+
|
35
|
+
- Multiple scopes
|
36
|
+
- Tags input with chosen
|
37
|
+
|
38
|
+
- Alternated fields:
|
39
|
+
= Group of fields that can be setted exclusively
|
40
|
+
= eg
|
41
|
+
= field :age
|
42
|
+
= field :car, :string, :meaningful_if => :age.gt(18) # <- translated into javascript validation
|
43
|
+
|
44
|
+
= virtual_field :link_method, :in => %W(page external)
|
45
|
+
|
46
|
+
= belongs_to :related_page, :meaningful_if => :link_method.eq("page")
|
47
|
+
= field :url, :meaningful_if => :link_method.eq("external")
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.35
|
data/fullstack-admin.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "fullstack-admin"
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.35"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["mcasimir"]
|
12
|
-
s.date = "2012-08-
|
12
|
+
s.date = "2012-08-25"
|
13
13
|
s.description = "Administration interface framework for fullstack"
|
14
14
|
s.email = "maurizio.cas@gmail.com"
|
15
15
|
s.extra_rdoc_files = [
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
"Gemfile.lock",
|
21
21
|
"README.md",
|
22
22
|
"Rakefile",
|
23
|
-
"TODO.
|
23
|
+
"TODO.tasks",
|
24
24
|
"VERSION",
|
25
25
|
"app/assets/images/drag-handle.png",
|
26
26
|
"app/assets/images/iconic/gray/ampersand_10x16.png",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fullstack-admin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.35
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-08-
|
12
|
+
date: 2012-08-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -278,7 +278,7 @@ files:
|
|
278
278
|
- Gemfile.lock
|
279
279
|
- README.md
|
280
280
|
- Rakefile
|
281
|
-
- TODO.
|
281
|
+
- TODO.tasks
|
282
282
|
- VERSION
|
283
283
|
- app/assets/images/drag-handle.png
|
284
284
|
- app/assets/images/iconic/gray/ampersand_10x16.png
|
@@ -1328,7 +1328,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1328
1328
|
version: '0'
|
1329
1329
|
segments:
|
1330
1330
|
- 0
|
1331
|
-
hash:
|
1331
|
+
hash: -4441352441936102106
|
1332
1332
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1333
1333
|
none: false
|
1334
1334
|
requirements:
|
data/TODO.md
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
# Fullstack Admin Roadmap
|
2
|
-
|
3
|
-
* Fix production issues
|
4
|
-
|
5
|
-
* Multiple choice input with chosen
|
6
|
-
|
7
|
-
* Image inputs + detect smaller image size for thumbnails
|
8
|
-
|
9
|
-
* Inference of input type from model
|
10
|
-
has_attached :photo, :image => true
|
11
|
-
->
|
12
|
-
input :photo, :as => :image
|
13
|
-
|
14
|
-
---
|
15
|
-
|
16
|
-
## Long run goals
|
17
|
-
|
18
|
-
* Use only twitter bootstrap (drop jquery-ui)
|
19
|
-
- switch to bootstrap datepicker
|
20
|
-
- find alternative to sortable
|
21
|
-
|
22
|
-
* Multiple scopes
|
23
|
-
* Tags input with chosen
|
24
|
-
* Optional tracking of author/updaters for every model
|
25
|
-
|
26
|
-
---
|
27
|
-
|
28
|
-
## Completed
|
29
|
-
|
30
|
-
* Better rendering for boolean input
|
31
|
-
|
32
|
-
* Nested forms for Has Many associations
|
33
|
-
- Sorting
|
34
|
-
- Autogenerate from has_many
|