ultimate-helpers 0.1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. data/.gitignore +8 -0
  2. data/.rvmrc +1 -0
  3. data/.rvmrc.example +1 -0
  4. data/Gemfile +10 -0
  5. data/Gemfile.lock +126 -0
  6. data/LICENSE +19 -0
  7. data/README.md +25 -0
  8. data/Rakefile +1 -0
  9. data/app/assets/javascripts/ultimate/base.js.coffee +11 -0
  10. data/app/assets/javascripts/ultimate/helpers/asset_tag.js.coffee +82 -0
  11. data/app/assets/javascripts/ultimate/helpers/base.js.coffee +3 -0
  12. data/app/assets/javascripts/ultimate/helpers/decor.js.coffee +19 -0
  13. data/app/assets/javascripts/ultimate/helpers/form_options.js.coffee +106 -0
  14. data/app/assets/javascripts/ultimate/helpers/form_tag.js.coffee +175 -0
  15. data/app/assets/javascripts/ultimate/helpers/javascript.js.coffee +31 -0
  16. data/app/assets/javascripts/ultimate/helpers/number.js.coffee +600 -0
  17. data/app/assets/javascripts/ultimate/helpers/record_tag.js.coffee +81 -0
  18. data/app/assets/javascripts/ultimate/helpers/tag.js.coffee +91 -0
  19. data/app/assets/javascripts/ultimate/helpers/url.js.coffee +152 -0
  20. data/app/assets/javascripts/ultimate/helpers.js.coffee +122 -0
  21. data/app/assets/javascripts/ultimate/jquery.base.js.coffee +85 -0
  22. data/app/assets/javascripts/ultimate/underscore/underscore.inflection.js +176 -0
  23. data/app/assets/javascripts/ultimate/underscore/underscore.js +1204 -0
  24. data/app/assets/javascripts/ultimate/underscore/underscore.outcasts.js.coffee +158 -0
  25. data/app/assets/javascripts/ultimate/underscore/underscore.string.js +600 -0
  26. data/config/routes.rb +2 -0
  27. data/lib/ultimate/helpers/engine.rb +7 -0
  28. data/lib/ultimate/helpers/version.rb +5 -0
  29. data/lib/ultimate/helpers.rb +8 -0
  30. data/scripts/rails +8 -0
  31. data/test/dummy/Rakefile +7 -0
  32. data/test/dummy/_emfile +18 -0
  33. data/test/dummy/app/assets/images/.gitkeep +0 -0
  34. data/test/dummy/app/assets/javascripts/application.js +3 -0
  35. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  36. data/test/dummy/app/assets/stylesheets/global/forms.css.scss +65 -0
  37. data/test/dummy/app/assets/stylesheets/global/layout/footer.scss +18 -0
  38. data/test/dummy/app/assets/stylesheets/global/layout/header.scss +13 -0
  39. data/test/dummy/app/assets/stylesheets/global/layout/main-menu.scss +68 -0
  40. data/test/dummy/app/assets/stylesheets/global/layout.css.scss +46 -0
  41. data/test/dummy/app/assets/stylesheets/global/reserved.css.scss +79 -0
  42. data/test/dummy/app/assets/stylesheets/global/reset.css.scss +85 -0
  43. data/test/dummy/app/assets/stylesheets/global/structures.css.scss +9 -0
  44. data/test/dummy/app/assets/stylesheets/import/base.scss +36 -0
  45. data/test/dummy/app/assets/stylesheets/plugins/qunit.css.scss +3 -0
  46. data/test/dummy/app/controllers/application_controller.rb +4 -0
  47. data/test/dummy/app/controllers/main_controller.rb +8 -0
  48. data/test/dummy/app/helpers/application_helper.rb +2 -0
  49. data/test/dummy/app/mailers/.gitkeep +0 -0
  50. data/test/dummy/app/models/.gitkeep +0 -0
  51. data/test/dummy/app/views/application/_footer.html.haml +3 -0
  52. data/test/dummy/app/views/application/_header.html.haml +4 -0
  53. data/test/dummy/app/views/application/_main_menu.html.haml +11 -0
  54. data/test/dummy/app/views/layouts/application.html.haml +24 -0
  55. data/test/dummy/app/views/main/index.html.haml +13 -0
  56. data/test/dummy/app/views/main/qunit.html.haml +7 -0
  57. data/test/dummy/config/application.rb +58 -0
  58. data/test/dummy/config/boot.rb +10 -0
  59. data/test/dummy/config/database.yml +25 -0
  60. data/test/dummy/config/environment.rb +5 -0
  61. data/test/dummy/config/environments/development.rb +40 -0
  62. data/test/dummy/config/environments/production.rb +67 -0
  63. data/test/dummy/config/environments/test.rb +37 -0
  64. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  65. data/test/dummy/config/initializers/inflections.rb +15 -0
  66. data/test/dummy/config/initializers/mime_types.rb +5 -0
  67. data/test/dummy/config/initializers/qunit-rails.rb +1 -0
  68. data/test/dummy/config/initializers/secret_token.rb +7 -0
  69. data/test/dummy/config/initializers/session_store.rb +8 -0
  70. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  71. data/test/dummy/config/locales/en.yml +5 -0
  72. data/test/dummy/config/routes.rb +63 -0
  73. data/test/dummy/config.ru +4 -0
  74. data/test/dummy/log/.gitkeep +0 -0
  75. data/test/dummy/public/404.html +26 -0
  76. data/test/dummy/public/422.html +26 -0
  77. data/test/dummy/public/500.html +25 -0
  78. data/test/dummy/public/favicon.ico +0 -0
  79. data/test/dummy/script/rails +6 -0
  80. data/test/javascripts/all_tests.js.coffee +12 -0
  81. data/test/javascripts/test_helper.js.coffee +3 -0
  82. data/test/javascripts/tests/helpers/asset_tag_test.js.coffee +51 -0
  83. data/test/javascripts/tests/helpers/form_options_test.js.coffee +170 -0
  84. data/test/javascripts/tests/helpers/form_tag_test.js.coffee +226 -0
  85. data/test/javascripts/tests/helpers/javascript_test.js.coffee +25 -0
  86. data/test/javascripts/tests/helpers/number_test.js.coffee +250 -0
  87. data/test/javascripts/tests/helpers/record_tag_test.js.coffee +60 -0
  88. data/test/javascripts/tests/helpers/tag_test.js.coffee +58 -0
  89. data/test/javascripts/tests/helpers/url_test.js.coffee +76 -0
  90. data/test/javascripts/tests/underscore/underscore.outcasts.test.js.coffee +47 -0
  91. data/test/javascripts/vendors/backbone.js +1533 -0
  92. data/test/javascripts/vendors/i18n-lite.js.coffee +20 -0
  93. data/test/stylesheets/test_helper.css +4 -0
  94. data/test/stylesheets/vendors/ultimate/mixins/_routines.scss +120 -0
  95. data/test/stylesheets/vendors/ultimate/mixins/_vendors.scss +44 -0
  96. data/test/stylesheets/vendors/ultimate/mixins/css3/_text-shadow.scss +40 -0
  97. data/test/stylesheets/vendors/ultimate/mixins/css3.scss +350 -0
  98. data/test/stylesheets/vendors/ultimate/mixins/fonts.scss +100 -0
  99. data/test/stylesheets/vendors/ultimate/mixins/microstructures.scss +239 -0
  100. data/ultimate-helpers.gemspec +25 -0
  101. metadata +193 -0
@@ -0,0 +1,239 @@
1
+ @import 'vendors/ultimate/mixins/routines';
2
+
3
+ $support-ie: true !default;
4
+
5
+ // example:
6
+ // @include complex-padding(10px 20px none);
7
+ // same:
8
+ // padding: {
9
+ // top: 10px;
10
+ // right: 20px;
11
+ // left: 20px;
12
+ // }
13
+ // produce:
14
+ // padding-top: 10px;
15
+ // padding-right: 20px;
16
+ // padding-left: 20px;
17
+ @mixin complex-padding($params) {
18
+ $params: complex-list($params);
19
+ @include complex-property(padding, $params);
20
+ }
21
+
22
+ // Provide complex box metrics.
23
+ // example:
24
+ // @include box(400px, none, 10px 20px none, 0 auto);
25
+ // produce:
26
+ // padding-top: 10px;
27
+ // padding-right: 20px;
28
+ // padding-left: 20px;
29
+ // margin: 0 auto;
30
+ // width: 360px;
31
+ @mixin box($width,
32
+ $height : false,
33
+ $padding : false,
34
+ $margin : false,
35
+ $border : false,
36
+ $include-padding : true,
37
+ $include-margin : false,
38
+ $include-border : true) {
39
+ @if length($width) == 2 {
40
+ $height: nth($width, 2);
41
+ $width: nth($width, 1);
42
+ }
43
+ $properties: $padding $margin nth($border, 1);
44
+ $include-properties: $include-padding $include-margin $include-border;
45
+ $i: 0;
46
+ @each $property-name in padding, margin, border-width {
47
+ $i: $i + 1;
48
+ $property: nth($properties, $i);
49
+ @if $property {
50
+ $complex: false;
51
+ @if nth($include-properties, $i) and $property {
52
+ $complex: complex-list($property);
53
+ @if isset($width) {
54
+ $width: $width - nth($complex, 2) - nth($complex, 4);
55
+ }
56
+ @if isset($height) {
57
+ $height: $height - nth($complex, 1) - nth($complex, 3);
58
+ }
59
+ }
60
+ @if $property-name == border-width and length($property) == 1 {
61
+ border: $border;
62
+ } @else {
63
+ @include complex-property($property-name, $property, $complex);
64
+ @if $property-name == border-width {
65
+ border-style: nth($border, 2);
66
+ border-color: nth($border, 3);
67
+ }
68
+ }
69
+ }
70
+ }
71
+ @if isset($width) {
72
+ width: $width;
73
+ }
74
+ @if isset($height) {
75
+ height: $height;
76
+ }
77
+ }
78
+
79
+ @mixin position($top: false, $right: false, $bottom: false, $left: false, $position: absolute) {
80
+ @if length($top) == 4 {
81
+ $left : nth($top, 4);
82
+ $bottom : nth($top, 3);
83
+ $right : nth($top, 2);
84
+ $top : nth($top, 1);
85
+ }
86
+ @if isset($position) { position: $position; }
87
+ @if isset($top) { top: $top; }
88
+ @if isset($right) { right: $right; }
89
+ @if isset($bottom) { bottom: $bottom; }
90
+ @if isset($left) { left: $left; }
91
+ }
92
+
93
+ @mixin before($display: block, $content: '') {
94
+ &:before {
95
+ display: $display;
96
+ content: $content;
97
+ @content;
98
+ }
99
+ }
100
+
101
+ @mixin after($display: block, $content: '') {
102
+ &:after {
103
+ display: $display;
104
+ content: $content;
105
+ @content;
106
+ }
107
+ }
108
+
109
+ @mixin both($display: block, $content: '') {
110
+ &:before, &:after {
111
+ display: $display;
112
+ content: $content;
113
+ @content;
114
+ }
115
+ }
116
+
117
+ // Set to container includes float blocks.
118
+ @mixin g-line($clear: both) {
119
+ @include deprecate("@include g-line;", "overflow: hidden;");
120
+ @if $support-ie {
121
+ *zoom: 1;
122
+ _height: 0;
123
+ }
124
+ @include clearfix($clear);
125
+ }
126
+
127
+ // Adapted from: [A new micro clearfix hack](http://nicolasgallagher.com/micro-clearfix-hack/)
128
+ @mixin clearfix($clear: both) {
129
+ @include both(table) {
130
+ clear: $clear;
131
+ }
132
+ }
133
+
134
+ // Set to element which disappear after animation in IE6-7.
135
+ @mixin fix-disapp {
136
+ @include deprecate("@include fix-disapp;");
137
+ *overflow: hidden;
138
+ _zoom: 1;
139
+ }
140
+
141
+ // Provides a cross-browser method to implement `display: inline-block;`
142
+ // example:
143
+ // @include inline-block(80px, 20px);
144
+ // produce:
145
+ // display: inline-block;
146
+ // *display: inline;
147
+ // *zoom: 1;
148
+ // width: 80px;
149
+ // height: 20px;
150
+ // vertical-align: middle;
151
+ @mixin inline-block($width: false, $height: false, $vertical-align: middle) {
152
+ display: inline-block;
153
+ @if $support-ie {
154
+ *display: inline;
155
+ *zoom: 1;
156
+ }
157
+ @if $width != none and $width != false {
158
+ width: $width;
159
+ }
160
+ @if $height != none and $height != false {
161
+ height: $height;
162
+ }
163
+ @if $vertical-align != none and $vertical-align != false {
164
+ vertical-align: $vertical-align;
165
+ }
166
+ }
167
+
168
+ @mixin g-justify($item: unquote(".item")) {
169
+ text-align: justify;
170
+ @if $support-ie {
171
+ text-justify: newspaper;
172
+ text-align-last: justify;
173
+ }
174
+ font-size: 2px;
175
+ line-height: 0;
176
+ > #{$item}, &:after {
177
+ @include inline-block;
178
+ text-align: left;
179
+ }
180
+ &:after {
181
+ content: "";
182
+ height: 0;
183
+ width: 99%;
184
+ }
185
+ }
186
+
187
+ @mixin inline-block-list($item: "li") {
188
+ position: relative;
189
+ list-style: none;
190
+ margin: 0;
191
+ padding: 0;
192
+ #{$item} {
193
+ @include inline-block;
194
+ }
195
+ }
196
+
197
+ @mixin block-list($item: "li") {
198
+ overflow: hidden; // @include g-line;
199
+ position: relative;
200
+ list-style: none;
201
+ margin: 0;
202
+ padding: 0;
203
+ #{$item} {
204
+ display: block;
205
+ position: relative;
206
+ float: left;
207
+ }
208
+ }
209
+
210
+ @mixin simple-block-list($item: "li") {
211
+ position: relative;
212
+ list-style: none;
213
+ margin: 0;
214
+ padding: 0;
215
+ #{$item} {
216
+ display: block;
217
+ position: relative;
218
+ }
219
+ }
220
+
221
+ @mixin sticky-footer($layout-padding-bottom, $footer-selector: ".l-page__footer", $layout-selector: ".l-page") {
222
+ html {
223
+ height: 100%;
224
+ }
225
+ body {
226
+ position: relative;
227
+ min-height: 100%;
228
+ }
229
+ #{$layout-selector} {
230
+ position: static;
231
+ padding-bottom: $layout-padding-bottom;
232
+ #{$footer-selector} {
233
+ position: absolute;
234
+ bottom: 0;
235
+ left: 0;
236
+ width: 100%;
237
+ }
238
+ }
239
+ }
@@ -0,0 +1,25 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path('../lib', __FILE__)
3
+ require 'ultimate/helpers/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'ultimate-helpers'
7
+ s.version = Ultimate::Helpers::VERSION
8
+ s.authors = ['Dmitry KODer Karpunin']
9
+ s.email = ['koderfunk@gmail.com']
10
+ s.homepage = 'http://github.com/KODerFunk/ultimate-helpers'
11
+ s.summary = %q{Ultimate Helpers, Rails ActionView helpers ported to CoffeeScript}
12
+ s.description = %q{Ultimate Helpers, Rails ActionView helpers ported to CoffeeScript}
13
+
14
+ s.rubyforge_project = 'ultimate-helpers'
15
+
16
+ s.add_development_dependency 'rails', '~> 3.2.8'
17
+ s.add_development_dependency 'sqlite3'
18
+ s.add_development_dependency 'coffee-rails', '~> 3.2.1'
19
+
20
+ s.files = `git ls-files`.split("\n")
21
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
22
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
23
+ s.require_paths = ['lib']
24
+
25
+ end
metadata ADDED
@@ -0,0 +1,193 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ultimate-helpers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Dmitry KODer Karpunin
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-12-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.2.8
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.8
30
+ - !ruby/object:Gem::Dependency
31
+ name: sqlite3
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ - !ruby/object:Gem::Dependency
47
+ name: coffee-rails
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 3.2.1
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 3.2.1
62
+ description: Ultimate Helpers, Rails ActionView helpers ported to CoffeeScript
63
+ email:
64
+ - koderfunk@gmail.com
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - .gitignore
70
+ - .rvmrc
71
+ - .rvmrc.example
72
+ - Gemfile
73
+ - Gemfile.lock
74
+ - LICENSE
75
+ - README.md
76
+ - Rakefile
77
+ - app/assets/javascripts/ultimate/base.js.coffee
78
+ - app/assets/javascripts/ultimate/helpers.js.coffee
79
+ - app/assets/javascripts/ultimate/helpers/asset_tag.js.coffee
80
+ - app/assets/javascripts/ultimate/helpers/base.js.coffee
81
+ - app/assets/javascripts/ultimate/helpers/decor.js.coffee
82
+ - app/assets/javascripts/ultimate/helpers/form_options.js.coffee
83
+ - app/assets/javascripts/ultimate/helpers/form_tag.js.coffee
84
+ - app/assets/javascripts/ultimate/helpers/javascript.js.coffee
85
+ - app/assets/javascripts/ultimate/helpers/number.js.coffee
86
+ - app/assets/javascripts/ultimate/helpers/record_tag.js.coffee
87
+ - app/assets/javascripts/ultimate/helpers/tag.js.coffee
88
+ - app/assets/javascripts/ultimate/helpers/url.js.coffee
89
+ - app/assets/javascripts/ultimate/jquery.base.js.coffee
90
+ - app/assets/javascripts/ultimate/underscore/underscore.inflection.js
91
+ - app/assets/javascripts/ultimate/underscore/underscore.js
92
+ - app/assets/javascripts/ultimate/underscore/underscore.outcasts.js.coffee
93
+ - app/assets/javascripts/ultimate/underscore/underscore.string.js
94
+ - config/routes.rb
95
+ - lib/ultimate/helpers.rb
96
+ - lib/ultimate/helpers/engine.rb
97
+ - lib/ultimate/helpers/version.rb
98
+ - scripts/rails
99
+ - test/dummy/Rakefile
100
+ - test/dummy/_emfile
101
+ - test/dummy/app/assets/images/.gitkeep
102
+ - test/dummy/app/assets/javascripts/application.js
103
+ - test/dummy/app/assets/stylesheets/application.css
104
+ - test/dummy/app/assets/stylesheets/global/forms.css.scss
105
+ - test/dummy/app/assets/stylesheets/global/layout.css.scss
106
+ - test/dummy/app/assets/stylesheets/global/layout/footer.scss
107
+ - test/dummy/app/assets/stylesheets/global/layout/header.scss
108
+ - test/dummy/app/assets/stylesheets/global/layout/main-menu.scss
109
+ - test/dummy/app/assets/stylesheets/global/reserved.css.scss
110
+ - test/dummy/app/assets/stylesheets/global/reset.css.scss
111
+ - test/dummy/app/assets/stylesheets/global/structures.css.scss
112
+ - test/dummy/app/assets/stylesheets/import/base.scss
113
+ - test/dummy/app/assets/stylesheets/plugins/qunit.css.scss
114
+ - test/dummy/app/controllers/application_controller.rb
115
+ - test/dummy/app/controllers/main_controller.rb
116
+ - test/dummy/app/helpers/application_helper.rb
117
+ - test/dummy/app/mailers/.gitkeep
118
+ - test/dummy/app/models/.gitkeep
119
+ - test/dummy/app/views/application/_footer.html.haml
120
+ - test/dummy/app/views/application/_header.html.haml
121
+ - test/dummy/app/views/application/_main_menu.html.haml
122
+ - test/dummy/app/views/layouts/application.html.haml
123
+ - test/dummy/app/views/main/index.html.haml
124
+ - test/dummy/app/views/main/qunit.html.haml
125
+ - test/dummy/config.ru
126
+ - test/dummy/config/application.rb
127
+ - test/dummy/config/boot.rb
128
+ - test/dummy/config/database.yml
129
+ - test/dummy/config/environment.rb
130
+ - test/dummy/config/environments/development.rb
131
+ - test/dummy/config/environments/production.rb
132
+ - test/dummy/config/environments/test.rb
133
+ - test/dummy/config/initializers/backtrace_silencers.rb
134
+ - test/dummy/config/initializers/inflections.rb
135
+ - test/dummy/config/initializers/mime_types.rb
136
+ - test/dummy/config/initializers/qunit-rails.rb
137
+ - test/dummy/config/initializers/secret_token.rb
138
+ - test/dummy/config/initializers/session_store.rb
139
+ - test/dummy/config/initializers/wrap_parameters.rb
140
+ - test/dummy/config/locales/en.yml
141
+ - test/dummy/config/routes.rb
142
+ - test/dummy/log/.gitkeep
143
+ - test/dummy/public/404.html
144
+ - test/dummy/public/422.html
145
+ - test/dummy/public/500.html
146
+ - test/dummy/public/favicon.ico
147
+ - test/dummy/script/rails
148
+ - test/javascripts/all_tests.js.coffee
149
+ - test/javascripts/test_helper.js.coffee
150
+ - test/javascripts/tests/helpers/asset_tag_test.js.coffee
151
+ - test/javascripts/tests/helpers/form_options_test.js.coffee
152
+ - test/javascripts/tests/helpers/form_tag_test.js.coffee
153
+ - test/javascripts/tests/helpers/javascript_test.js.coffee
154
+ - test/javascripts/tests/helpers/number_test.js.coffee
155
+ - test/javascripts/tests/helpers/record_tag_test.js.coffee
156
+ - test/javascripts/tests/helpers/tag_test.js.coffee
157
+ - test/javascripts/tests/helpers/url_test.js.coffee
158
+ - test/javascripts/tests/underscore/underscore.outcasts.test.js.coffee
159
+ - test/javascripts/vendors/backbone.js
160
+ - test/javascripts/vendors/i18n-lite.js.coffee
161
+ - test/stylesheets/test_helper.css
162
+ - test/stylesheets/vendors/ultimate/mixins/_routines.scss
163
+ - test/stylesheets/vendors/ultimate/mixins/_vendors.scss
164
+ - test/stylesheets/vendors/ultimate/mixins/css3.scss
165
+ - test/stylesheets/vendors/ultimate/mixins/css3/_text-shadow.scss
166
+ - test/stylesheets/vendors/ultimate/mixins/fonts.scss
167
+ - test/stylesheets/vendors/ultimate/mixins/microstructures.scss
168
+ - ultimate-helpers.gemspec
169
+ homepage: http://github.com/KODerFunk/ultimate-helpers
170
+ licenses: []
171
+ post_install_message:
172
+ rdoc_options: []
173
+ require_paths:
174
+ - lib
175
+ required_ruby_version: !ruby/object:Gem::Requirement
176
+ none: false
177
+ requirements:
178
+ - - ! '>='
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ required_rubygems_version: !ruby/object:Gem::Requirement
182
+ none: false
183
+ requirements:
184
+ - - ! '>='
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
187
+ requirements: []
188
+ rubyforge_project: ultimate-helpers
189
+ rubygems_version: 1.8.24
190
+ signing_key:
191
+ specification_version: 3
192
+ summary: Ultimate Helpers, Rails ActionView helpers ported to CoffeeScript
193
+ test_files: []