surf-calabash 0.0.2

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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/surf-calabash.rb +27 -0
  3. metadata +45 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 96abc80aeaf82cfd0a8845db36eaae63fa190d3f
4
+ data.tar.gz: f88a1f78ac7cc45e804bb2dac47bee87025876db
5
+ SHA512:
6
+ metadata.gz: 0ad28fcc896865a8241b81a6a5ae6264816f014e8e8689dff3e7e6d4415376441937a3abf55b29d0445ec30ea6a716d5ae20c278250333ec253d9b1b52289548
7
+ data.tar.gz: fbacd97dd6d3bda9369d9bc4da0c8e5be22521201ca7818ad3cd914e97ab5eae057b910656521b4c13ea7c7d0d262a603f1cdb6c7f6750bc7756d44309ecd528
@@ -0,0 +1,27 @@
1
+ class Surf_Calabash
2
+ def self.hi
3
+ puts "It's surf-calabash gem"
4
+ end
5
+
6
+ def gen
7
+ if File.exists?(@hierarchy)
8
+ puts "Hyerarchy is already exists. Stopping..."
9
+ exit 1
10
+ end
11
+ msg("Question") do
12
+ puts "I'm about to create a subdirectory called features."
13
+ puts "features will contain all your calabash tests."
14
+ puts "Please hit return to confirm that's what you want."
15
+ end
16
+ exit 2 unless STDIN.gets.chomp == ''
17
+
18
+ FileUtils.cp_r(@source_dir, @hyerarchy)
19
+
20
+ msg("Info") do
21
+ puts "hyerarchy directories are created. \n"
22
+ end
23
+
24
+ end
25
+
26
+
27
+ end
metadata ADDED
@@ -0,0 +1,45 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: surf-calabash
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Igor Tolubaev
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-01-07 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: calabash-android + calabash-cucumber with x-platform implementation and
14
+ console which works with page-object
15
+ email: stereotype013@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/surf-calabash.rb
21
+ homepage: http://rubygems.org/gems/surf-calabash
22
+ licenses:
23
+ - OpenSSL
24
+ metadata: {}
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ required_rubygems_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ requirements: []
40
+ rubyforge_project:
41
+ rubygems_version: 2.6.8
42
+ signing_key:
43
+ specification_version: 4
44
+ summary: surf-calabash gem
45
+ test_files: []