sum 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Capfile +3 -0
- data/MIT-LICENSE +18 -0
- data/README.markdown +69 -0
- data/Rakefile +56 -0
- data/config.ru +3 -0
- data/config/database.example.yml +10 -0
- data/config/deploy.example.rb +36 -0
- data/config/externals.yml +18 -0
- data/config/mail.example.yml +32 -0
- data/config/schedule.rb +20 -0
- data/db/migrate/001_users.rb +22 -0
- data/db/migrate/002_user_emails.rb +15 -0
- data/features/front_page.feature +15 -0
- data/features/read_email.feature +445 -0
- data/features/receive_email.feature +59 -0
- data/features/step_definitions/email.rb +52 -0
- data/features/step_definitions/given.rb +60 -0
- data/features/step_definitions/then.rb +36 -0
- data/features/step_definitions/when.rb +46 -0
- data/features/support/env.rb +38 -0
- data/features/support/helpers.rb +50 -0
- data/features/support/rspec.rb +11 -0
- data/features/support/webrat.rb +3 -0
- data/features/update_user.feature +83 -0
- data/gemspec.rb +45 -0
- data/lib/sum.rb +30 -0
- data/lib/sum/boot.rb +29 -0
- data/lib/sum/controller/cron.rb +12 -0
- data/lib/sum/controller/front.rb +6 -0
- data/lib/sum/controller/new.rb +15 -0
- data/lib/sum/helper/application.rb +8 -0
- data/lib/sum/helper/cron.rb +12 -0
- data/lib/sum/helper/new.rb +27 -0
- data/lib/sum/model/incoming_mail.rb +89 -0
- data/lib/sum/model/user.rb +298 -0
- data/lib/sum/model/user_email.rb +31 -0
- data/lib/sum/view/email.haml +70 -0
- data/lib/sum/view/field.haml +23 -0
- data/lib/sum/view/form.haml +13 -0
- data/lib/sum/view/front.haml +29 -0
- data/lib/sum/view/layout.haml +26 -0
- data/lib/sum/view/new.haml +5 -0
- data/lib/sum/view/success.haml +14 -0
- data/lib/sum/view/tos.haml +3 -0
- data/public/image/1.png +0 -0
- data/public/image/2.png +0 -0
- data/public/image/3.png +0 -0
- data/public/image/bg.png +0 -0
- data/public/image/bot.png +0 -0
- data/public/image/facebox/b.png +0 -0
- data/public/image/facebox/bl.png +0 -0
- data/public/image/facebox/br.png +0 -0
- data/public/image/facebox/closelabel.gif +0 -0
- data/public/image/facebox/loading.gif +0 -0
- data/public/image/facebox/tl.png +0 -0
- data/public/image/facebox/tr.png +0 -0
- data/public/image/favicon.png +0 -0
- data/public/image/field_off.png +0 -0
- data/public/image/field_on.png +0 -0
- data/public/image/ribbon.png +0 -0
- data/public/image/screenshot_receive.png +0 -0
- data/public/image/screenshot_send.png +0 -0
- data/public/image/submit.png +0 -0
- data/public/image/top.png +0 -0
- data/public/javascript/facebox.js +319 -0
- data/public/javascript/jquery-1.3.2.js +19 -0
- data/public/javascript/sum.js +13 -0
- data/public/style/facebox.css +95 -0
- data/public/style/ie.css +35 -0
- data/public/style/print.css +30 -0
- data/public/style/screen.css +256 -0
- data/public/style/sum.css +119 -0
- data/public/style/sum.less +159 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +59 -0
- data/spec/sum/model/incoming_mail_spec.rb +106 -0
- data/spec/sum/model/user_spec.rb +172 -0
- data/sum.gemspec +69 -0
- data/vendor/webrat/History.txt +358 -0
- data/vendor/webrat/MIT-LICENSE.txt +19 -0
- data/vendor/webrat/README.rdoc +85 -0
- data/vendor/webrat/Rakefile +200 -0
- data/vendor/webrat/install.rb +1 -0
- data/vendor/webrat/lib/webrat.rb +31 -0
- data/vendor/webrat/lib/webrat/core.rb +14 -0
- data/vendor/webrat/lib/webrat/core/configuration.rb +102 -0
- data/vendor/webrat/lib/webrat/core/elements/area.rb +31 -0
- data/vendor/webrat/lib/webrat/core/elements/element.rb +33 -0
- data/vendor/webrat/lib/webrat/core/elements/field.rb +409 -0
- data/vendor/webrat/lib/webrat/core/elements/form.rb +103 -0
- data/vendor/webrat/lib/webrat/core/elements/label.rb +31 -0
- data/vendor/webrat/lib/webrat/core/elements/link.rb +93 -0
- data/vendor/webrat/lib/webrat/core/elements/select_option.rb +35 -0
- data/vendor/webrat/lib/webrat/core/locators.rb +20 -0
- data/vendor/webrat/lib/webrat/core/locators/area_locator.rb +38 -0
- data/vendor/webrat/lib/webrat/core/locators/button_locator.rb +54 -0
- data/vendor/webrat/lib/webrat/core/locators/field_by_id_locator.rb +37 -0
- data/vendor/webrat/lib/webrat/core/locators/field_labeled_locator.rb +56 -0
- data/vendor/webrat/lib/webrat/core/locators/field_locator.rb +25 -0
- data/vendor/webrat/lib/webrat/core/locators/field_named_locator.rb +41 -0
- data/vendor/webrat/lib/webrat/core/locators/form_locator.rb +19 -0
- data/vendor/webrat/lib/webrat/core/locators/label_locator.rb +34 -0
- data/vendor/webrat/lib/webrat/core/locators/link_locator.rb +74 -0
- data/vendor/webrat/lib/webrat/core/locators/locator.rb +20 -0
- data/vendor/webrat/lib/webrat/core/locators/select_option_locator.rb +59 -0
- data/vendor/webrat/lib/webrat/core/logging.rb +24 -0
- data/vendor/webrat/lib/webrat/core/matchers.rb +4 -0
- data/vendor/webrat/lib/webrat/core/matchers/have_content.rb +73 -0
- data/vendor/webrat/lib/webrat/core/matchers/have_selector.rb +74 -0
- data/vendor/webrat/lib/webrat/core/matchers/have_tag.rb +21 -0
- data/vendor/webrat/lib/webrat/core/matchers/have_xpath.rb +147 -0
- data/vendor/webrat/lib/webrat/core/methods.rb +63 -0
- data/vendor/webrat/lib/webrat/core/mime.rb +29 -0
- data/vendor/webrat/lib/webrat/core/save_and_open_page.rb +48 -0
- data/vendor/webrat/lib/webrat/core/scope.rb +350 -0
- data/vendor/webrat/lib/webrat/core/session.rb +299 -0
- data/vendor/webrat/lib/webrat/core/xml.rb +115 -0
- data/vendor/webrat/lib/webrat/core/xml/hpricot.rb +19 -0
- data/vendor/webrat/lib/webrat/core/xml/nokogiri.rb +76 -0
- data/vendor/webrat/lib/webrat/core/xml/rexml.rb +24 -0
- data/vendor/webrat/lib/webrat/core_extensions/blank.rb +58 -0
- data/vendor/webrat/lib/webrat/core_extensions/deprecate.rb +8 -0
- data/vendor/webrat/lib/webrat/core_extensions/detect_mapped.rb +12 -0
- data/vendor/webrat/lib/webrat/core_extensions/meta_class.rb +6 -0
- data/vendor/webrat/lib/webrat/core_extensions/nil_to_param.rb +5 -0
- data/vendor/webrat/lib/webrat/core_extensions/tcp_socket.rb +27 -0
- data/vendor/webrat/lib/webrat/mechanize.rb +74 -0
- data/vendor/webrat/lib/webrat/merb.rb +9 -0
- data/vendor/webrat/lib/webrat/merb_multipart_support.rb +27 -0
- data/vendor/webrat/lib/webrat/merb_session.rb +82 -0
- data/vendor/webrat/lib/webrat/rack.rb +25 -0
- data/vendor/webrat/lib/webrat/rails.rb +106 -0
- data/vendor/webrat/lib/webrat/rspec-rails.rb +10 -0
- data/vendor/webrat/lib/webrat/selenium.rb +81 -0
- data/vendor/webrat/lib/webrat/selenium/application_server_factory.rb +40 -0
- data/vendor/webrat/lib/webrat/selenium/application_servers.rb +5 -0
- data/vendor/webrat/lib/webrat/selenium/application_servers/base.rb +46 -0
- data/vendor/webrat/lib/webrat/selenium/application_servers/external.rb +26 -0
- data/vendor/webrat/lib/webrat/selenium/application_servers/merb.rb +50 -0
- data/vendor/webrat/lib/webrat/selenium/application_servers/rails.rb +44 -0
- data/vendor/webrat/lib/webrat/selenium/application_servers/sinatra.rb +37 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/button.js +19 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/label.js +16 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webrat.js +5 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlink.js +12 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlinkwithin.js +15 -0
- data/vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratselectwithoption.js +5 -0
- data/vendor/webrat/lib/webrat/selenium/matchers.rb +4 -0
- data/vendor/webrat/lib/webrat/selenium/matchers/have_content.rb +66 -0
- data/vendor/webrat/lib/webrat/selenium/matchers/have_selector.rb +49 -0
- data/vendor/webrat/lib/webrat/selenium/matchers/have_tag.rb +72 -0
- data/vendor/webrat/lib/webrat/selenium/matchers/have_xpath.rb +45 -0
- data/vendor/webrat/lib/webrat/selenium/selenium_extensions.js +6 -0
- data/vendor/webrat/lib/webrat/selenium/selenium_rc_server.rb +84 -0
- data/vendor/webrat/lib/webrat/selenium/selenium_session.rb +248 -0
- data/vendor/webrat/lib/webrat/selenium/silence_stream.rb +18 -0
- data/vendor/webrat/lib/webrat/sinatra.rb +11 -0
- data/vendor/webrat/spec/fakes/test_session.rb +34 -0
- data/vendor/webrat/spec/integration/merb/Rakefile +35 -0
- data/vendor/webrat/spec/integration/merb/app/controllers/application.rb +2 -0
- data/vendor/webrat/spec/integration/merb/app/controllers/exceptions.rb +13 -0
- data/vendor/webrat/spec/integration/merb/app/controllers/testing.rb +27 -0
- data/vendor/webrat/spec/integration/merb/app/views/exceptions/not_acceptable.html.erb +63 -0
- data/vendor/webrat/spec/integration/merb/app/views/exceptions/not_found.html.erb +47 -0
- data/vendor/webrat/spec/integration/merb/app/views/layout/application.html.erb +12 -0
- data/vendor/webrat/spec/integration/merb/app/views/testing/show_form.html.erb +27 -0
- data/vendor/webrat/spec/integration/merb/app/views/testing/upload.html.erb +9 -0
- data/vendor/webrat/spec/integration/merb/config/environments/development.rb +15 -0
- data/vendor/webrat/spec/integration/merb/config/environments/rake.rb +11 -0
- data/vendor/webrat/spec/integration/merb/config/environments/test.rb +14 -0
- data/vendor/webrat/spec/integration/merb/config/init.rb +25 -0
- data/vendor/webrat/spec/integration/merb/config/rack.rb +11 -0
- data/vendor/webrat/spec/integration/merb/config/router.rb +34 -0
- data/vendor/webrat/spec/integration/merb/spec/spec.opts +1 -0
- data/vendor/webrat/spec/integration/merb/spec/spec_helper.rb +24 -0
- data/vendor/webrat/spec/integration/merb/spec/webrat_spec.rb +39 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/app_script.rb +31 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/common.rb +64 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/gem_ext.rb +124 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/main.thor +150 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/ops.rb +93 -0
- data/vendor/webrat/spec/integration/merb/tasks/merb.thor/utils.rb +40 -0
- data/vendor/webrat/spec/integration/rack/Rakefile +5 -0
- data/vendor/webrat/spec/integration/rack/app.rb +73 -0
- data/vendor/webrat/spec/integration/rack/test/helper.rb +20 -0
- data/vendor/webrat/spec/integration/rack/test/webrat_rack_test.rb +62 -0
- data/vendor/webrat/spec/integration/rails/Rakefile +30 -0
- data/vendor/webrat/spec/integration/rails/app/controllers/application.rb +15 -0
- data/vendor/webrat/spec/integration/rails/app/controllers/buttons_controller.rb +7 -0
- data/vendor/webrat/spec/integration/rails/app/controllers/fields_controller.rb +4 -0
- data/vendor/webrat/spec/integration/rails/app/controllers/links_controller.rb +7 -0
- data/vendor/webrat/spec/integration/rails/app/controllers/webrat_controller.rb +43 -0
- data/vendor/webrat/spec/integration/rails/app/helpers/buttons_helper.rb +2 -0
- data/vendor/webrat/spec/integration/rails/app/helpers/fields_helper.rb +2 -0
- data/vendor/webrat/spec/integration/rails/app/helpers/links_helper.rb +2 -0
- data/vendor/webrat/spec/integration/rails/app/views/buttons/show.html.erb +11 -0
- data/vendor/webrat/spec/integration/rails/app/views/fields/show.html.erb +9 -0
- data/vendor/webrat/spec/integration/rails/app/views/links/show.html.erb +5 -0
- data/vendor/webrat/spec/integration/rails/app/views/webrat/before_redirect_form.html.erb +4 -0
- data/vendor/webrat/spec/integration/rails/app/views/webrat/buttons.html.erb +11 -0
- data/vendor/webrat/spec/integration/rails/app/views/webrat/form.html.erb +28 -0
- data/vendor/webrat/spec/integration/rails/config/boot.rb +109 -0
- data/vendor/webrat/spec/integration/rails/config/environment.rb +12 -0
- data/vendor/webrat/spec/integration/rails/config/environments/development.rb +17 -0
- data/vendor/webrat/spec/integration/rails/config/environments/selenium.rb +22 -0
- data/vendor/webrat/spec/integration/rails/config/environments/test.rb +22 -0
- data/vendor/webrat/spec/integration/rails/config/initializers/inflections.rb +10 -0
- data/vendor/webrat/spec/integration/rails/config/initializers/mime_types.rb +5 -0
- data/vendor/webrat/spec/integration/rails/config/initializers/new_rails_defaults.rb +17 -0
- data/vendor/webrat/spec/integration/rails/config/locales/en.yml +5 -0
- data/vendor/webrat/spec/integration/rails/config/routes.rb +18 -0
- data/vendor/webrat/spec/integration/rails/public/404.html +30 -0
- data/vendor/webrat/spec/integration/rails/public/422.html +30 -0
- data/vendor/webrat/spec/integration/rails/public/500.html +33 -0
- data/vendor/webrat/spec/integration/rails/script/about +4 -0
- data/vendor/webrat/spec/integration/rails/script/console +3 -0
- data/vendor/webrat/spec/integration/rails/script/dbconsole +3 -0
- data/vendor/webrat/spec/integration/rails/script/destroy +3 -0
- data/vendor/webrat/spec/integration/rails/script/generate +3 -0
- data/vendor/webrat/spec/integration/rails/script/performance/benchmarker +3 -0
- data/vendor/webrat/spec/integration/rails/script/performance/profiler +3 -0
- data/vendor/webrat/spec/integration/rails/script/performance/request +3 -0
- data/vendor/webrat/spec/integration/rails/script/plugin +3 -0
- data/vendor/webrat/spec/integration/rails/script/process/inspector +3 -0
- data/vendor/webrat/spec/integration/rails/script/process/reaper +3 -0
- data/vendor/webrat/spec/integration/rails/script/process/spawner +3 -0
- data/vendor/webrat/spec/integration/rails/script/runner +3 -0
- data/vendor/webrat/spec/integration/rails/script/server +3 -0
- data/vendor/webrat/spec/integration/rails/test/integration/button_click_test.rb +80 -0
- data/vendor/webrat/spec/integration/rails/test/integration/fill_in_test.rb +24 -0
- data/vendor/webrat/spec/integration/rails/test/integration/link_click_test.rb +27 -0
- data/vendor/webrat/spec/integration/rails/test/integration/webrat_test.rb +97 -0
- data/vendor/webrat/spec/integration/rails/test/test_helper.rb +25 -0
- data/vendor/webrat/spec/integration/sinatra/Rakefile +5 -0
- data/vendor/webrat/spec/integration/sinatra/classic_app.rb +64 -0
- data/vendor/webrat/spec/integration/sinatra/modular_app.rb +16 -0
- data/vendor/webrat/spec/integration/sinatra/test/classic_app_test.rb +37 -0
- data/vendor/webrat/spec/integration/sinatra/test/modular_app_test.rb +18 -0
- data/vendor/webrat/spec/integration/sinatra/test/test_helper.rb +16 -0
- data/vendor/webrat/spec/private/core/configuration_spec.rb +116 -0
- data/vendor/webrat/spec/private/core/field_spec.rb +85 -0
- data/vendor/webrat/spec/private/core/link_spec.rb +24 -0
- data/vendor/webrat/spec/private/core/logging_spec.rb +10 -0
- data/vendor/webrat/spec/private/core/session_spec.rb +195 -0
- data/vendor/webrat/spec/private/mechanize/mechanize_session_spec.rb +81 -0
- data/vendor/webrat/spec/private/merb/attaches_file_spec.rb +93 -0
- data/vendor/webrat/spec/private/merb/merb_session_spec.rb +61 -0
- data/vendor/webrat/spec/private/nokogiri_spec.rb +77 -0
- data/vendor/webrat/spec/private/rails/attaches_file_spec.rb +81 -0
- data/vendor/webrat/spec/private/rails/rails_session_spec.rb +112 -0
- data/vendor/webrat/spec/private/selenium/application_servers/rails_spec.rb +26 -0
- data/vendor/webrat/spec/public/basic_auth_spec.rb +24 -0
- data/vendor/webrat/spec/public/check_spec.rb +191 -0
- data/vendor/webrat/spec/public/choose_spec.rb +118 -0
- data/vendor/webrat/spec/public/click_area_spec.rb +106 -0
- data/vendor/webrat/spec/public/click_button_spec.rb +496 -0
- data/vendor/webrat/spec/public/click_link_spec.rb +511 -0
- data/vendor/webrat/spec/public/fill_in_spec.rb +209 -0
- data/vendor/webrat/spec/public/locators/field_by_xpath_spec.rb +19 -0
- data/vendor/webrat/spec/public/locators/field_labeled_spec.rb +172 -0
- data/vendor/webrat/spec/public/locators/field_with_id_spec.rb +16 -0
- data/vendor/webrat/spec/public/matchers/contain_spec.rb +114 -0
- data/vendor/webrat/spec/public/matchers/have_selector_spec.rb +142 -0
- data/vendor/webrat/spec/public/matchers/have_tag_spec.rb +39 -0
- data/vendor/webrat/spec/public/matchers/have_xpath_spec.rb +136 -0
- data/vendor/webrat/spec/public/reload_spec.rb +10 -0
- data/vendor/webrat/spec/public/save_and_open_spec.rb +70 -0
- data/vendor/webrat/spec/public/select_date_spec.rb +112 -0
- data/vendor/webrat/spec/public/select_datetime_spec.rb +137 -0
- data/vendor/webrat/spec/public/select_spec.rb +249 -0
- data/vendor/webrat/spec/public/select_time_spec.rb +100 -0
- data/vendor/webrat/spec/public/selenium/application_server_factory_spec.rb +49 -0
- data/vendor/webrat/spec/public/selenium/application_servers/external_spec.rb +12 -0
- data/vendor/webrat/spec/public/selenium/selenium_session_spec.rb +37 -0
- data/vendor/webrat/spec/public/set_hidden_field_spec.rb +5 -0
- data/vendor/webrat/spec/public/submit_form_spec.rb +5 -0
- data/vendor/webrat/spec/public/visit_spec.rb +58 -0
- data/vendor/webrat/spec/public/within_spec.rb +177 -0
- data/vendor/webrat/spec/rcov.opts +1 -0
- data/vendor/webrat/spec/spec.opts +2 -0
- data/vendor/webrat/spec/spec_helper.rb +50 -0
- metadata +474 -0
@@ -0,0 +1,119 @@
|
|
1
|
+
.h1 {
|
2
|
+
color: #07578f;
|
3
|
+
font-size: 16px;
|
4
|
+
font-weight: bold;
|
5
|
+
text-align: center;
|
6
|
+
padding-bottom: 8px;
|
7
|
+
}
|
8
|
+
a { color: #e16817; }
|
9
|
+
a:hover { color: #aa0000; }
|
10
|
+
body {
|
11
|
+
background: #f3f3f3;
|
12
|
+
margin: 0px;
|
13
|
+
}
|
14
|
+
body {
|
15
|
+
color: #575d60;
|
16
|
+
font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
|
17
|
+
font-size: 14px;
|
18
|
+
font-weight: bold;
|
19
|
+
}
|
20
|
+
body div {
|
21
|
+
color: #575d60;
|
22
|
+
font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
|
23
|
+
font-size: 14px;
|
24
|
+
font-weight: bold;
|
25
|
+
}
|
26
|
+
input {
|
27
|
+
color: #575d60;
|
28
|
+
font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
|
29
|
+
font-size: 14px;
|
30
|
+
font-weight: bold;
|
31
|
+
}
|
32
|
+
#body {
|
33
|
+
background-image: url(/image/bg.png);
|
34
|
+
margin: 0 auto;
|
35
|
+
overflow: auto;
|
36
|
+
padding: 6px 29px;
|
37
|
+
width: 400px;
|
38
|
+
}
|
39
|
+
#body > div { background-color: #ffffff; }
|
40
|
+
#body > div .field {
|
41
|
+
margin-bottom: 20px;
|
42
|
+
text-align: center;
|
43
|
+
}
|
44
|
+
#body > div .field label {
|
45
|
+
color: #07578f;
|
46
|
+
font-size: 16px;
|
47
|
+
font-weight: bold;
|
48
|
+
text-align: center;
|
49
|
+
padding-bottom: 8px;
|
50
|
+
cursor: pointer;
|
51
|
+
}
|
52
|
+
#body > div .field .checkbox { text-align: left; }
|
53
|
+
#body > div .field .checkbox input {
|
54
|
+
float: left;
|
55
|
+
margin: 2px 10px 50px;
|
56
|
+
}
|
57
|
+
#body > div .field .text input {
|
58
|
+
background-color: #f3f3f3;
|
59
|
+
background-image: url(/image/field_off.png);
|
60
|
+
border: 0px;
|
61
|
+
display: block;
|
62
|
+
height: 19px;
|
63
|
+
padding: 3px;
|
64
|
+
text-align: center;
|
65
|
+
width: 394px;
|
66
|
+
}
|
67
|
+
#body > div .field .text input:focus { background-image: url(/image/field_on.png); }
|
68
|
+
#body > div .field .validation { color: #aa0000; }
|
69
|
+
#body > div .number {
|
70
|
+
clear: both;
|
71
|
+
line-height: 25px;
|
72
|
+
margin-bottom: 7px;
|
73
|
+
overflow: auto;
|
74
|
+
}
|
75
|
+
#body > div p.last { margin: 0px; }
|
76
|
+
#body > div .spacer { margin-top: 25px; }
|
77
|
+
#body > div .submit {
|
78
|
+
text-align: right;
|
79
|
+
height: 30px;
|
80
|
+
}
|
81
|
+
#body > div .submit input {
|
82
|
+
background: transparent;
|
83
|
+
height: 30px;
|
84
|
+
outline: none;
|
85
|
+
width: 88px;
|
86
|
+
}
|
87
|
+
#bot {
|
88
|
+
height: 19px;
|
89
|
+
margin-bottom: 20px;
|
90
|
+
text-align: center;
|
91
|
+
}
|
92
|
+
h1 {
|
93
|
+
color: #07578f;
|
94
|
+
font-size: 16px;
|
95
|
+
font-weight: bold;
|
96
|
+
text-align: center;
|
97
|
+
padding-bottom: 8px;
|
98
|
+
}
|
99
|
+
h2 {
|
100
|
+
display: block;
|
101
|
+
font-size: 21px;
|
102
|
+
font-weight: bold;
|
103
|
+
margin: 25px 0px 15px;
|
104
|
+
text-align: center;
|
105
|
+
}
|
106
|
+
h2 a { color: #ab0000; }
|
107
|
+
#ribbon {
|
108
|
+
background-image: url(/image/ribbon.png);
|
109
|
+
height: 128px;
|
110
|
+
position: absolute;
|
111
|
+
right: 0px;
|
112
|
+
top: 0px;
|
113
|
+
width: 128px;
|
114
|
+
}
|
115
|
+
#top {
|
116
|
+
height: 120px;
|
117
|
+
text-align: center;
|
118
|
+
}
|
119
|
+
#top a { outline: none; }
|
@@ -0,0 +1,159 @@
|
|
1
|
+
/* colors */
|
2
|
+
|
3
|
+
@background: #F3F3F3;
|
4
|
+
@link: #E16817;
|
5
|
+
@link_hover: #AA0000;
|
6
|
+
@text: #575D60;
|
7
|
+
@title: #07578F;
|
8
|
+
|
9
|
+
/* mixins */
|
10
|
+
|
11
|
+
.h1 {
|
12
|
+
color: @title;
|
13
|
+
font-size: 16px;
|
14
|
+
font-weight: bold;
|
15
|
+
text-align: center;
|
16
|
+
padding-bottom: 8px;
|
17
|
+
}
|
18
|
+
|
19
|
+
/* styles */
|
20
|
+
|
21
|
+
a {
|
22
|
+
color: @link;
|
23
|
+
}
|
24
|
+
|
25
|
+
a:hover {
|
26
|
+
color: @link_hover;
|
27
|
+
}
|
28
|
+
|
29
|
+
body {
|
30
|
+
background: @background;
|
31
|
+
margin: 0px;
|
32
|
+
}
|
33
|
+
|
34
|
+
body, body div, input {
|
35
|
+
color: @text;
|
36
|
+
font-family: 'Helvetica Neue', helvetica, arial, sans-serif;
|
37
|
+
font-size: 14px;
|
38
|
+
font-weight: bold;
|
39
|
+
}
|
40
|
+
|
41
|
+
#body {
|
42
|
+
background-image: url(/image/bg.png);
|
43
|
+
margin: 0 auto;
|
44
|
+
overflow: auto;
|
45
|
+
padding: 6px 29px;
|
46
|
+
width: 400px;
|
47
|
+
|
48
|
+
> div {
|
49
|
+
background-color: #fff;
|
50
|
+
|
51
|
+
.field {
|
52
|
+
margin-bottom: 20px;
|
53
|
+
text-align: center;
|
54
|
+
|
55
|
+
label {
|
56
|
+
.h1;
|
57
|
+
cursor: pointer;
|
58
|
+
}
|
59
|
+
|
60
|
+
.checkbox {
|
61
|
+
|
62
|
+
text-align: left;
|
63
|
+
|
64
|
+
input {
|
65
|
+
float: left;
|
66
|
+
margin: 2px 10px 50px;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
.text {
|
71
|
+
input {
|
72
|
+
background-color: @background;
|
73
|
+
background-image: url(/image/field_off.png);
|
74
|
+
border: 0px;
|
75
|
+
display: block;
|
76
|
+
height: 19px;
|
77
|
+
padding: 3px;
|
78
|
+
text-align: center;
|
79
|
+
width: 394px;
|
80
|
+
}
|
81
|
+
|
82
|
+
input:focus {
|
83
|
+
background-image: url(/image/field_on.png);
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
.validation {
|
88
|
+
color: @link_hover;
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
.number {
|
93
|
+
clear: both;
|
94
|
+
line-height: 25px;
|
95
|
+
margin-bottom: 7px;
|
96
|
+
overflow: auto;
|
97
|
+
}
|
98
|
+
|
99
|
+
p.last {
|
100
|
+
margin: 0px;
|
101
|
+
}
|
102
|
+
|
103
|
+
.spacer {
|
104
|
+
margin-top: 25px;
|
105
|
+
}
|
106
|
+
|
107
|
+
.submit {
|
108
|
+
text-align: right;
|
109
|
+
height: 30px;
|
110
|
+
|
111
|
+
input {
|
112
|
+
background: transparent;
|
113
|
+
height: 30px;
|
114
|
+
outline: none;
|
115
|
+
width: 88px;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
#bot {
|
122
|
+
height: 19px;
|
123
|
+
margin-bottom: 20px;
|
124
|
+
text-align: center;
|
125
|
+
}
|
126
|
+
|
127
|
+
h1 {
|
128
|
+
.h1;
|
129
|
+
}
|
130
|
+
|
131
|
+
h2 {
|
132
|
+
display: block;
|
133
|
+
font-size: 21px;
|
134
|
+
font-weight: bold;
|
135
|
+
margin: 25px 0px 15px;
|
136
|
+
text-align: center;
|
137
|
+
|
138
|
+
a {
|
139
|
+
color: #AB0000;
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
#ribbon {
|
144
|
+
background-image: url(/image/ribbon.png);
|
145
|
+
height: 128px;
|
146
|
+
position: absolute;
|
147
|
+
right: 0px;
|
148
|
+
top: 0px;
|
149
|
+
width: 128px;
|
150
|
+
}
|
151
|
+
|
152
|
+
#top {
|
153
|
+
height: 120px;
|
154
|
+
text-align: center;
|
155
|
+
|
156
|
+
a {
|
157
|
+
outline: none;
|
158
|
+
}
|
159
|
+
}
|
data/spec/spec.opts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
$testing=true
|
2
|
+
SPEC = File.dirname(__FILE__)
|
3
|
+
$:.unshift File.expand_path("#{SPEC}/../lib")
|
4
|
+
|
5
|
+
require 'sum'
|
6
|
+
require 'pp'
|
7
|
+
|
8
|
+
Spec::Runner.configure do |config|
|
9
|
+
end
|
10
|
+
|
11
|
+
def create_valid_user
|
12
|
+
User.create(
|
13
|
+
:email => "cucumber@sumapp.com",
|
14
|
+
:bills => "1000.02",
|
15
|
+
:income => "2500.54",
|
16
|
+
:savings => "500.02",
|
17
|
+
:timezone_offset => "-25200",
|
18
|
+
:tos => '1'
|
19
|
+
)
|
20
|
+
end
|
21
|
+
|
22
|
+
# For use with rspec textmate bundle
|
23
|
+
def debug(object)
|
24
|
+
puts "<pre>"
|
25
|
+
puts object.pretty_inspect.gsub('<', '<').gsub('>', '>')
|
26
|
+
puts "</pre>"
|
27
|
+
end
|
28
|
+
|
29
|
+
def generate_email(options={})
|
30
|
+
<<EMAIL
|
31
|
+
Delivered-To: test@sumapp.com
|
32
|
+
Return-Path: <#{options[:from] || 'cucumber@sumapp.com'}>
|
33
|
+
From: Winton Welsh <#{options[:from] || 'cucumber@sumapp.com'}>
|
34
|
+
To: test@sumapp.com
|
35
|
+
Subject: #{options[:subject] || ''}
|
36
|
+
Content-Type: multipart/alternative; boundary=000325574d2a5057e1046eae4ba5
|
37
|
+
|
38
|
+
--000325574d2a5057e1046eae4ba5
|
39
|
+
Content-Type: text/plain; charset=ISO-8859-1
|
40
|
+
Content-Transfer-Encoding: 7bit
|
41
|
+
|
42
|
+
#{options[:body] || ''}
|
43
|
+
|
44
|
+
--000325574d2a5057e1046eae4ba5
|
45
|
+
Content-Type: text/html; charset=ISO-8859-1
|
46
|
+
Content-Transfer-Encoding: 7bit
|
47
|
+
|
48
|
+
#{options[:body] || ''}<br>
|
49
|
+
|
50
|
+
--000325574d2a5057e1046eae4ba5--
|
51
|
+
EMAIL
|
52
|
+
end
|
53
|
+
|
54
|
+
def migrate_reset
|
55
|
+
orig_stdout = $stdout
|
56
|
+
$stdout = File.new('/dev/null', 'w')
|
57
|
+
$db.migrate_reset
|
58
|
+
$stdout = orig_stdout
|
59
|
+
end
|
@@ -0,0 +1,106 @@
|
|
1
|
+
require File.expand_path("#{File.dirname(__FILE__)}/../../spec_helper")
|
2
|
+
|
3
|
+
describe IncomingMail do
|
4
|
+
|
5
|
+
before(:all) do
|
6
|
+
migrate_reset
|
7
|
+
@user = create_valid_user
|
8
|
+
end
|
9
|
+
|
10
|
+
describe "valid" do
|
11
|
+
describe "numbers only" do
|
12
|
+
|
13
|
+
before(:all) do
|
14
|
+
email = generate_email(
|
15
|
+
:subject => "-11.11 -11 11.11",
|
16
|
+
:body => "11 +11 +11.11"
|
17
|
+
)
|
18
|
+
@emails, @numbers = IncomingMail.receive(email)
|
19
|
+
@total = @numbers.inject(0) { |sum, item| sum + item }
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should process the correct numbers' do
|
23
|
+
@numbers.should == [ 11.11, 11.0, 11.11, 11.0, -11.0, -11.11 ]
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
describe "non-number characters (reply email)" do
|
28
|
+
|
29
|
+
before(:all) do
|
30
|
+
email = generate_email(
|
31
|
+
:subject => "-11.11a -11",
|
32
|
+
:body => "+11a +11.11"
|
33
|
+
)
|
34
|
+
@emails, @numbers = IncomingMail.receive(email)
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'should process the correct numbers' do
|
38
|
+
@numbers.should == [ 11.11, -11 ]
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe "emails in the subject and body" do
|
43
|
+
|
44
|
+
before(:all) do
|
45
|
+
email = generate_email(
|
46
|
+
:subject => "win@sumapp.com",
|
47
|
+
:body => "winton@sumapp.com"
|
48
|
+
)
|
49
|
+
@emails, @numbers = IncomingMail.receive(email)
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'should process the correct emails' do
|
53
|
+
@emails.should == [ "win@sumapp.com", "winton@sumapp.com" ]
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
describe "start/stop" do
|
58
|
+
|
59
|
+
before(:all) do
|
60
|
+
email = generate_email(
|
61
|
+
:subject => " start",
|
62
|
+
:body => "stop"
|
63
|
+
)
|
64
|
+
@emails, @numbers, @start, @stop = IncomingMail.receive(email)
|
65
|
+
end
|
66
|
+
|
67
|
+
it 'should start' do
|
68
|
+
@start.should == true
|
69
|
+
end
|
70
|
+
|
71
|
+
it 'should stop' do
|
72
|
+
@stop.should == true
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
describe "invalid" do
|
78
|
+
describe "no numbers, emails, starts, or stops" do
|
79
|
+
|
80
|
+
before(:all) do
|
81
|
+
email = generate_email(:body => "this is a test")
|
82
|
+
@emails, @numbers, @start, @stop = IncomingMail.receive(email)
|
83
|
+
end
|
84
|
+
|
85
|
+
it 'should fail' do
|
86
|
+
@numbers.should == []
|
87
|
+
@emails.should == []
|
88
|
+
@start.should == false
|
89
|
+
@stop.should == false
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
describe "no user" do
|
94
|
+
|
95
|
+
before(:all) do
|
96
|
+
email = generate_email(:from => "not@user.com", :subject => '1')
|
97
|
+
@emails, @numbers = IncomingMail.receive(email)
|
98
|
+
end
|
99
|
+
|
100
|
+
it 'should fail' do
|
101
|
+
@numbers.should == nil
|
102
|
+
@emails.should == nil
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|