lazycuke 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ YzYzOWU5NmYwYzQ2OTU1ZWNlNDBjZDJkMjczNjJmMTAwZTY2ODJkZQ==
5
+ data.tar.gz: !binary |-
6
+ MjEwODQwM2JjZjc3ZjBiOWRlNzdjYWQwNjUwMTQzZGZlNTM5MjQ3Mg==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ YmQ3NDRlNmRlOThiMjU0MmEyYTczZTY2ZWE5MzIzMTM0OWM5ZmZhMDBmMjM3
10
+ ZDNkZDg0NDU0NWQwYjIzMjM3NmUwN2E5Yzg2ZGI4OWJhMmJlNTVlNDYzZmJh
11
+ ZWFiYWI4NDlhZGUzMTQ1NmI3MmZjYjJjMmM4MzI0MjE2NDhmOWQ=
12
+ data.tar.gz: !binary |-
13
+ NmM0N2RiMzM1MTI3MWI4YjgxMWQ4OGQwNDNiZWQzOTY2ZTlmYTJlYjFmZjBh
14
+ OGY1YjFmYWNkZTRmNDgyYzQzY2RkZTg1OWE4MDBmMDEzY2JkMmYzYzFhMjE0
15
+ MTIwYWE2ZDFlNzAzYWI2YzI4Mzk3MDU1MTcwMGVkMDc3NDM1ZDE=
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in lazycuke.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Shashikant86
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Lazycuke
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'lazycuke'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install lazycuke
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it ( https://github.com/[my-github-username]/lazycuke/fork )
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/lazycuke.gemspec ADDED
@@ -0,0 +1,33 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'lazycuke/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "lazycuke"
8
+ spec.version = Lazycuke::VERSION
9
+ spec.authors = ["Shashikant86"]
10
+ spec.email = ["shashikant.jagtap@aol.co.uk"]
11
+ spec.summary = %q{BDD framework for Selenium, Appium, Cucumber and friends.}
12
+ spec.description = %q{Test automation framework to be used with Ruby Cucumber, Selenium and mobile automation framework Appium.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+ spec.date = Time.now
16
+ spec.platform = Gem::Platform::RUBY
17
+
18
+ spec.files = `git ls-files -z`.split("\x0")
19
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.7"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_dependency "thor"
26
+ spec.add_development_dependency "aruba"
27
+ spec.add_development_dependency "bluecloth"
28
+ spec.required_ruby_version = '>= 1.9.3'
29
+ spec.add_runtime_dependency 'cucumber', '~> 1.3', '>= 1.3.18'
30
+ spec.add_runtime_dependency 'selenium-webdriver', '~> 2.44.0', '>= 2.41.0'
31
+ spec.add_runtime_dependency 'appium_lib', '~> 4.1.0', '>= 4.0.0'
32
+ spec.post_install_message = "Thanks for installing lazycuke gem!"
33
+ end
@@ -0,0 +1,3 @@
1
+ module Lazycuke
2
+ VERSION = "0.0.1"
3
+ end
data/lib/lazycuke.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "lazycuke/version"
2
+
3
+ module Lazycuke
4
+ # Your code goes here...
5
+ end
metadata ADDED
@@ -0,0 +1,184 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lazycuke
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Shashikant86
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-03 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.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
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: thor
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: aruba
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: bluecloth
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ! '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ! '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: cucumber
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: '1.3'
90
+ - - ! '>='
91
+ - !ruby/object:Gem::Version
92
+ version: 1.3.18
93
+ type: :runtime
94
+ prerelease: false
95
+ version_requirements: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ~>
98
+ - !ruby/object:Gem::Version
99
+ version: '1.3'
100
+ - - ! '>='
101
+ - !ruby/object:Gem::Version
102
+ version: 1.3.18
103
+ - !ruby/object:Gem::Dependency
104
+ name: selenium-webdriver
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ version: 2.44.0
110
+ - - ! '>='
111
+ - !ruby/object:Gem::Version
112
+ version: 2.41.0
113
+ type: :runtime
114
+ prerelease: false
115
+ version_requirements: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ~>
118
+ - !ruby/object:Gem::Version
119
+ version: 2.44.0
120
+ - - ! '>='
121
+ - !ruby/object:Gem::Version
122
+ version: 2.41.0
123
+ - !ruby/object:Gem::Dependency
124
+ name: appium_lib
125
+ requirement: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - ~>
128
+ - !ruby/object:Gem::Version
129
+ version: 4.1.0
130
+ - - ! '>='
131
+ - !ruby/object:Gem::Version
132
+ version: 4.0.0
133
+ type: :runtime
134
+ prerelease: false
135
+ version_requirements: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ~>
138
+ - !ruby/object:Gem::Version
139
+ version: 4.1.0
140
+ - - ! '>='
141
+ - !ruby/object:Gem::Version
142
+ version: 4.0.0
143
+ description: Test automation framework to be used with Ruby Cucumber, Selenium and
144
+ mobile automation framework Appium.
145
+ email:
146
+ - shashikant.jagtap@aol.co.uk
147
+ executables: []
148
+ extensions: []
149
+ extra_rdoc_files: []
150
+ files:
151
+ - .gitignore
152
+ - Gemfile
153
+ - LICENSE.txt
154
+ - README.md
155
+ - Rakefile
156
+ - lazycuke.gemspec
157
+ - lib/lazycuke.rb
158
+ - lib/lazycuke/version.rb
159
+ homepage: ''
160
+ licenses:
161
+ - MIT
162
+ metadata: {}
163
+ post_install_message: Thanks for installing lazycuke gem!
164
+ rdoc_options: []
165
+ require_paths:
166
+ - lib
167
+ required_ruby_version: !ruby/object:Gem::Requirement
168
+ requirements:
169
+ - - ! '>='
170
+ - !ruby/object:Gem::Version
171
+ version: 1.9.3
172
+ required_rubygems_version: !ruby/object:Gem::Requirement
173
+ requirements:
174
+ - - ! '>='
175
+ - !ruby/object:Gem::Version
176
+ version: '0'
177
+ requirements: []
178
+ rubyforge_project:
179
+ rubygems_version: 2.4.5
180
+ signing_key:
181
+ specification_version: 4
182
+ summary: BDD framework for Selenium, Appium, Cucumber and friends.
183
+ test_files: []
184
+ has_rdoc: