attrtastic 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -0
- data/README.md +49 -0
- data/Rakefile +6 -2
- data/VERSION +1 -1
- data/attrtastic.gemspec +26 -8
- data/doc/Attrtastic/SemanticAttributesBuilder.html +1375 -0
- data/doc/Attrtastic/SemanticAttributesHelper.html +286 -0
- data/doc/Attrtastic.html +119 -0
- data/doc/_index.html +116 -0
- data/doc/class_list.html +36 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +50 -0
- data/doc/css/style.css +268 -0
- data/doc/file.README.html +107 -0
- data/doc/file_list.html +38 -0
- data/doc/frames.html +13 -0
- data/doc/index.html +107 -0
- data/doc/js/app.js +99 -0
- data/doc/js/full_list.js +106 -0
- data/doc/js/jquery.js +19 -0
- data/doc/method_list.html +83 -0
- data/doc/top-level-namespace.html +85 -0
- data/lib/attrtastic.rb +158 -3
- metadata +23 -8
- data/README +0 -0
- data/README.rdoc +0 -17
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: attrtastic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boruta Miroslaw
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-01-
|
12
|
+
date: 2010-01-11 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -22,7 +22,7 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: "0"
|
24
24
|
version:
|
25
|
-
description:
|
25
|
+
description: " Attrtastic, in its assumtion, should be similar in usage to formtastic and\n ease of displaying AR record informations (attributes). It should help\n scafforld show/index pages.\n"
|
26
26
|
email: boruta.miroslaw@gmail.com
|
27
27
|
executables: []
|
28
28
|
|
@@ -30,17 +30,32 @@ extensions: []
|
|
30
30
|
|
31
31
|
extra_rdoc_files:
|
32
32
|
- LICENSE
|
33
|
-
- README
|
34
|
-
- README.rdoc
|
33
|
+
- README.md
|
35
34
|
files:
|
36
35
|
- .document
|
37
36
|
- .gitignore
|
38
37
|
- LICENSE
|
39
|
-
- README
|
40
|
-
- README.rdoc
|
38
|
+
- README.md
|
41
39
|
- Rakefile
|
42
40
|
- VERSION
|
43
41
|
- attrtastic.gemspec
|
42
|
+
- doc/Attrtastic.html
|
43
|
+
- doc/Attrtastic/SemanticAttributesBuilder.html
|
44
|
+
- doc/Attrtastic/SemanticAttributesHelper.html
|
45
|
+
- doc/_index.html
|
46
|
+
- doc/class_list.html
|
47
|
+
- doc/css/common.css
|
48
|
+
- doc/css/full_list.css
|
49
|
+
- doc/css/style.css
|
50
|
+
- doc/file.README.html
|
51
|
+
- doc/file_list.html
|
52
|
+
- doc/frames.html
|
53
|
+
- doc/index.html
|
54
|
+
- doc/js/app.js
|
55
|
+
- doc/js/full_list.js
|
56
|
+
- doc/js/jquery.js
|
57
|
+
- doc/method_list.html
|
58
|
+
- doc/top-level-namespace.html
|
44
59
|
- lib/attrtastic.rb
|
45
60
|
- rails/init.rb
|
46
61
|
- test/helper.rb
|
@@ -75,7 +90,7 @@ rubyforge_project:
|
|
75
90
|
rubygems_version: 1.3.5
|
76
91
|
signing_key:
|
77
92
|
specification_version: 3
|
78
|
-
summary:
|
93
|
+
summary: Helps display attributes of AR record
|
79
94
|
test_files:
|
80
95
|
- test/helper.rb
|
81
96
|
- test/test_attrtastic.rb
|
data/README
DELETED
File without changes
|
data/README.rdoc
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
= attrtastic
|
2
|
-
|
3
|
-
Description goes here.
|
4
|
-
|
5
|
-
== Note on Patches/Pull Requests
|
6
|
-
|
7
|
-
* Fork the project.
|
8
|
-
* Make your feature addition or bug fix.
|
9
|
-
* Add tests for it. This is important so I don't break it in a
|
10
|
-
future version unintentionally.
|
11
|
-
* Commit, do not mess with rakefile, version, or history.
|
12
|
-
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
-
* Send me a pull request. Bonus points for topic branches.
|
14
|
-
|
15
|
-
== Copyright
|
16
|
-
|
17
|
-
Copyright (c) 2009 Boruta Miroslaw. See LICENSE for details.
|