winton-sum 0.1.0
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 +55 -0
- data/Rakefile +45 -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/config.ru +3 -0
- data/db/migrate/001_users.rb +22 -0
- data/db/migrate/002_user_emails.rb +15 -0
- data/features/front_page.feature +14 -0
- data/features/read_email.feature +446 -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 +32 -0
- data/features/step_definitions/when.rb +41 -0
- data/features/support/env.rb +27 -0
- data/features/support/helpers.rb +44 -0
- data/features/support/rspec.rb +11 -0
- data/features/support/webrat.rb +3 -0
- data/features/update_user.feature +76 -0
- data/gemspec.rb +45 -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 +26 -0
- data/lib/sum/model/incoming_mail.rb +89 -0
- data/lib/sum/model/user.rb +286 -0
- data/lib/sum/model/user_email.rb +31 -0
- data/lib/sum/view/email.haml +70 -0
- data/lib/sum/view/field.haml +10 -0
- data/lib/sum/view/form.haml +12 -0
- data/lib/sum/view/front.haml +25 -0
- data/lib/sum/view/layout.haml +26 -0
- data/lib/sum/view/new.haml +15 -0
- data/lib/sum.rb +30 -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 +9 -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 +22 -0
- data/public/style/sum.less +135 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +58 -0
- data/spec/sum/model/incoming_mail_spec.rb +106 -0
- data/spec/sum/model/user_spec.rb +171 -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/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/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/locators.rb +20 -0
- data/vendor/webrat/lib/webrat/core/logging.rb +24 -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/matchers.rb +4 -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/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/xml.rb +115 -0
- data/vendor/webrat/lib/webrat/core.rb +14 -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/application_server_factory.rb +40 -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/application_servers.rb +5 -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/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/matchers.rb +4 -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/selenium.rb +81 -0
- data/vendor/webrat/lib/webrat/sinatra.rb +11 -0
- data/vendor/webrat/lib/webrat.rb +31 -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 +554 -0
metadata
ADDED
@@ -0,0 +1,554 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: winton-sum
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Winton Welsh
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-07-19 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: bmabey-email_spec
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - "="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.2.0
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: cucumber
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.3.11
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: haml
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - "="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 2.0.9
|
44
|
+
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: less
|
47
|
+
type: :runtime
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 0.8.11
|
54
|
+
version:
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: javan-whenever
|
57
|
+
type: :runtime
|
58
|
+
version_requirement:
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - "="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 0.3.6
|
64
|
+
version:
|
65
|
+
- !ruby/object:Gem::Dependency
|
66
|
+
name: rack
|
67
|
+
type: :runtime
|
68
|
+
version_requirement:
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: 1.0.0
|
74
|
+
version:
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: rack-test
|
77
|
+
type: :runtime
|
78
|
+
version_requirement:
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: 0.4.0
|
84
|
+
version:
|
85
|
+
- !ruby/object:Gem::Dependency
|
86
|
+
name: rspec
|
87
|
+
type: :runtime
|
88
|
+
version_requirement:
|
89
|
+
version_requirements: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: 1.2.7
|
94
|
+
version:
|
95
|
+
- !ruby/object:Gem::Dependency
|
96
|
+
name: shotgun
|
97
|
+
type: :runtime
|
98
|
+
version_requirement:
|
99
|
+
version_requirements: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: "0.3"
|
104
|
+
version:
|
105
|
+
- !ruby/object:Gem::Dependency
|
106
|
+
name: sinatra
|
107
|
+
type: :runtime
|
108
|
+
version_requirement:
|
109
|
+
version_requirements: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - "="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: 0.9.2
|
114
|
+
version:
|
115
|
+
- !ruby/object:Gem::Dependency
|
116
|
+
name: winton-active_wrapper
|
117
|
+
type: :runtime
|
118
|
+
version_requirement:
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - "="
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 0.1.5
|
124
|
+
version:
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: winton-externals
|
127
|
+
type: :runtime
|
128
|
+
version_requirement:
|
129
|
+
version_requirements: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - "="
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: 1.0.2
|
134
|
+
version:
|
135
|
+
- !ruby/object:Gem::Dependency
|
136
|
+
name: winton-fetcher
|
137
|
+
type: :runtime
|
138
|
+
version_requirement:
|
139
|
+
version_requirements: !ruby/object:Gem::Requirement
|
140
|
+
requirements:
|
141
|
+
- - "="
|
142
|
+
- !ruby/object:Gem::Version
|
143
|
+
version: 0.1.2
|
144
|
+
version:
|
145
|
+
- !ruby/object:Gem::Dependency
|
146
|
+
name: winton-secret_key
|
147
|
+
type: :runtime
|
148
|
+
version_requirement:
|
149
|
+
version_requirements: !ruby/object:Gem::Requirement
|
150
|
+
requirements:
|
151
|
+
- - "="
|
152
|
+
- !ruby/object:Gem::Version
|
153
|
+
version: 0.1.0
|
154
|
+
version:
|
155
|
+
description:
|
156
|
+
email: mail@wintoni.us
|
157
|
+
executables: []
|
158
|
+
|
159
|
+
extensions: []
|
160
|
+
|
161
|
+
extra_rdoc_files:
|
162
|
+
- README.markdown
|
163
|
+
files:
|
164
|
+
- Capfile
|
165
|
+
- config
|
166
|
+
- config/database.example.yml
|
167
|
+
- config/deploy.example.rb
|
168
|
+
- config/externals.yml
|
169
|
+
- config/mail.example.yml
|
170
|
+
- config/schedule.rb
|
171
|
+
- config.ru
|
172
|
+
- db
|
173
|
+
- db/migrate
|
174
|
+
- db/migrate/001_users.rb
|
175
|
+
- db/migrate/002_user_emails.rb
|
176
|
+
- features
|
177
|
+
- features/front_page.feature
|
178
|
+
- features/read_email.feature
|
179
|
+
- features/receive_email.feature
|
180
|
+
- features/step_definitions
|
181
|
+
- features/step_definitions/email.rb
|
182
|
+
- features/step_definitions/given.rb
|
183
|
+
- features/step_definitions/then.rb
|
184
|
+
- features/step_definitions/when.rb
|
185
|
+
- features/support
|
186
|
+
- features/support/env.rb
|
187
|
+
- features/support/helpers.rb
|
188
|
+
- features/support/rspec.rb
|
189
|
+
- features/support/webrat.rb
|
190
|
+
- features/update_user.feature
|
191
|
+
- gemspec.rb
|
192
|
+
- lib
|
193
|
+
- lib/sum
|
194
|
+
- lib/sum/boot.rb
|
195
|
+
- lib/sum/controller
|
196
|
+
- lib/sum/controller/cron.rb
|
197
|
+
- lib/sum/controller/front.rb
|
198
|
+
- lib/sum/controller/new.rb
|
199
|
+
- lib/sum/helper
|
200
|
+
- lib/sum/helper/application.rb
|
201
|
+
- lib/sum/helper/cron.rb
|
202
|
+
- lib/sum/helper/new.rb
|
203
|
+
- lib/sum/model
|
204
|
+
- lib/sum/model/incoming_mail.rb
|
205
|
+
- lib/sum/model/user.rb
|
206
|
+
- lib/sum/model/user_email.rb
|
207
|
+
- lib/sum/view
|
208
|
+
- lib/sum/view/email.haml
|
209
|
+
- lib/sum/view/field.haml
|
210
|
+
- lib/sum/view/form.haml
|
211
|
+
- lib/sum/view/front.haml
|
212
|
+
- lib/sum/view/layout.haml
|
213
|
+
- lib/sum/view/new.haml
|
214
|
+
- lib/sum.rb
|
215
|
+
- MIT-LICENSE
|
216
|
+
- public
|
217
|
+
- public/image
|
218
|
+
- public/image/1.png
|
219
|
+
- public/image/2.png
|
220
|
+
- public/image/3.png
|
221
|
+
- public/image/bg.png
|
222
|
+
- public/image/bot.png
|
223
|
+
- public/image/facebox
|
224
|
+
- public/image/facebox/b.png
|
225
|
+
- public/image/facebox/bl.png
|
226
|
+
- public/image/facebox/br.png
|
227
|
+
- public/image/facebox/closelabel.gif
|
228
|
+
- public/image/facebox/loading.gif
|
229
|
+
- public/image/facebox/tl.png
|
230
|
+
- public/image/facebox/tr.png
|
231
|
+
- public/image/favicon.png
|
232
|
+
- public/image/field_off.png
|
233
|
+
- public/image/field_on.png
|
234
|
+
- public/image/ribbon.png
|
235
|
+
- public/image/screenshot_receive.png
|
236
|
+
- public/image/screenshot_send.png
|
237
|
+
- public/image/submit.png
|
238
|
+
- public/image/top.png
|
239
|
+
- public/javascript
|
240
|
+
- public/javascript/facebox.js
|
241
|
+
- public/javascript/jquery-1.3.2.js
|
242
|
+
- public/javascript/sum.js
|
243
|
+
- public/style
|
244
|
+
- public/style/facebox.css
|
245
|
+
- public/style/ie.css
|
246
|
+
- public/style/print.css
|
247
|
+
- public/style/screen.css
|
248
|
+
- public/style/sum.css
|
249
|
+
- public/style/sum.less
|
250
|
+
- Rakefile
|
251
|
+
- README.markdown
|
252
|
+
- spec
|
253
|
+
- spec/spec.opts
|
254
|
+
- spec/spec_helper.rb
|
255
|
+
- spec/sum
|
256
|
+
- spec/sum/model
|
257
|
+
- spec/sum/model/incoming_mail_spec.rb
|
258
|
+
- spec/sum/model/user_spec.rb
|
259
|
+
- sum.gemspec
|
260
|
+
- vendor
|
261
|
+
- vendor/webrat
|
262
|
+
- vendor/webrat/History.txt
|
263
|
+
- vendor/webrat/install.rb
|
264
|
+
- vendor/webrat/lib
|
265
|
+
- vendor/webrat/lib/webrat
|
266
|
+
- vendor/webrat/lib/webrat/core
|
267
|
+
- vendor/webrat/lib/webrat/core/configuration.rb
|
268
|
+
- vendor/webrat/lib/webrat/core/elements
|
269
|
+
- vendor/webrat/lib/webrat/core/elements/area.rb
|
270
|
+
- vendor/webrat/lib/webrat/core/elements/element.rb
|
271
|
+
- vendor/webrat/lib/webrat/core/elements/field.rb
|
272
|
+
- vendor/webrat/lib/webrat/core/elements/form.rb
|
273
|
+
- vendor/webrat/lib/webrat/core/elements/label.rb
|
274
|
+
- vendor/webrat/lib/webrat/core/elements/link.rb
|
275
|
+
- vendor/webrat/lib/webrat/core/elements/select_option.rb
|
276
|
+
- vendor/webrat/lib/webrat/core/locators
|
277
|
+
- vendor/webrat/lib/webrat/core/locators/area_locator.rb
|
278
|
+
- vendor/webrat/lib/webrat/core/locators/button_locator.rb
|
279
|
+
- vendor/webrat/lib/webrat/core/locators/field_by_id_locator.rb
|
280
|
+
- vendor/webrat/lib/webrat/core/locators/field_labeled_locator.rb
|
281
|
+
- vendor/webrat/lib/webrat/core/locators/field_locator.rb
|
282
|
+
- vendor/webrat/lib/webrat/core/locators/field_named_locator.rb
|
283
|
+
- vendor/webrat/lib/webrat/core/locators/form_locator.rb
|
284
|
+
- vendor/webrat/lib/webrat/core/locators/label_locator.rb
|
285
|
+
- vendor/webrat/lib/webrat/core/locators/link_locator.rb
|
286
|
+
- vendor/webrat/lib/webrat/core/locators/locator.rb
|
287
|
+
- vendor/webrat/lib/webrat/core/locators/select_option_locator.rb
|
288
|
+
- vendor/webrat/lib/webrat/core/locators.rb
|
289
|
+
- vendor/webrat/lib/webrat/core/logging.rb
|
290
|
+
- vendor/webrat/lib/webrat/core/matchers
|
291
|
+
- vendor/webrat/lib/webrat/core/matchers/have_content.rb
|
292
|
+
- vendor/webrat/lib/webrat/core/matchers/have_selector.rb
|
293
|
+
- vendor/webrat/lib/webrat/core/matchers/have_tag.rb
|
294
|
+
- vendor/webrat/lib/webrat/core/matchers/have_xpath.rb
|
295
|
+
- vendor/webrat/lib/webrat/core/matchers.rb
|
296
|
+
- vendor/webrat/lib/webrat/core/methods.rb
|
297
|
+
- vendor/webrat/lib/webrat/core/mime.rb
|
298
|
+
- vendor/webrat/lib/webrat/core/save_and_open_page.rb
|
299
|
+
- vendor/webrat/lib/webrat/core/scope.rb
|
300
|
+
- vendor/webrat/lib/webrat/core/session.rb
|
301
|
+
- vendor/webrat/lib/webrat/core/xml
|
302
|
+
- vendor/webrat/lib/webrat/core/xml/hpricot.rb
|
303
|
+
- vendor/webrat/lib/webrat/core/xml/nokogiri.rb
|
304
|
+
- vendor/webrat/lib/webrat/core/xml/rexml.rb
|
305
|
+
- vendor/webrat/lib/webrat/core/xml.rb
|
306
|
+
- vendor/webrat/lib/webrat/core.rb
|
307
|
+
- vendor/webrat/lib/webrat/core_extensions
|
308
|
+
- vendor/webrat/lib/webrat/core_extensions/blank.rb
|
309
|
+
- vendor/webrat/lib/webrat/core_extensions/deprecate.rb
|
310
|
+
- vendor/webrat/lib/webrat/core_extensions/detect_mapped.rb
|
311
|
+
- vendor/webrat/lib/webrat/core_extensions/meta_class.rb
|
312
|
+
- vendor/webrat/lib/webrat/core_extensions/nil_to_param.rb
|
313
|
+
- vendor/webrat/lib/webrat/core_extensions/tcp_socket.rb
|
314
|
+
- vendor/webrat/lib/webrat/mechanize.rb
|
315
|
+
- vendor/webrat/lib/webrat/merb.rb
|
316
|
+
- vendor/webrat/lib/webrat/merb_multipart_support.rb
|
317
|
+
- vendor/webrat/lib/webrat/merb_session.rb
|
318
|
+
- vendor/webrat/lib/webrat/rack.rb
|
319
|
+
- vendor/webrat/lib/webrat/rails.rb
|
320
|
+
- vendor/webrat/lib/webrat/rspec-rails.rb
|
321
|
+
- vendor/webrat/lib/webrat/selenium
|
322
|
+
- vendor/webrat/lib/webrat/selenium/application_server_factory.rb
|
323
|
+
- vendor/webrat/lib/webrat/selenium/application_servers
|
324
|
+
- vendor/webrat/lib/webrat/selenium/application_servers/base.rb
|
325
|
+
- vendor/webrat/lib/webrat/selenium/application_servers/external.rb
|
326
|
+
- vendor/webrat/lib/webrat/selenium/application_servers/merb.rb
|
327
|
+
- vendor/webrat/lib/webrat/selenium/application_servers/rails.rb
|
328
|
+
- vendor/webrat/lib/webrat/selenium/application_servers/sinatra.rb
|
329
|
+
- vendor/webrat/lib/webrat/selenium/application_servers.rb
|
330
|
+
- vendor/webrat/lib/webrat/selenium/location_strategy_javascript
|
331
|
+
- vendor/webrat/lib/webrat/selenium/location_strategy_javascript/button.js
|
332
|
+
- vendor/webrat/lib/webrat/selenium/location_strategy_javascript/label.js
|
333
|
+
- vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webrat.js
|
334
|
+
- vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlink.js
|
335
|
+
- vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratlinkwithin.js
|
336
|
+
- vendor/webrat/lib/webrat/selenium/location_strategy_javascript/webratselectwithoption.js
|
337
|
+
- vendor/webrat/lib/webrat/selenium/matchers
|
338
|
+
- vendor/webrat/lib/webrat/selenium/matchers/have_content.rb
|
339
|
+
- vendor/webrat/lib/webrat/selenium/matchers/have_selector.rb
|
340
|
+
- vendor/webrat/lib/webrat/selenium/matchers/have_tag.rb
|
341
|
+
- vendor/webrat/lib/webrat/selenium/matchers/have_xpath.rb
|
342
|
+
- vendor/webrat/lib/webrat/selenium/matchers.rb
|
343
|
+
- vendor/webrat/lib/webrat/selenium/selenium_extensions.js
|
344
|
+
- vendor/webrat/lib/webrat/selenium/selenium_rc_server.rb
|
345
|
+
- vendor/webrat/lib/webrat/selenium/selenium_session.rb
|
346
|
+
- vendor/webrat/lib/webrat/selenium/silence_stream.rb
|
347
|
+
- vendor/webrat/lib/webrat/selenium.rb
|
348
|
+
- vendor/webrat/lib/webrat/sinatra.rb
|
349
|
+
- vendor/webrat/lib/webrat.rb
|
350
|
+
- vendor/webrat/MIT-LICENSE.txt
|
351
|
+
- vendor/webrat/Rakefile
|
352
|
+
- vendor/webrat/README.rdoc
|
353
|
+
- vendor/webrat/spec
|
354
|
+
- vendor/webrat/spec/fakes
|
355
|
+
- vendor/webrat/spec/fakes/test_session.rb
|
356
|
+
- vendor/webrat/spec/integration
|
357
|
+
- vendor/webrat/spec/integration/merb
|
358
|
+
- vendor/webrat/spec/integration/merb/app
|
359
|
+
- vendor/webrat/spec/integration/merb/app/controllers
|
360
|
+
- vendor/webrat/spec/integration/merb/app/controllers/application.rb
|
361
|
+
- vendor/webrat/spec/integration/merb/app/controllers/exceptions.rb
|
362
|
+
- vendor/webrat/spec/integration/merb/app/controllers/testing.rb
|
363
|
+
- vendor/webrat/spec/integration/merb/app/views
|
364
|
+
- vendor/webrat/spec/integration/merb/app/views/exceptions
|
365
|
+
- vendor/webrat/spec/integration/merb/app/views/exceptions/not_acceptable.html.erb
|
366
|
+
- vendor/webrat/spec/integration/merb/app/views/exceptions/not_found.html.erb
|
367
|
+
- vendor/webrat/spec/integration/merb/app/views/layout
|
368
|
+
- vendor/webrat/spec/integration/merb/app/views/layout/application.html.erb
|
369
|
+
- vendor/webrat/spec/integration/merb/app/views/testing
|
370
|
+
- vendor/webrat/spec/integration/merb/app/views/testing/show_form.html.erb
|
371
|
+
- vendor/webrat/spec/integration/merb/app/views/testing/upload.html.erb
|
372
|
+
- vendor/webrat/spec/integration/merb/config
|
373
|
+
- vendor/webrat/spec/integration/merb/config/environments
|
374
|
+
- vendor/webrat/spec/integration/merb/config/environments/development.rb
|
375
|
+
- vendor/webrat/spec/integration/merb/config/environments/rake.rb
|
376
|
+
- vendor/webrat/spec/integration/merb/config/environments/test.rb
|
377
|
+
- vendor/webrat/spec/integration/merb/config/init.rb
|
378
|
+
- vendor/webrat/spec/integration/merb/config/rack.rb
|
379
|
+
- vendor/webrat/spec/integration/merb/config/router.rb
|
380
|
+
- vendor/webrat/spec/integration/merb/Rakefile
|
381
|
+
- vendor/webrat/spec/integration/merb/spec
|
382
|
+
- vendor/webrat/spec/integration/merb/spec/spec.opts
|
383
|
+
- vendor/webrat/spec/integration/merb/spec/spec_helper.rb
|
384
|
+
- vendor/webrat/spec/integration/merb/spec/webrat_spec.rb
|
385
|
+
- vendor/webrat/spec/integration/merb/tasks
|
386
|
+
- vendor/webrat/spec/integration/merb/tasks/merb.thor
|
387
|
+
- vendor/webrat/spec/integration/merb/tasks/merb.thor/app_script.rb
|
388
|
+
- vendor/webrat/spec/integration/merb/tasks/merb.thor/common.rb
|
389
|
+
- vendor/webrat/spec/integration/merb/tasks/merb.thor/gem_ext.rb
|
390
|
+
- vendor/webrat/spec/integration/merb/tasks/merb.thor/main.thor
|
391
|
+
- vendor/webrat/spec/integration/merb/tasks/merb.thor/ops.rb
|
392
|
+
- vendor/webrat/spec/integration/merb/tasks/merb.thor/utils.rb
|
393
|
+
- vendor/webrat/spec/integration/rack
|
394
|
+
- vendor/webrat/spec/integration/rack/app.rb
|
395
|
+
- vendor/webrat/spec/integration/rack/Rakefile
|
396
|
+
- vendor/webrat/spec/integration/rack/test
|
397
|
+
- vendor/webrat/spec/integration/rack/test/helper.rb
|
398
|
+
- vendor/webrat/spec/integration/rack/test/webrat_rack_test.rb
|
399
|
+
- vendor/webrat/spec/integration/rails
|
400
|
+
- vendor/webrat/spec/integration/rails/app
|
401
|
+
- vendor/webrat/spec/integration/rails/app/controllers
|
402
|
+
- vendor/webrat/spec/integration/rails/app/controllers/application.rb
|
403
|
+
- vendor/webrat/spec/integration/rails/app/controllers/buttons_controller.rb
|
404
|
+
- vendor/webrat/spec/integration/rails/app/controllers/fields_controller.rb
|
405
|
+
- vendor/webrat/spec/integration/rails/app/controllers/links_controller.rb
|
406
|
+
- vendor/webrat/spec/integration/rails/app/controllers/webrat_controller.rb
|
407
|
+
- vendor/webrat/spec/integration/rails/app/helpers
|
408
|
+
- vendor/webrat/spec/integration/rails/app/helpers/buttons_helper.rb
|
409
|
+
- vendor/webrat/spec/integration/rails/app/helpers/fields_helper.rb
|
410
|
+
- vendor/webrat/spec/integration/rails/app/helpers/links_helper.rb
|
411
|
+
- vendor/webrat/spec/integration/rails/app/views
|
412
|
+
- vendor/webrat/spec/integration/rails/app/views/buttons
|
413
|
+
- vendor/webrat/spec/integration/rails/app/views/buttons/show.html.erb
|
414
|
+
- vendor/webrat/spec/integration/rails/app/views/fields
|
415
|
+
- vendor/webrat/spec/integration/rails/app/views/fields/show.html.erb
|
416
|
+
- vendor/webrat/spec/integration/rails/app/views/links
|
417
|
+
- vendor/webrat/spec/integration/rails/app/views/links/show.html.erb
|
418
|
+
- vendor/webrat/spec/integration/rails/app/views/webrat
|
419
|
+
- vendor/webrat/spec/integration/rails/app/views/webrat/before_redirect_form.html.erb
|
420
|
+
- vendor/webrat/spec/integration/rails/app/views/webrat/buttons.html.erb
|
421
|
+
- vendor/webrat/spec/integration/rails/app/views/webrat/form.html.erb
|
422
|
+
- vendor/webrat/spec/integration/rails/config
|
423
|
+
- vendor/webrat/spec/integration/rails/config/boot.rb
|
424
|
+
- vendor/webrat/spec/integration/rails/config/environment.rb
|
425
|
+
- vendor/webrat/spec/integration/rails/config/environments
|
426
|
+
- vendor/webrat/spec/integration/rails/config/environments/development.rb
|
427
|
+
- vendor/webrat/spec/integration/rails/config/environments/selenium.rb
|
428
|
+
- vendor/webrat/spec/integration/rails/config/environments/test.rb
|
429
|
+
- vendor/webrat/spec/integration/rails/config/initializers
|
430
|
+
- vendor/webrat/spec/integration/rails/config/initializers/inflections.rb
|
431
|
+
- vendor/webrat/spec/integration/rails/config/initializers/mime_types.rb
|
432
|
+
- vendor/webrat/spec/integration/rails/config/initializers/new_rails_defaults.rb
|
433
|
+
- vendor/webrat/spec/integration/rails/config/locales
|
434
|
+
- vendor/webrat/spec/integration/rails/config/locales/en.yml
|
435
|
+
- vendor/webrat/spec/integration/rails/config/routes.rb
|
436
|
+
- vendor/webrat/spec/integration/rails/public
|
437
|
+
- vendor/webrat/spec/integration/rails/public/404.html
|
438
|
+
- vendor/webrat/spec/integration/rails/public/422.html
|
439
|
+
- vendor/webrat/spec/integration/rails/public/500.html
|
440
|
+
- vendor/webrat/spec/integration/rails/Rakefile
|
441
|
+
- vendor/webrat/spec/integration/rails/script
|
442
|
+
- vendor/webrat/spec/integration/rails/script/about
|
443
|
+
- vendor/webrat/spec/integration/rails/script/console
|
444
|
+
- vendor/webrat/spec/integration/rails/script/dbconsole
|
445
|
+
- vendor/webrat/spec/integration/rails/script/destroy
|
446
|
+
- vendor/webrat/spec/integration/rails/script/generate
|
447
|
+
- vendor/webrat/spec/integration/rails/script/performance
|
448
|
+
- vendor/webrat/spec/integration/rails/script/performance/benchmarker
|
449
|
+
- vendor/webrat/spec/integration/rails/script/performance/profiler
|
450
|
+
- vendor/webrat/spec/integration/rails/script/performance/request
|
451
|
+
- vendor/webrat/spec/integration/rails/script/plugin
|
452
|
+
- vendor/webrat/spec/integration/rails/script/process
|
453
|
+
- vendor/webrat/spec/integration/rails/script/process/inspector
|
454
|
+
- vendor/webrat/spec/integration/rails/script/process/reaper
|
455
|
+
- vendor/webrat/spec/integration/rails/script/process/spawner
|
456
|
+
- vendor/webrat/spec/integration/rails/script/runner
|
457
|
+
- vendor/webrat/spec/integration/rails/script/server
|
458
|
+
- vendor/webrat/spec/integration/rails/test
|
459
|
+
- vendor/webrat/spec/integration/rails/test/integration
|
460
|
+
- vendor/webrat/spec/integration/rails/test/integration/button_click_test.rb
|
461
|
+
- vendor/webrat/spec/integration/rails/test/integration/fill_in_test.rb
|
462
|
+
- vendor/webrat/spec/integration/rails/test/integration/link_click_test.rb
|
463
|
+
- vendor/webrat/spec/integration/rails/test/integration/webrat_test.rb
|
464
|
+
- vendor/webrat/spec/integration/rails/test/test_helper.rb
|
465
|
+
- vendor/webrat/spec/integration/sinatra
|
466
|
+
- vendor/webrat/spec/integration/sinatra/classic_app.rb
|
467
|
+
- vendor/webrat/spec/integration/sinatra/modular_app.rb
|
468
|
+
- vendor/webrat/spec/integration/sinatra/Rakefile
|
469
|
+
- vendor/webrat/spec/integration/sinatra/test
|
470
|
+
- vendor/webrat/spec/integration/sinatra/test/classic_app_test.rb
|
471
|
+
- vendor/webrat/spec/integration/sinatra/test/modular_app_test.rb
|
472
|
+
- vendor/webrat/spec/integration/sinatra/test/test_helper.rb
|
473
|
+
- vendor/webrat/spec/private
|
474
|
+
- vendor/webrat/spec/private/core
|
475
|
+
- vendor/webrat/spec/private/core/configuration_spec.rb
|
476
|
+
- vendor/webrat/spec/private/core/field_spec.rb
|
477
|
+
- vendor/webrat/spec/private/core/link_spec.rb
|
478
|
+
- vendor/webrat/spec/private/core/logging_spec.rb
|
479
|
+
- vendor/webrat/spec/private/core/session_spec.rb
|
480
|
+
- vendor/webrat/spec/private/mechanize
|
481
|
+
- vendor/webrat/spec/private/mechanize/mechanize_session_spec.rb
|
482
|
+
- vendor/webrat/spec/private/merb
|
483
|
+
- vendor/webrat/spec/private/merb/attaches_file_spec.rb
|
484
|
+
- vendor/webrat/spec/private/merb/merb_session_spec.rb
|
485
|
+
- vendor/webrat/spec/private/nokogiri_spec.rb
|
486
|
+
- vendor/webrat/spec/private/rails
|
487
|
+
- vendor/webrat/spec/private/rails/attaches_file_spec.rb
|
488
|
+
- vendor/webrat/spec/private/rails/rails_session_spec.rb
|
489
|
+
- vendor/webrat/spec/private/selenium
|
490
|
+
- vendor/webrat/spec/private/selenium/application_servers
|
491
|
+
- vendor/webrat/spec/private/selenium/application_servers/rails_spec.rb
|
492
|
+
- vendor/webrat/spec/public
|
493
|
+
- vendor/webrat/spec/public/basic_auth_spec.rb
|
494
|
+
- vendor/webrat/spec/public/check_spec.rb
|
495
|
+
- vendor/webrat/spec/public/choose_spec.rb
|
496
|
+
- vendor/webrat/spec/public/click_area_spec.rb
|
497
|
+
- vendor/webrat/spec/public/click_button_spec.rb
|
498
|
+
- vendor/webrat/spec/public/click_link_spec.rb
|
499
|
+
- vendor/webrat/spec/public/fill_in_spec.rb
|
500
|
+
- vendor/webrat/spec/public/locators
|
501
|
+
- vendor/webrat/spec/public/locators/field_by_xpath_spec.rb
|
502
|
+
- vendor/webrat/spec/public/locators/field_labeled_spec.rb
|
503
|
+
- vendor/webrat/spec/public/locators/field_with_id_spec.rb
|
504
|
+
- vendor/webrat/spec/public/matchers
|
505
|
+
- vendor/webrat/spec/public/matchers/contain_spec.rb
|
506
|
+
- vendor/webrat/spec/public/matchers/have_selector_spec.rb
|
507
|
+
- vendor/webrat/spec/public/matchers/have_tag_spec.rb
|
508
|
+
- vendor/webrat/spec/public/matchers/have_xpath_spec.rb
|
509
|
+
- vendor/webrat/spec/public/reload_spec.rb
|
510
|
+
- vendor/webrat/spec/public/save_and_open_spec.rb
|
511
|
+
- vendor/webrat/spec/public/select_date_spec.rb
|
512
|
+
- vendor/webrat/spec/public/select_datetime_spec.rb
|
513
|
+
- vendor/webrat/spec/public/select_spec.rb
|
514
|
+
- vendor/webrat/spec/public/select_time_spec.rb
|
515
|
+
- vendor/webrat/spec/public/selenium
|
516
|
+
- vendor/webrat/spec/public/selenium/application_server_factory_spec.rb
|
517
|
+
- vendor/webrat/spec/public/selenium/application_servers
|
518
|
+
- vendor/webrat/spec/public/selenium/application_servers/external_spec.rb
|
519
|
+
- vendor/webrat/spec/public/selenium/selenium_session_spec.rb
|
520
|
+
- vendor/webrat/spec/public/set_hidden_field_spec.rb
|
521
|
+
- vendor/webrat/spec/public/submit_form_spec.rb
|
522
|
+
- vendor/webrat/spec/public/visit_spec.rb
|
523
|
+
- vendor/webrat/spec/public/within_spec.rb
|
524
|
+
- vendor/webrat/spec/rcov.opts
|
525
|
+
- vendor/webrat/spec/spec.opts
|
526
|
+
- vendor/webrat/spec/spec_helper.rb
|
527
|
+
has_rdoc: false
|
528
|
+
homepage: http://github.com/winton/sum
|
529
|
+
post_install_message:
|
530
|
+
rdoc_options: []
|
531
|
+
|
532
|
+
require_paths:
|
533
|
+
- lib
|
534
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
535
|
+
requirements:
|
536
|
+
- - ">="
|
537
|
+
- !ruby/object:Gem::Version
|
538
|
+
version: "0"
|
539
|
+
version:
|
540
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
541
|
+
requirements:
|
542
|
+
- - ">="
|
543
|
+
- !ruby/object:Gem::Version
|
544
|
+
version: "0"
|
545
|
+
version:
|
546
|
+
requirements: []
|
547
|
+
|
548
|
+
rubyforge_project:
|
549
|
+
rubygems_version: 1.2.0
|
550
|
+
signing_key:
|
551
|
+
specification_version: 2
|
552
|
+
summary: A simple budgeting app built on Sinatra
|
553
|
+
test_files: []
|
554
|
+
|