capybara_simple_emailer 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ Y2RmNjA5NTJlMjQxYTYyNWI5N2UyMGY3ZTdkOWYyOWNkNzIzN2FlNQ==
5
+ data.tar.gz: !binary |-
6
+ NGU4Mjk2ZTI5MDUzODQwZTE5M2QzYTIxNDU3YjdmZmFjYmU1MGUwNw==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ OGMwOTIwMTg3ZjRjOTNlOTA2MzJkZjk1Yjc2MzU2NWJiMTI0ZmU3MjNhNDI4
10
+ YzczYjAzNzgxNzM0YWE2NjY4OTc2ZWUwZjA4MTkyNDY4Y2U4NTkyMjY2NTdh
11
+ MjMzODc2OGQzZDY0ZTg2MzZiYjYwMGI2Mzg1ZjYwMDg2ODcxZDM=
12
+ data.tar.gz: !binary |-
13
+ N2Q3OTA4OWNlNjJmODNiMDdjODdiOGVmNDM5N2RjNmE0MTk1MGQ2MjM0NWM5
14
+ OWM3YzI4NDQ3MDRjYTY2NzJlODk0NTkyZTY4NGVhNWM1ZWQyYjMxNTVkYjYz
15
+ NTI4YzUxNWY1YTUzMzhiYzgyM2QyMjE4Yjk4NGI0MWFkZjgyNzA=
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in capybara_simple_emailer.gemspec
4
+ gemspec
5
+
6
+ gem 'capybara'
7
+ gem 'selenium-webdriver'
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # CapybaraSimpleEmailer
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/mailer`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'capybara_simple_emailer'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install capybara_simple_emailer
22
+
23
+ ## Usage
24
+
25
+ ```ruby
26
+ params = {
27
+ from:"from.test.user@gmail.com",
28
+ pass:"testuser123",
29
+ to:"to.test.user1@gmail.com",
30
+ theme:"test.theme",
31
+ message:"test.message"
32
+ }
33
+ obj = CapybaraSimpleEmailer.new
34
+ obj.send_message(params)
35
+ ```
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "capybara_simple_emailer"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'capybara_simple_emailer/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "capybara_simple_emailer"
8
+ spec.version = CapybaraSimpleEmailer::VERSION
9
+ spec.authors = ["Andriy Nasadchuk"]
10
+ spec.email = ["andriy.nasa@gmail.com"]
11
+
12
+ spec.summary = %q{Send test messages to google emails via capybara}
13
+ spec.description = %q{Send test messages to google emails via capybara}
14
+ spec.homepage = ""
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.10"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ spec.add_development_dependency "rspec"
24
+ end
@@ -0,0 +1,3 @@
1
+ class CapybaraSimpleEmailer
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,45 @@
1
+ require "capybara_simple_emailer/version"
2
+ require "capybara"
3
+ require "capybara/dsl"
4
+
5
+ class CapybaraSimpleEmailer
6
+ include Capybara::DSL
7
+ Capybara.run_server = false
8
+ Capybara.current_driver = :selenium
9
+ Capybara.default_wait_time = 10
10
+ Capybara.app_host = 'https://mail.google.com'
11
+
12
+ # Send message from GMAIL account via capybara!
13
+ #
14
+ # Example:
15
+ # params = {
16
+ # from:"from.test.user@gmail.com",
17
+ # pass:"testuser123",
18
+ # to:"to.test.user1@gmail.com",
19
+ # theme:"test.theme",
20
+ # message:"test.message"
21
+ # }
22
+ # >> CapybaraSimpleEmailer.new.send_message(params)
23
+ #
24
+ # Arguments:
25
+ # params: (Hash)
26
+ # * required keys - from:, pass:, to:, theme:, message:
27
+ def send_message(params)
28
+ begin
29
+ visit('/')
30
+ fill_in 'Email', with: params[:from]
31
+ find("#next").click
32
+ fill_in 'Password', with: params[:pass]
33
+ find("#signIn").click
34
+ find('.T-I-KE.L3').click
35
+ find('.GS textarea').set(params[:to])
36
+ find('.aoT').set(params[:theme])
37
+ find('.GP').click
38
+ find('.Am.Al.editable').set(params[:message])
39
+ find('.T-I-atl.L3').click
40
+ return "Done"
41
+ rescue
42
+ return "Error"
43
+ end
44
+ end
45
+ end
metadata ADDED
@@ -0,0 +1,96 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capybara_simple_emailer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Andriy Nasadchuk
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-11-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Send test messages to google emails via capybara
56
+ email:
57
+ - andriy.nasa@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - .gitignore
63
+ - .rspec
64
+ - .travis.yml
65
+ - Gemfile
66
+ - README.md
67
+ - Rakefile
68
+ - bin/console
69
+ - bin/setup
70
+ - capybara_simple_emailer.gemspec
71
+ - lib/capybara_simple_emailer.rb
72
+ - lib/capybara_simple_emailer/version.rb
73
+ homepage: ''
74
+ licenses: []
75
+ metadata: {}
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ! '>='
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ! '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 2.4.8
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: Send test messages to google emails via capybara
96
+ test_files: []