capybara_simple_emailer 0.1.0 → 0.1.1

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Y2RmNjA5NTJlMjQxYTYyNWI5N2UyMGY3ZTdkOWYyOWNkNzIzN2FlNQ==
4
+ ZTMxZWFkOTU3MjY3ODhiYzUyOTQ0ZmU5NjNkNGRiYTI0MTlmMThhZA==
5
5
  data.tar.gz: !binary |-
6
- NGU4Mjk2ZTI5MDUzODQwZTE5M2QzYTIxNDU3YjdmZmFjYmU1MGUwNw==
6
+ NzEwZjRhMjY5ZmVjNjZhNWNiODYyM2ZlOTBiNDQ1MTIwNDJjZDY4OA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- OGMwOTIwMTg3ZjRjOTNlOTA2MzJkZjk1Yjc2MzU2NWJiMTI0ZmU3MjNhNDI4
10
- YzczYjAzNzgxNzM0YWE2NjY4OTc2ZWUwZjA4MTkyNDY4Y2U4NTkyMjY2NTdh
11
- MjMzODc2OGQzZDY0ZTg2MzZiYjYwMGI2Mzg1ZjYwMDg2ODcxZDM=
9
+ Yzg3ZWY5YzUwNDdlNTYyNGM4ZGI1MjNlMjkyMjMzZDg2NDU3YWI5YjY1N2Nl
10
+ MjFlOTE3YmZmNDZhNGUwNzFiODNlNjBlNDhkZWYwYTlmYmExNjU5ODA4YmZh
11
+ MTdhNzIzYmFlYWQ2NzhjZmFkODdjZDhlMDYwZTdlNzRjNzk3ZWE=
12
12
  data.tar.gz: !binary |-
13
- N2Q3OTA4OWNlNjJmODNiMDdjODdiOGVmNDM5N2RjNmE0MTk1MGQ2MjM0NWM5
14
- OWM3YzI4NDQ3MDRjYTY2NzJlODk0NTkyZTY4NGVhNWM1ZWQyYjMxNTVkYjYz
15
- NTI4YzUxNWY1YTUzMzhiYzgyM2QyMjE4Yjk4NGI0MWFkZjgyNzA=
13
+ MjU3YmRlYjVhMjAxM2E0OWM2OWYwZDFiNjcxNmMzMGZkM2VhNjQ0NDhhNWUz
14
+ NDc1MTM4ODI1ZTZkYjEyYzdhNzYxYzJjMTVkYTM5NmIzYzZjMGMwMTRiYjhi
15
+ ZTYxMmIzMjAwYTVhZmVjYjdkYzExZjU5ZWZkZTcxMjQzYTFlOTI=
data/README.md CHANGED
@@ -23,13 +23,19 @@ Or install it yourself as:
23
23
  ## Usage
24
24
 
25
25
  ```ruby
26
- params = {
26
+ // test.rb
27
+ require "capybara_simple_emailer"
28
+
29
+ class TestClass
30
+ def test
31
+ params = {
27
32
  from:"from.test.user@gmail.com",
28
33
  pass:"testuser123",
29
34
  to:"to.test.user1@gmail.com",
30
35
  theme:"test.theme",
31
36
  message:"test.message"
32
37
  }
33
- obj = CapybaraSimpleEmailer.new
34
- obj.send_message(params)
38
+ CapybaraSimpleEmailer.new.send_message(params)
39
+ end
40
+ end
35
41
  ```
@@ -12,6 +12,10 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Send test messages to google emails via capybara}
13
13
  spec.description = %q{Send test messages to google emails via capybara}
14
14
  spec.homepage = ""
15
+ spec.license = "MIT"
16
+
17
+ spec.add_dependency 'capybara'
18
+ spec.add_dependency 'selenium-webdriver'
15
19
 
16
20
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
21
  spec.bindir = "exe"
@@ -1,3 +1,3 @@
1
1
  class CapybaraSimpleEmailer
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capybara_simple_emailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andriy Nasadchuk
@@ -10,6 +10,34 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2015-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: capybara
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ! '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: selenium-webdriver
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
13
41
  - !ruby/object:Gem::Dependency
14
42
  name: bundler
15
43
  requirement: !ruby/object:Gem::Requirement
@@ -71,7 +99,8 @@ files:
71
99
  - lib/capybara_simple_emailer.rb
72
100
  - lib/capybara_simple_emailer/version.rb
73
101
  homepage: ''
74
- licenses: []
102
+ licenses:
103
+ - MIT
75
104
  metadata: {}
76
105
  post_install_message:
77
106
  rdoc_options: []