hullapp 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/.DS_Store +0 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +66 -0
  6. data/Rakefile +1 -0
  7. data/bin/hull +15 -0
  8. data/hullapp.gemspec +27 -0
  9. data/lib/hull.rb +6 -0
  10. data/lib/hull/cli.rb +124 -0
  11. data/lib/hull/version.rb +3 -0
  12. data/templates/.DS_Store +0 -0
  13. data/templates/hullenv.tt +4 -0
  14. data/templates/ruby/.gitignore +7 -0
  15. data/templates/ruby/.powenv +8 -0
  16. data/templates/ruby/.powrc +5 -0
  17. data/templates/ruby/.rvmrc.tt +1 -0
  18. data/templates/ruby/Gemfile +50 -0
  19. data/templates/ruby/Guardfile +8 -0
  20. data/templates/ruby/Procfile +4 -0
  21. data/templates/ruby/README.md +198 -0
  22. data/templates/ruby/Rakefile +40 -0
  23. data/templates/ruby/application/assets.rb +7 -0
  24. data/templates/ruby/application/assets/images/icons/facebook.png +0 -0
  25. data/templates/ruby/application/assets/images/icons/twitter.png +0 -0
  26. data/templates/ruby/application/assets/images/socialmedia/app-store.png +0 -0
  27. data/templates/ruby/application/assets/images/socialmedia/dribbble.png +0 -0
  28. data/templates/ruby/application/assets/images/socialmedia/facebook.png +0 -0
  29. data/templates/ruby/application/assets/images/socialmedia/flickr.png +0 -0
  30. data/templates/ruby/application/assets/images/socialmedia/forrst.png +0 -0
  31. data/templates/ruby/application/assets/images/socialmedia/foursquare.png +0 -0
  32. data/templates/ruby/application/assets/images/socialmedia/github.png +0 -0
  33. data/templates/ruby/application/assets/images/socialmedia/google-plus.png +0 -0
  34. data/templates/ruby/application/assets/images/socialmedia/google.png +0 -0
  35. data/templates/ruby/application/assets/images/socialmedia/instagram.png +0 -0
  36. data/templates/ruby/application/assets/images/socialmedia/linkedin.png +0 -0
  37. data/templates/ruby/application/assets/images/socialmedia/skype.png +0 -0
  38. data/templates/ruby/application/assets/images/socialmedia/social-email.png +0 -0
  39. data/templates/ruby/application/assets/images/socialmedia/social-rss.png +0 -0
  40. data/templates/ruby/application/assets/images/socialmedia/spotify.png +0 -0
  41. data/templates/ruby/application/assets/images/socialmedia/tumblr.png +0 -0
  42. data/templates/ruby/application/assets/images/socialmedia/twitter-2.png +0 -0
  43. data/templates/ruby/application/assets/images/socialmedia/twitter.png +0 -0
  44. data/templates/ruby/application/assets/images/socialmedia/vimeo.png +0 -0
  45. data/templates/ruby/application/assets/images/socialmedia/youtube.png +0 -0
  46. data/templates/ruby/application/assets/javascripts/app.js +11 -0
  47. data/templates/ruby/application/assets/javascripts/main.coffee +17 -0
  48. data/templates/ruby/application/assets/javascripts/template.js.erb +1 -0
  49. data/templates/ruby/application/assets/stylesheets/partials/_base.scss +17 -0
  50. data/templates/ruby/application/assets/stylesheets/partials/_boilerplate.scss +291 -0
  51. data/templates/ruby/application/assets/stylesheets/partials/_colors.scss +0 -0
  52. data/templates/ruby/application/assets/stylesheets/partials/_fonts.scss +1 -0
  53. data/templates/ruby/application/assets/stylesheets/partials/_h5bp.scss +298 -0
  54. data/templates/ruby/application/assets/stylesheets/partials/_layout.scss +12 -0
  55. data/templates/ruby/application/assets/stylesheets/partials/_normalize.scss +504 -0
  56. data/templates/ruby/application/assets/stylesheets/partials/_variables.scss +28 -0
  57. data/templates/ruby/application/assets/stylesheets/style.scss +16 -0
  58. data/templates/ruby/application/assets/templates/hello.hbs +1 -0
  59. data/templates/ruby/application/compass.rb +27 -0
  60. data/templates/ruby/application/core.rb +15 -0
  61. data/templates/ruby/application/core_extensions/blank.rb +111 -0
  62. data/templates/ruby/application/core_extensions/hash.rb +34 -0
  63. data/templates/ruby/application/core_extensions/sprockets.rb +74 -0
  64. data/templates/ruby/application/core_extensions/try.rb +57 -0
  65. data/templates/ruby/application/helpers.rb +121 -0
  66. data/templates/ruby/application/helpers/form_tag_helpers.rb +127 -0
  67. data/templates/ruby/application/helpers/notification_helpers.rb +20 -0
  68. data/templates/ruby/application/helpers/run_later.rb +111 -0
  69. data/templates/ruby/application/settings.rb +8 -0
  70. data/templates/ruby/application/views/demo.erb +27 -0
  71. data/templates/ruby/application/views/index.erb +9 -0
  72. data/templates/ruby/application/views/layout.erb +45 -0
  73. data/templates/ruby/application/workers.rb +0 -0
  74. data/templates/ruby/config.ru +84 -0
  75. data/templates/ruby/config/settings.yml +53 -0
  76. data/templates/ruby/config/sidekiq.yml +11 -0
  77. data/templates/ruby/config/unicorn.rb +91 -0
  78. data/templates/ruby/public/.htaccess +538 -0
  79. data/templates/ruby/public/404.html +157 -0
  80. data/templates/ruby/public/apple-touch-icon-114x114-precomposed.png +0 -0
  81. data/templates/ruby/public/apple-touch-icon-144x144-precomposed.png +0 -0
  82. data/templates/ruby/public/apple-touch-icon-57x57-precomposed.png +0 -0
  83. data/templates/ruby/public/apple-touch-icon-72x72-precomposed.png +0 -0
  84. data/templates/ruby/public/apple-touch-icon-precomposed.png +0 -0
  85. data/templates/ruby/public/apple-touch-icon.png +0 -0
  86. data/templates/ruby/public/crossdomain.xml +15 -0
  87. data/templates/ruby/public/favicon.ico +0 -0
  88. data/templates/ruby/public/humans.txt +15 -0
  89. data/templates/ruby/public/robots.txt +5 -0
  90. data/templates/ruby/vendor/assets/images/glyphicons-halflings-white.png +0 -0
  91. data/templates/ruby/vendor/assets/images/glyphicons-halflings.png +0 -0
  92. data/templates/ruby/vendor/assets/javascripts/backbone.js +1431 -0
  93. data/templates/ruby/vendor/assets/javascripts/bootstrap.js +2027 -0
  94. data/templates/ruby/vendor/assets/javascripts/index.js +0 -0
  95. data/templates/ruby/vendor/assets/javascripts/jquery.js +9227 -0
  96. data/templates/ruby/vendor/assets/javascripts/modernizr.js +11 -0
  97. data/templates/ruby/vendor/assets/javascripts/underscore.js +1059 -0
  98. data/templates/ruby/vendor/assets/javascripts/vendor.js +2 -0
  99. data/templates/ruby/vendor/assets/stylesheets/bootstrap-responsive.css +1040 -0
  100. data/templates/ruby/vendor/assets/stylesheets/bootstrap.css +5624 -0
  101. data/templates/ruby/vendor/assets/stylesheets/vendor.scss +2 -0
  102. metadata +243 -0
@@ -0,0 +1,2 @@
1
+ @import "bootstrap";
2
+ // @import "bootstrap-responsive";
metadata ADDED
@@ -0,0 +1,243 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hullapp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Romain Dardour
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-09-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: thor
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.16.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.16.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: rack
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 1.4.1
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 1.4.1
46
+ - !ruby/object:Gem::Dependency
47
+ name: artii
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ - !ruby/object:Gem::Dependency
63
+ name: foreman
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ - !ruby/object:Gem::Dependency
79
+ name: unicorn
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ type: :runtime
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ - !ruby/object:Gem::Dependency
95
+ name: listen
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :runtime
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ description: A command line tool to easily scaffold hull projects
111
+ email:
112
+ - romain@hull.io
113
+ executables:
114
+ - hull
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - .DS_Store
119
+ - .gitignore
120
+ - Gemfile
121
+ - LICENSE.txt
122
+ - README.md
123
+ - Rakefile
124
+ - bin/hull
125
+ - hullapp.gemspec
126
+ - lib/hull.rb
127
+ - lib/hull/cli.rb
128
+ - lib/hull/version.rb
129
+ - templates/.DS_Store
130
+ - templates/hullenv.tt
131
+ - templates/ruby/.gitignore
132
+ - templates/ruby/.powenv
133
+ - templates/ruby/.powrc
134
+ - templates/ruby/.rvmrc.tt
135
+ - templates/ruby/Gemfile
136
+ - templates/ruby/Guardfile
137
+ - templates/ruby/Procfile
138
+ - templates/ruby/README.md
139
+ - templates/ruby/Rakefile
140
+ - templates/ruby/application/assets.rb
141
+ - templates/ruby/application/assets/images/icons/facebook.png
142
+ - templates/ruby/application/assets/images/icons/twitter.png
143
+ - templates/ruby/application/assets/images/socialmedia/app-store.png
144
+ - templates/ruby/application/assets/images/socialmedia/dribbble.png
145
+ - templates/ruby/application/assets/images/socialmedia/facebook.png
146
+ - templates/ruby/application/assets/images/socialmedia/flickr.png
147
+ - templates/ruby/application/assets/images/socialmedia/forrst.png
148
+ - templates/ruby/application/assets/images/socialmedia/foursquare.png
149
+ - templates/ruby/application/assets/images/socialmedia/github.png
150
+ - templates/ruby/application/assets/images/socialmedia/google-plus.png
151
+ - templates/ruby/application/assets/images/socialmedia/google.png
152
+ - templates/ruby/application/assets/images/socialmedia/instagram.png
153
+ - templates/ruby/application/assets/images/socialmedia/linkedin.png
154
+ - templates/ruby/application/assets/images/socialmedia/skype.png
155
+ - templates/ruby/application/assets/images/socialmedia/social-email.png
156
+ - templates/ruby/application/assets/images/socialmedia/social-rss.png
157
+ - templates/ruby/application/assets/images/socialmedia/spotify.png
158
+ - templates/ruby/application/assets/images/socialmedia/tumblr.png
159
+ - templates/ruby/application/assets/images/socialmedia/twitter-2.png
160
+ - templates/ruby/application/assets/images/socialmedia/twitter.png
161
+ - templates/ruby/application/assets/images/socialmedia/vimeo.png
162
+ - templates/ruby/application/assets/images/socialmedia/youtube.png
163
+ - templates/ruby/application/assets/javascripts/app.js
164
+ - templates/ruby/application/assets/javascripts/main.coffee
165
+ - templates/ruby/application/assets/javascripts/template.js.erb
166
+ - templates/ruby/application/assets/stylesheets/partials/_base.scss
167
+ - templates/ruby/application/assets/stylesheets/partials/_boilerplate.scss
168
+ - templates/ruby/application/assets/stylesheets/partials/_colors.scss
169
+ - templates/ruby/application/assets/stylesheets/partials/_fonts.scss
170
+ - templates/ruby/application/assets/stylesheets/partials/_h5bp.scss
171
+ - templates/ruby/application/assets/stylesheets/partials/_layout.scss
172
+ - templates/ruby/application/assets/stylesheets/partials/_normalize.scss
173
+ - templates/ruby/application/assets/stylesheets/partials/_variables.scss
174
+ - templates/ruby/application/assets/stylesheets/style.scss
175
+ - templates/ruby/application/assets/templates/hello.hbs
176
+ - templates/ruby/application/compass.rb
177
+ - templates/ruby/application/core.rb
178
+ - templates/ruby/application/core_extensions/blank.rb
179
+ - templates/ruby/application/core_extensions/hash.rb
180
+ - templates/ruby/application/core_extensions/sprockets.rb
181
+ - templates/ruby/application/core_extensions/try.rb
182
+ - templates/ruby/application/helpers.rb
183
+ - templates/ruby/application/helpers/form_tag_helpers.rb
184
+ - templates/ruby/application/helpers/notification_helpers.rb
185
+ - templates/ruby/application/helpers/run_later.rb
186
+ - templates/ruby/application/settings.rb
187
+ - templates/ruby/application/views/demo.erb
188
+ - templates/ruby/application/views/index.erb
189
+ - templates/ruby/application/views/layout.erb
190
+ - templates/ruby/application/workers.rb
191
+ - templates/ruby/config.ru
192
+ - templates/ruby/config/settings.yml
193
+ - templates/ruby/config/sidekiq.yml
194
+ - templates/ruby/config/unicorn.rb
195
+ - templates/ruby/public/.htaccess
196
+ - templates/ruby/public/404.html
197
+ - templates/ruby/public/apple-touch-icon-114x114-precomposed.png
198
+ - templates/ruby/public/apple-touch-icon-144x144-precomposed.png
199
+ - templates/ruby/public/apple-touch-icon-57x57-precomposed.png
200
+ - templates/ruby/public/apple-touch-icon-72x72-precomposed.png
201
+ - templates/ruby/public/apple-touch-icon-precomposed.png
202
+ - templates/ruby/public/apple-touch-icon.png
203
+ - templates/ruby/public/crossdomain.xml
204
+ - templates/ruby/public/favicon.ico
205
+ - templates/ruby/public/humans.txt
206
+ - templates/ruby/public/robots.txt
207
+ - templates/ruby/vendor/assets/images/glyphicons-halflings-white.png
208
+ - templates/ruby/vendor/assets/images/glyphicons-halflings.png
209
+ - templates/ruby/vendor/assets/javascripts/backbone.js
210
+ - templates/ruby/vendor/assets/javascripts/bootstrap.js
211
+ - templates/ruby/vendor/assets/javascripts/index.js
212
+ - templates/ruby/vendor/assets/javascripts/jquery.js
213
+ - templates/ruby/vendor/assets/javascripts/modernizr.js
214
+ - templates/ruby/vendor/assets/javascripts/underscore.js
215
+ - templates/ruby/vendor/assets/javascripts/vendor.js
216
+ - templates/ruby/vendor/assets/stylesheets/bootstrap-responsive.css
217
+ - templates/ruby/vendor/assets/stylesheets/bootstrap.css
218
+ - templates/ruby/vendor/assets/stylesheets/vendor.scss
219
+ homepage: http://hull.io
220
+ licenses: []
221
+ post_install_message:
222
+ rdoc_options: []
223
+ require_paths:
224
+ - lib
225
+ required_ruby_version: !ruby/object:Gem::Requirement
226
+ none: false
227
+ requirements:
228
+ - - ! '>='
229
+ - !ruby/object:Gem::Version
230
+ version: '0'
231
+ required_rubygems_version: !ruby/object:Gem::Requirement
232
+ none: false
233
+ requirements:
234
+ - - ! '>='
235
+ - !ruby/object:Gem::Version
236
+ version: '0'
237
+ requirements: []
238
+ rubyforge_project:
239
+ rubygems_version: 1.8.24
240
+ signing_key:
241
+ specification_version: 3
242
+ summary: a new way to build social applications
243
+ test_files: []