hashbrowns 0.1.5 → 0.1.6

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/Gemfile.lock CHANGED
@@ -35,6 +35,7 @@ GEM
35
35
  rdoc
36
36
  journey (1.0.4)
37
37
  json (1.7.5)
38
+ json (1.7.5-java)
38
39
  multi_json (1.3.7)
39
40
  rack (1.4.1)
40
41
  rack-cache (1.2)
@@ -68,6 +69,7 @@ GEM
68
69
  tilt (1.3.3)
69
70
 
70
71
  PLATFORMS
72
+ java
71
73
  ruby
72
74
 
73
75
  DEPENDENCIES
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.5
1
+ 0.1.6
data/example/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- hashbrowns (0.1.0)
4
+ hashbrowns (0.1.5)
5
5
  haml-rails
6
6
 
7
7
  GEM
data/hashbrowns.gemspec CHANGED
@@ -4,14 +4,14 @@
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
- s.name = "hashbrowns"
8
- s.version = "0.1.5"
7
+ s.name = %q{hashbrowns}
8
+ s.version = "0.1.6"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["crimsonknave"]
12
- s.date = "2012-11-13"
13
- s.description = "Provides a DSL and helpers to convert hashes into html tables. Allows you to create overviews with selected fields, define keys whose values link to a url and so on."
14
- s.email = "crimsonknave@gmail.com"
11
+ s.authors = [%q{crimsonknave}]
12
+ s.date = %q{2012-12-03}
13
+ s.description = %q{Provides a DSL and helpers to convert hashes into html tables. Allows you to create overviews with selected fields, define keys whose values link to a url and so on.}
14
+ s.email = %q{crimsonknave@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE.txt",
17
17
  "README.md",
@@ -149,11 +149,11 @@ Gem::Specification.new do |s|
149
149
  "test/helper.rb",
150
150
  "test/test_hash_tabler.rb"
151
151
  ]
152
- s.homepage = "http://github.com/crimsonknave/hashbrowns"
153
- s.licenses = ["MIT"]
154
- s.require_paths = ["lib"]
155
- s.rubygems_version = "1.8.11"
156
- s.summary = "Cooks your hashes into html"
152
+ s.homepage = %q{http://github.com/crimsonknave/hashbrowns}
153
+ s.licenses = [%q{MIT}]
154
+ s.require_paths = [%q{lib}]
155
+ s.rubygems_version = %q{1.8.9}
156
+ s.summary = %q{Cooks your hashes into html}
157
157
 
158
158
  if s.respond_to? :specification_version then
159
159
  s.specification_version = 3
@@ -53,12 +53,13 @@ module HashBrowns
53
53
  end
54
54
 
55
55
  def add_important_name(name, value, status=false)
56
- name, value, status = name.to_s, value.to_s, status.to_s
57
- value = value.downcase if @ignore_important_case && value.kind_of?(String)
56
+ name = name.to_s
58
57
  if value.kind_of?(Proc)
59
58
  @important[name] = value
60
59
  return
61
60
  end
61
+ value, status = value.to_s, status.to_s
62
+ value = value.downcase if @ignore_important_case && value.kind_of?(String)
62
63
  return false unless status
63
64
  status = @status_hash[status] if @status_hash.has_key?(status)
64
65
 
@@ -4,7 +4,7 @@ module HashBrowns
4
4
  return "" if value.nil? or key.nil?
5
5
  key, value, parent, id, text = key.to_s, value.to_s, parent.to_s, id.to_s, text.to_s
6
6
  text = value if text
7
- puts "k #{key}, v #{value}, p #{parent} i #{id} t #{text}"
7
+ #puts "k #{key}, v #{value}, p #{parent} i #{id} t #{text}"
8
8
  return link_to(text, HashBrowns.conf.link_parents[parent][key]+value).html_safe if parent && HashBrowns.conf.link_parents.has_key?(parent) && HashBrowns.conf.link_parents[parent].has_key?(key)
9
9
  return link_to(text, HashBrowns.conf.link_hash[key]+value).html_safe if HashBrowns.conf.link_hash.has_key?(key)
10
10
  return link_to(text, value).html_safe if HashBrowns.conf.links.include?(key)
@@ -5,7 +5,7 @@ module HashBrowns
5
5
  type = type.to_s
6
6
  fields = HashBrowns.conf.key_fields[type]
7
7
  return [] unless fields
8
- puts "calling field parser now"
8
+ #puts "calling field parser now"
9
9
  return field_parser(type, fields, [])
10
10
  end
11
11
 
metadata CHANGED
@@ -1,235 +1,239 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: hashbrowns
3
- version: !ruby/object:Gem::Version
4
- version: 0.1.5
3
+ version: !ruby/object:Gem::Version
5
4
  prerelease:
5
+ version: 0.1.6
6
6
  platform: ruby
7
- authors:
8
- - crimsonknave
7
+ authors:
8
+ - crimsonknave
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-11-13 00:00:00.000000000Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: haml-rails
16
- requirement: &6313860 !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
21
- version: '0'
22
- type: :runtime
23
- prerelease: false
24
- version_requirements: *6313860
25
- - !ruby/object:Gem::Dependency
26
- name: shoulda
27
- requirement: &6313280 !ruby/object:Gem::Requirement
28
- none: false
29
- requirements:
30
- - - ! '>='
31
- - !ruby/object:Gem::Version
32
- version: '0'
33
- type: :development
34
- prerelease: false
35
- version_requirements: *6313280
36
- - !ruby/object:Gem::Dependency
37
- name: rdoc
38
- requirement: &6312780 !ruby/object:Gem::Requirement
39
- none: false
40
- requirements:
41
- - - ! '>='
42
- - !ruby/object:Gem::Version
43
- version: '0'
44
- type: :development
45
- prerelease: false
46
- version_requirements: *6312780
47
- - !ruby/object:Gem::Dependency
48
- name: bundler
49
- requirement: &6312240 !ruby/object:Gem::Requirement
50
- none: false
51
- requirements:
52
- - - ! '>='
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- type: :development
56
- prerelease: false
57
- version_requirements: *6312240
58
- - !ruby/object:Gem::Dependency
59
- name: jeweler
60
- requirement: &6311640 !ruby/object:Gem::Requirement
61
- none: false
62
- requirements:
63
- - - ! '>='
64
- - !ruby/object:Gem::Version
65
- version: '0'
66
- type: :development
67
- prerelease: false
68
- version_requirements: *6311640
69
- description: Provides a DSL and helpers to convert hashes into html tables. Allows
70
- you to create overviews with selected fields, define keys whose values link to a
71
- url and so on.
12
+
13
+ date: 2012-12-03 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: haml-rails
17
+ prerelease: false
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ type: :runtime
25
+ version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: shoulda
28
+ prerelease: false
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: "0"
35
+ type: :development
36
+ version_requirements: *id002
37
+ - !ruby/object:Gem::Dependency
38
+ name: rdoc
39
+ prerelease: false
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ type: :development
47
+ version_requirements: *id003
48
+ - !ruby/object:Gem::Dependency
49
+ name: bundler
50
+ prerelease: false
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: "0"
57
+ type: :development
58
+ version_requirements: *id004
59
+ - !ruby/object:Gem::Dependency
60
+ name: jeweler
61
+ prerelease: false
62
+ requirement: &id005 !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: "0"
68
+ type: :development
69
+ version_requirements: *id005
70
+ description: Provides a DSL and helpers to convert hashes into html tables. Allows you to create overviews with selected fields, define keys whose values link to a url and so on.
72
71
  email: crimsonknave@gmail.com
73
72
  executables: []
73
+
74
74
  extensions: []
75
- extra_rdoc_files:
76
- - LICENSE.txt
77
- - README.md
78
- - TODO
79
- files:
80
- - .document
81
- - .rvmrc
82
- - Gemfile
83
- - Gemfile.lock
84
- - LICENSE.txt
85
- - README.md
86
- - Rakefile
87
- - TODO
88
- - VERSION
89
- - example/.gitignore
90
- - example/.rvmrc
91
- - example/Gemfile
92
- - example/Gemfile.lock
93
- - example/README.rdoc
94
- - example/Rakefile
95
- - example/app/assets/images/rails.png
96
- - example/app/assets/javascripts/application.js
97
- - example/app/assets/javascripts/customers.js.coffee
98
- - example/app/assets/javascripts/destinations.js.coffee
99
- - example/app/assets/javascripts/orders.js.coffee
100
- - example/app/assets/stylesheets/application.css.scss
101
- - example/app/assets/stylesheets/bootstrap_and_overrides.css.scss
102
- - example/app/assets/stylesheets/customers.css.scss
103
- - example/app/assets/stylesheets/destinations.css.scss
104
- - example/app/assets/stylesheets/orders.css.scss
105
- - example/app/assets/stylesheets/scaffolds.css.scss
106
- - example/app/controllers/application_controller.rb
107
- - example/app/controllers/customers_controller.rb
108
- - example/app/controllers/destinations_controller.rb
109
- - example/app/controllers/orders_controller.rb
110
- - example/app/helpers/application_helper.rb
111
- - example/app/helpers/customers_helper.rb
112
- - example/app/helpers/destinations_helper.rb
113
- - example/app/helpers/orders_helper.rb
114
- - example/app/mailers/.gitkeep
115
- - example/app/models/.gitkeep
116
- - example/app/models/customer.rb
117
- - example/app/models/destination.rb
118
- - example/app/models/order.rb
119
- - example/app/views/customers/_form.html.erb
120
- - example/app/views/customers/edit.html.erb
121
- - example/app/views/customers/full.rabl
122
- - example/app/views/customers/index.html.erb
123
- - example/app/views/customers/index.rabl
124
- - example/app/views/customers/new.html.erb
125
- - example/app/views/customers/show.html.erb
126
- - example/app/views/customers/show.rabl
127
- - example/app/views/destinations/_form.html.erb
128
- - example/app/views/destinations/edit.html.erb
129
- - example/app/views/destinations/full.rabl
130
- - example/app/views/destinations/index.html.erb
131
- - example/app/views/destinations/index.rabl
132
- - example/app/views/destinations/new.html.erb
133
- - example/app/views/destinations/show.html.erb
134
- - example/app/views/destinations/show.rabl
135
- - example/app/views/layouts/application.html.erb
136
- - example/app/views/orders/_form.html.erb
137
- - example/app/views/orders/edit.html.erb
138
- - example/app/views/orders/full.rabl
139
- - example/app/views/orders/index.html.erb
140
- - example/app/views/orders/index.rabl
141
- - example/app/views/orders/new.html.erb
142
- - example/app/views/orders/show.html.erb
143
- - example/app/views/orders/show.rabl
144
- - example/config.ru
145
- - example/config/application.rb
146
- - example/config/boot.rb
147
- - example/config/database.yml
148
- - example/config/environment.rb
149
- - example/config/environments/development.rb
150
- - example/config/environments/production.rb
151
- - example/config/environments/test.rb
152
- - example/config/initializers/backtrace_silencers.rb
153
- - example/config/initializers/hashbrowns.rb
154
- - example/config/initializers/inflections.rb
155
- - example/config/initializers/mime_types.rb
156
- - example/config/initializers/secret_token.rb
157
- - example/config/initializers/session_store.rb
158
- - example/config/initializers/wrap_parameters.rb
159
- - example/config/locales/en.yml
160
- - example/config/routes.rb
161
- - example/db/migrate/20121102164922_create_customers.rb
162
- - example/db/migrate/20121102165116_create_orders.rb
163
- - example/db/migrate/20121102165208_create_destinations.rb
164
- - example/db/schema.rb
165
- - example/db/seeds.rb
166
- - example/lib/assets/.gitkeep
167
- - example/lib/tasks/.gitkeep
168
- - example/log/.gitkeep
169
- - example/public/404.html
170
- - example/public/422.html
171
- - example/public/500.html
172
- - example/public/favicon.ico
173
- - example/public/index.html
174
- - example/public/robots.txt
175
- - example/script/rails
176
- - example/test/fixtures/.gitkeep
177
- - example/test/fixtures/customers.yml
178
- - example/test/fixtures/destinations.yml
179
- - example/test/fixtures/orders.yml
180
- - example/test/functional/.gitkeep
181
- - example/test/functional/customers_controller_test.rb
182
- - example/test/functional/destinations_controller_test.rb
183
- - example/test/functional/orders_controller_test.rb
184
- - example/test/integration/.gitkeep
185
- - example/test/performance/browsing_test.rb
186
- - example/test/test_helper.rb
187
- - example/test/unit/.gitkeep
188
- - example/test/unit/customer_test.rb
189
- - example/test/unit/destination_test.rb
190
- - example/test/unit/helpers/customers_helper_test.rb
191
- - example/test/unit/helpers/destinations_helper_test.rb
192
- - example/test/unit/helpers/orders_helper_test.rb
193
- - example/test/unit/order_test.rb
194
- - example/vendor/assets/javascripts/.gitkeep
195
- - example/vendor/assets/stylesheets/.gitkeep
196
- - example/vendor/plugins/.gitkeep
197
- - hashbrowns.gemspec
198
- - lib/hashbrowns.rb
199
- - lib/hashbrowns/configuration.rb
200
- - lib/hashbrowns/helpers/display_helpers.rb
201
- - lib/hashbrowns/helpers/links_helpers.rb
202
- - lib/hashbrowns/helpers/overview_helpers.rb
203
- - lib/hashbrowns/helpers/relations_helpers.rb
204
- - lib/hashbrowns/helpers/renderer_helpers.rb
205
- - lib/hashbrowns/railtie.rb
206
- - lib/hashbrowns/views/hashbrowns/_overview.html.haml
207
- - lib/hashbrowns/views/hashbrowns/_recursive_hash_tabler.html.haml
208
- - test/helper.rb
209
- - test/test_hash_tabler.rb
75
+
76
+ extra_rdoc_files:
77
+ - LICENSE.txt
78
+ - README.md
79
+ - TODO
80
+ files:
81
+ - .document
82
+ - .rvmrc
83
+ - Gemfile
84
+ - Gemfile.lock
85
+ - LICENSE.txt
86
+ - README.md
87
+ - Rakefile
88
+ - TODO
89
+ - VERSION
90
+ - example/.gitignore
91
+ - example/.rvmrc
92
+ - example/Gemfile
93
+ - example/Gemfile.lock
94
+ - example/README.rdoc
95
+ - example/Rakefile
96
+ - example/app/assets/images/rails.png
97
+ - example/app/assets/javascripts/application.js
98
+ - example/app/assets/javascripts/customers.js.coffee
99
+ - example/app/assets/javascripts/destinations.js.coffee
100
+ - example/app/assets/javascripts/orders.js.coffee
101
+ - example/app/assets/stylesheets/application.css.scss
102
+ - example/app/assets/stylesheets/bootstrap_and_overrides.css.scss
103
+ - example/app/assets/stylesheets/customers.css.scss
104
+ - example/app/assets/stylesheets/destinations.css.scss
105
+ - example/app/assets/stylesheets/orders.css.scss
106
+ - example/app/assets/stylesheets/scaffolds.css.scss
107
+ - example/app/controllers/application_controller.rb
108
+ - example/app/controllers/customers_controller.rb
109
+ - example/app/controllers/destinations_controller.rb
110
+ - example/app/controllers/orders_controller.rb
111
+ - example/app/helpers/application_helper.rb
112
+ - example/app/helpers/customers_helper.rb
113
+ - example/app/helpers/destinations_helper.rb
114
+ - example/app/helpers/orders_helper.rb
115
+ - example/app/mailers/.gitkeep
116
+ - example/app/models/.gitkeep
117
+ - example/app/models/customer.rb
118
+ - example/app/models/destination.rb
119
+ - example/app/models/order.rb
120
+ - example/app/views/customers/_form.html.erb
121
+ - example/app/views/customers/edit.html.erb
122
+ - example/app/views/customers/full.rabl
123
+ - example/app/views/customers/index.html.erb
124
+ - example/app/views/customers/index.rabl
125
+ - example/app/views/customers/new.html.erb
126
+ - example/app/views/customers/show.html.erb
127
+ - example/app/views/customers/show.rabl
128
+ - example/app/views/destinations/_form.html.erb
129
+ - example/app/views/destinations/edit.html.erb
130
+ - example/app/views/destinations/full.rabl
131
+ - example/app/views/destinations/index.html.erb
132
+ - example/app/views/destinations/index.rabl
133
+ - example/app/views/destinations/new.html.erb
134
+ - example/app/views/destinations/show.html.erb
135
+ - example/app/views/destinations/show.rabl
136
+ - example/app/views/layouts/application.html.erb
137
+ - example/app/views/orders/_form.html.erb
138
+ - example/app/views/orders/edit.html.erb
139
+ - example/app/views/orders/full.rabl
140
+ - example/app/views/orders/index.html.erb
141
+ - example/app/views/orders/index.rabl
142
+ - example/app/views/orders/new.html.erb
143
+ - example/app/views/orders/show.html.erb
144
+ - example/app/views/orders/show.rabl
145
+ - example/config.ru
146
+ - example/config/application.rb
147
+ - example/config/boot.rb
148
+ - example/config/database.yml
149
+ - example/config/environment.rb
150
+ - example/config/environments/development.rb
151
+ - example/config/environments/production.rb
152
+ - example/config/environments/test.rb
153
+ - example/config/initializers/backtrace_silencers.rb
154
+ - example/config/initializers/hashbrowns.rb
155
+ - example/config/initializers/inflections.rb
156
+ - example/config/initializers/mime_types.rb
157
+ - example/config/initializers/secret_token.rb
158
+ - example/config/initializers/session_store.rb
159
+ - example/config/initializers/wrap_parameters.rb
160
+ - example/config/locales/en.yml
161
+ - example/config/routes.rb
162
+ - example/db/migrate/20121102164922_create_customers.rb
163
+ - example/db/migrate/20121102165116_create_orders.rb
164
+ - example/db/migrate/20121102165208_create_destinations.rb
165
+ - example/db/schema.rb
166
+ - example/db/seeds.rb
167
+ - example/lib/assets/.gitkeep
168
+ - example/lib/tasks/.gitkeep
169
+ - example/log/.gitkeep
170
+ - example/public/404.html
171
+ - example/public/422.html
172
+ - example/public/500.html
173
+ - example/public/favicon.ico
174
+ - example/public/index.html
175
+ - example/public/robots.txt
176
+ - example/script/rails
177
+ - example/test/fixtures/.gitkeep
178
+ - example/test/fixtures/customers.yml
179
+ - example/test/fixtures/destinations.yml
180
+ - example/test/fixtures/orders.yml
181
+ - example/test/functional/.gitkeep
182
+ - example/test/functional/customers_controller_test.rb
183
+ - example/test/functional/destinations_controller_test.rb
184
+ - example/test/functional/orders_controller_test.rb
185
+ - example/test/integration/.gitkeep
186
+ - example/test/performance/browsing_test.rb
187
+ - example/test/test_helper.rb
188
+ - example/test/unit/.gitkeep
189
+ - example/test/unit/customer_test.rb
190
+ - example/test/unit/destination_test.rb
191
+ - example/test/unit/helpers/customers_helper_test.rb
192
+ - example/test/unit/helpers/destinations_helper_test.rb
193
+ - example/test/unit/helpers/orders_helper_test.rb
194
+ - example/test/unit/order_test.rb
195
+ - example/vendor/assets/javascripts/.gitkeep
196
+ - example/vendor/assets/stylesheets/.gitkeep
197
+ - example/vendor/plugins/.gitkeep
198
+ - hashbrowns.gemspec
199
+ - lib/hashbrowns.rb
200
+ - lib/hashbrowns/configuration.rb
201
+ - lib/hashbrowns/helpers/display_helpers.rb
202
+ - lib/hashbrowns/helpers/links_helpers.rb
203
+ - lib/hashbrowns/helpers/overview_helpers.rb
204
+ - lib/hashbrowns/helpers/relations_helpers.rb
205
+ - lib/hashbrowns/helpers/renderer_helpers.rb
206
+ - lib/hashbrowns/railtie.rb
207
+ - lib/hashbrowns/views/hashbrowns/_overview.html.haml
208
+ - lib/hashbrowns/views/hashbrowns/_recursive_hash_tabler.html.haml
209
+ - test/helper.rb
210
+ - test/test_hash_tabler.rb
210
211
  homepage: http://github.com/crimsonknave/hashbrowns
211
- licenses:
212
- - MIT
212
+ licenses:
213
+ - MIT
213
214
  post_install_message:
214
215
  rdoc_options: []
215
- require_paths:
216
- - lib
217
- required_ruby_version: !ruby/object:Gem::Requirement
216
+
217
+ require_paths:
218
+ - lib
219
+ required_ruby_version: !ruby/object:Gem::Requirement
218
220
  none: false
219
- requirements:
220
- - - ! '>='
221
- - !ruby/object:Gem::Version
222
- version: '0'
223
- required_rubygems_version: !ruby/object:Gem::Requirement
221
+ requirements:
222
+ - - ">="
223
+ - !ruby/object:Gem::Version
224
+ version: "0"
225
+ required_rubygems_version: !ruby/object:Gem::Requirement
224
226
  none: false
225
- requirements:
226
- - - ! '>='
227
- - !ruby/object:Gem::Version
228
- version: '0'
227
+ requirements:
228
+ - - ">="
229
+ - !ruby/object:Gem::Version
230
+ version: "0"
229
231
  requirements: []
232
+
230
233
  rubyforge_project:
231
- rubygems_version: 1.8.11
234
+ rubygems_version: 1.8.9
232
235
  signing_key:
233
236
  specification_version: 3
234
237
  summary: Cooks your hashes into html
235
238
  test_files: []
239
+