mechio-brand 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +35 -0
  4. data/app/assets/fonts/futura-bt/FUTURABI.eot +0 -0
  5. data/app/assets/fonts/futura-bt/FUTURABI.otf +0 -0
  6. data/app/assets/fonts/futura-bt/FUTURABI.svg +1513 -0
  7. data/app/assets/fonts/futura-bt/FUTURABI.ttf +0 -0
  8. data/app/assets/fonts/futura-bt/FUTURABI.woff +0 -0
  9. data/app/views/mechio/brand/_logo.html.erb +20 -0
  10. data/lib/mechio-brand/engine.rb +3 -0
  11. data/lib/mechio-brand/version.rb +3 -0
  12. data/lib/mechio-brand.rb +5 -0
  13. data/lib/tasks/mechio-brand_tasks.rake +4 -0
  14. data/test/dummy/README.rdoc +261 -0
  15. data/test/dummy/Rakefile +7 -0
  16. data/test/dummy/app/assets/javascripts/application.js +15 -0
  17. data/test/dummy/app/assets/javascripts/home.js +2 -0
  18. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  19. data/test/dummy/app/assets/stylesheets/home.css +4 -0
  20. data/test/dummy/app/controllers/application_controller.rb +3 -0
  21. data/test/dummy/app/controllers/home_controller.rb +4 -0
  22. data/test/dummy/app/helpers/application_helper.rb +2 -0
  23. data/test/dummy/app/helpers/home_helper.rb +2 -0
  24. data/test/dummy/app/views/home/index.html.erb +4 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/config/application.rb +59 -0
  27. data/test/dummy/config/boot.rb +10 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +37 -0
  31. data/test/dummy/config/environments/production.rb +67 -0
  32. data/test/dummy/config/environments/test.rb +37 -0
  33. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/dummy/config/initializers/inflections.rb +15 -0
  35. data/test/dummy/config/initializers/mime_types.rb +5 -0
  36. data/test/dummy/config/initializers/secret_token.rb +7 -0
  37. data/test/dummy/config/initializers/session_store.rb +8 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/test/dummy/config/locales/en.yml +5 -0
  40. data/test/dummy/config/routes.rb +63 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/db/development.sqlite3 +0 -0
  43. data/test/dummy/log/development.log +778 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +25 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/dummy/server +4 -0
  50. data/test/dummy/test/functional/home_controller_test.rb +9 -0
  51. data/test/dummy/test/unit/helpers/home_helper_test.rb +4 -0
  52. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  53. data/test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e +0 -0
  54. data/test/dummy/tmp/cache/assets/CF8/E70/sprockets%2F9de39cc822e4c44839c82175a9d4f657 +0 -0
  55. data/test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683 +0 -0
  56. data/test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c +0 -0
  57. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  58. data/test/dummy/tmp/cache/assets/D3D/590/sprockets%2F8beba961f7f5912e070b7ae301f619f0 +0 -0
  59. data/test/dummy/tmp/cache/assets/D41/D70/sprockets%2F275ce2756d158ed5db4c8d40bdc72093 +0 -0
  60. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  61. data/test/dummy/tmp/cache/assets/D50/800/sprockets%2F8bd4ce61e99c4a78c802f995ebd30292 +0 -0
  62. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  63. data/test/dummy/tmp/cache/assets/D7F/A00/sprockets%2Fbb42f6e88d9c457f47db66a4e428fb41 +0 -0
  64. data/test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0 +0 -0
  65. data/test/dummy/tmp/cache/assets/DBC/FD0/sprockets%2Fc64b1a3b2b85d60de94cca29bd30c3b6 +0 -0
  66. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  67. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  68. data/test/dummy/tmp/pids/server.pid +1 -0
  69. data/test/mechio-brand_test.rb +7 -0
  70. data/test/test_helper.rb +15 -0
  71. metadata +211 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
data/test/dummy/server ADDED
@@ -0,0 +1,4 @@
1
+ Script started on Wed Nov 28 02:09:58 2012
2
+ script: --port=3001: No such file or directory
3
+
4
+ Script done on Wed Nov 28 02:09:58 2012
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class HomeControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class HomeHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1 @@
1
+ 42218
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class MechioBrandTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, MechioBrand
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,211 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mechio-brand
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Namit Chadha
9
+ - Barnaby Malet
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-11-28 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rails
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: 3.2.9
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ version: 3.2.9
31
+ - !ruby/object:Gem::Dependency
32
+ name: sqlite3
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ type: :development
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ description: ''
48
+ email:
49
+ - namit@mech.io
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - app/assets/fonts/futura-bt/FUTURABI.eot
55
+ - app/assets/fonts/futura-bt/FUTURABI.otf
56
+ - app/assets/fonts/futura-bt/FUTURABI.svg
57
+ - app/assets/fonts/futura-bt/FUTURABI.ttf
58
+ - app/assets/fonts/futura-bt/FUTURABI.woff
59
+ - app/views/mechio/brand/_logo.html.erb
60
+ - lib/mechio-brand/engine.rb
61
+ - lib/mechio-brand/version.rb
62
+ - lib/mechio-brand.rb
63
+ - lib/tasks/mechio-brand_tasks.rake
64
+ - MIT-LICENSE
65
+ - Rakefile
66
+ - README.rdoc
67
+ - test/dummy/app/assets/javascripts/application.js
68
+ - test/dummy/app/assets/javascripts/home.js
69
+ - test/dummy/app/assets/stylesheets/application.css
70
+ - test/dummy/app/assets/stylesheets/home.css
71
+ - test/dummy/app/controllers/application_controller.rb
72
+ - test/dummy/app/controllers/home_controller.rb
73
+ - test/dummy/app/helpers/application_helper.rb
74
+ - test/dummy/app/helpers/home_helper.rb
75
+ - test/dummy/app/views/home/index.html.erb
76
+ - test/dummy/app/views/layouts/application.html.erb
77
+ - test/dummy/config/application.rb
78
+ - test/dummy/config/boot.rb
79
+ - test/dummy/config/database.yml
80
+ - test/dummy/config/environment.rb
81
+ - test/dummy/config/environments/development.rb
82
+ - test/dummy/config/environments/production.rb
83
+ - test/dummy/config/environments/test.rb
84
+ - test/dummy/config/initializers/backtrace_silencers.rb
85
+ - test/dummy/config/initializers/inflections.rb
86
+ - test/dummy/config/initializers/mime_types.rb
87
+ - test/dummy/config/initializers/secret_token.rb
88
+ - test/dummy/config/initializers/session_store.rb
89
+ - test/dummy/config/initializers/wrap_parameters.rb
90
+ - test/dummy/config/locales/en.yml
91
+ - test/dummy/config/routes.rb
92
+ - test/dummy/config.ru
93
+ - test/dummy/db/development.sqlite3
94
+ - test/dummy/log/development.log
95
+ - test/dummy/public/404.html
96
+ - test/dummy/public/422.html
97
+ - test/dummy/public/500.html
98
+ - test/dummy/public/favicon.ico
99
+ - test/dummy/Rakefile
100
+ - test/dummy/README.rdoc
101
+ - test/dummy/script/rails
102
+ - test/dummy/server
103
+ - test/dummy/test/functional/home_controller_test.rb
104
+ - test/dummy/test/unit/helpers/home_helper_test.rb
105
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
106
+ - test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e
107
+ - test/dummy/tmp/cache/assets/CF8/E70/sprockets%2F9de39cc822e4c44839c82175a9d4f657
108
+ - test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683
109
+ - test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c
110
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
111
+ - test/dummy/tmp/cache/assets/D3D/590/sprockets%2F8beba961f7f5912e070b7ae301f619f0
112
+ - test/dummy/tmp/cache/assets/D41/D70/sprockets%2F275ce2756d158ed5db4c8d40bdc72093
113
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
114
+ - test/dummy/tmp/cache/assets/D50/800/sprockets%2F8bd4ce61e99c4a78c802f995ebd30292
115
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
116
+ - test/dummy/tmp/cache/assets/D7F/A00/sprockets%2Fbb42f6e88d9c457f47db66a4e428fb41
117
+ - test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0
118
+ - test/dummy/tmp/cache/assets/DBC/FD0/sprockets%2Fc64b1a3b2b85d60de94cca29bd30c3b6
119
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
120
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
121
+ - test/dummy/tmp/pids/server.pid
122
+ - test/mechio-brand_test.rb
123
+ - test/test_helper.rb
124
+ homepage: http://mech.io
125
+ licenses: []
126
+ post_install_message:
127
+ rdoc_options: []
128
+ require_paths:
129
+ - lib
130
+ required_ruby_version: !ruby/object:Gem::Requirement
131
+ none: false
132
+ requirements:
133
+ - - ! '>='
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ segments:
137
+ - 0
138
+ hash: -537806448931556715
139
+ required_rubygems_version: !ruby/object:Gem::Requirement
140
+ none: false
141
+ requirements:
142
+ - - ! '>='
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ segments:
146
+ - 0
147
+ hash: -537806448931556715
148
+ requirements: []
149
+ rubyforge_project:
150
+ rubygems_version: 1.8.23
151
+ signing_key:
152
+ specification_version: 3
153
+ summary: Branding and styles for mech.io projects
154
+ test_files:
155
+ - test/dummy/app/assets/javascripts/application.js
156
+ - test/dummy/app/assets/javascripts/home.js
157
+ - test/dummy/app/assets/stylesheets/application.css
158
+ - test/dummy/app/assets/stylesheets/home.css
159
+ - test/dummy/app/controllers/application_controller.rb
160
+ - test/dummy/app/controllers/home_controller.rb
161
+ - test/dummy/app/helpers/application_helper.rb
162
+ - test/dummy/app/helpers/home_helper.rb
163
+ - test/dummy/app/views/home/index.html.erb
164
+ - test/dummy/app/views/layouts/application.html.erb
165
+ - test/dummy/config/application.rb
166
+ - test/dummy/config/boot.rb
167
+ - test/dummy/config/database.yml
168
+ - test/dummy/config/environment.rb
169
+ - test/dummy/config/environments/development.rb
170
+ - test/dummy/config/environments/production.rb
171
+ - test/dummy/config/environments/test.rb
172
+ - test/dummy/config/initializers/backtrace_silencers.rb
173
+ - test/dummy/config/initializers/inflections.rb
174
+ - test/dummy/config/initializers/mime_types.rb
175
+ - test/dummy/config/initializers/secret_token.rb
176
+ - test/dummy/config/initializers/session_store.rb
177
+ - test/dummy/config/initializers/wrap_parameters.rb
178
+ - test/dummy/config/locales/en.yml
179
+ - test/dummy/config/routes.rb
180
+ - test/dummy/config.ru
181
+ - test/dummy/db/development.sqlite3
182
+ - test/dummy/log/development.log
183
+ - test/dummy/public/404.html
184
+ - test/dummy/public/422.html
185
+ - test/dummy/public/500.html
186
+ - test/dummy/public/favicon.ico
187
+ - test/dummy/Rakefile
188
+ - test/dummy/README.rdoc
189
+ - test/dummy/script/rails
190
+ - test/dummy/server
191
+ - test/dummy/test/functional/home_controller_test.rb
192
+ - test/dummy/test/unit/helpers/home_helper_test.rb
193
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
194
+ - test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e
195
+ - test/dummy/tmp/cache/assets/CF8/E70/sprockets%2F9de39cc822e4c44839c82175a9d4f657
196
+ - test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683
197
+ - test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c
198
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
199
+ - test/dummy/tmp/cache/assets/D3D/590/sprockets%2F8beba961f7f5912e070b7ae301f619f0
200
+ - test/dummy/tmp/cache/assets/D41/D70/sprockets%2F275ce2756d158ed5db4c8d40bdc72093
201
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
202
+ - test/dummy/tmp/cache/assets/D50/800/sprockets%2F8bd4ce61e99c4a78c802f995ebd30292
203
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
204
+ - test/dummy/tmp/cache/assets/D7F/A00/sprockets%2Fbb42f6e88d9c457f47db66a4e428fb41
205
+ - test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0
206
+ - test/dummy/tmp/cache/assets/DBC/FD0/sprockets%2Fc64b1a3b2b85d60de94cca29bd30c3b6
207
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
208
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
209
+ - test/dummy/tmp/pids/server.pid
210
+ - test/mechio-brand_test.rb
211
+ - test/test_helper.rb