cuesmash 0.1.3 → 0.1.4
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 +4 -4
- data/.cuesmash.yml +3 -0
- data/Gemfile.lock +6 -6
- data/cuesmash.gemspec +9 -9
- data/lib/cuesmash/command.rb +6 -4
- data/lib/cuesmash/cucumber.rb +7 -1
- data/lib/cuesmash/start.rb +52 -8
- data/spec/command_spec.rb +7 -7
- data/spec/cucumber_spec.rb +26 -11
- data/spec/iosapp_spec.rb +0 -4
- data/spec/spec_helper.rb +10 -0
- metadata +59 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e76b8334678407b3afc1cf9ba36d41f70a70b603
|
4
|
+
data.tar.gz: 6153e458f4807b9e316eef0e526315185df23e3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 425d2350f0c2eaf734c87d69685a37cdee347109e70ad5257a4633c55c4874399bb7c8d61d0d870abc9b72fe4c9a81a5b25a177ad14f06c9c10a0b08d6933666
|
7
|
+
data.tar.gz: adb1d341a5176e0c0dd2434251251df5a285c48980b54a65f64b3e0e2afca53d9d7044f76857dfea377c2da38981e19e6cedcfcc1d3c2dd69fdd7ae4047a7235
|
data/.cuesmash.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cuesmash (0.1.
|
4
|
+
cuesmash (0.1.4)
|
5
5
|
CFPropertyList (~> 2.2.8)
|
6
6
|
thor (~> 0.19.1)
|
7
7
|
xcpretty (~> 0.1.7)
|
@@ -69,9 +69,9 @@ PLATFORMS
|
|
69
69
|
|
70
70
|
DEPENDENCIES
|
71
71
|
bundler (~> 1.3)
|
72
|
-
byebug
|
72
|
+
byebug (~> 3.5.1)
|
73
73
|
cuesmash!
|
74
|
-
guard-rspec
|
75
|
-
pry
|
76
|
-
rake
|
77
|
-
rspec
|
74
|
+
guard-rspec (~> 4.3.1)
|
75
|
+
pry (~> 0.10.1)
|
76
|
+
rake (~> 10.3.2)
|
77
|
+
rspec (~> 3.1.0)
|
data/cuesmash.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "cuesmash"
|
7
|
-
spec.version = "0.1.
|
7
|
+
spec.version = "0.1.4"
|
8
8
|
spec.authors = ["Alex Fish", "Jarod McBride"]
|
9
9
|
spec.email = ["fish@ustwo.co.uk", "jarod@ustwo.com"]
|
10
10
|
spec.description = "A gift for Juan"
|
@@ -20,15 +20,15 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.required_ruby_version = '>= 2.1.0'
|
21
21
|
|
22
22
|
spec.add_development_dependency "bundler", "~> 1.3"
|
23
|
-
spec.add_development_dependency
|
24
|
-
spec.add_development_dependency
|
25
|
-
spec.add_development_dependency
|
26
|
-
spec.add_development_dependency
|
27
|
-
spec.add_development_dependency
|
23
|
+
spec.add_development_dependency 'rake', '~> 10.3', '>= 10.3.2'
|
24
|
+
spec.add_development_dependency 'rspec', '~> 3.1', '>= 3.1.0'
|
25
|
+
spec.add_development_dependency 'guard-rspec', '~> 4.3', '>= 4.3.1'
|
26
|
+
spec.add_development_dependency 'pry', '~> 0.10', '>= 0.10.1'
|
27
|
+
spec.add_development_dependency 'byebug', '~> 3.5', '>= 3.5.1'
|
28
28
|
|
29
|
-
spec.add_runtime_dependency
|
30
|
-
spec.add_runtime_dependency
|
31
|
-
spec.add_runtime_dependency
|
29
|
+
spec.add_runtime_dependency 'CFPropertyList', '~> 2.2', '>= 2.2.8'
|
30
|
+
spec.add_runtime_dependency 'thor', '~> 0.19', '>= 0.19.1'
|
31
|
+
spec.add_runtime_dependency 'xcpretty', '~> 0.1', '>= 0.1.7'
|
32
32
|
|
33
33
|
spec.executables << "cuesmash"
|
34
34
|
end
|
data/lib/cuesmash/command.rb
CHANGED
@@ -29,9 +29,10 @@ module Cuesmash
|
|
29
29
|
# @param travis [Boolean]
|
30
30
|
# @param app [IosApp Object]
|
31
31
|
# @param profile [String]
|
32
|
+
# @param quiet [String]
|
32
33
|
#
|
33
34
|
# @return [type] [description]
|
34
|
-
def execute(device:, os:, server:, tags:, scheme:, debug: false, format: nil, output: nil, travis: nil, app:, profile:)
|
35
|
+
def execute(device:, os:, server:, tags:, scheme:, debug: false, format: nil, output: nil, travis: nil, app:, profile:, quiet: false)
|
35
36
|
|
36
37
|
if debug
|
37
38
|
Logger.level = ::Logger::DEBUG
|
@@ -51,7 +52,7 @@ module Cuesmash
|
|
51
52
|
app_server.start_server
|
52
53
|
|
53
54
|
# Run the tests
|
54
|
-
run_tests(os, tags, profile, format, output)
|
55
|
+
run_tests(ios: os, tags: tags, profile: profile, format: format, output: output, quiet: quiet)
|
55
56
|
|
56
57
|
# Stop the Appium server
|
57
58
|
# app_server.stop_server
|
@@ -78,9 +79,10 @@ module Cuesmash
|
|
78
79
|
# @param profile [String] cucumber profile to use
|
79
80
|
# @param format [String] The output format for the cucumber tests, Optional
|
80
81
|
# @param output [String] The path to the output directory to output test reports to, Optional
|
82
|
+
# @param quiet [Boolean] quiet flag for cucumber
|
81
83
|
#
|
82
|
-
def run_tests(ios
|
83
|
-
cucumber = Cuesmash::Cucumber.new(ios, tags, profile)
|
84
|
+
def run_tests(ios:, tags:, profile:, format: nil, output: nil, quiet: false)
|
85
|
+
cucumber = Cuesmash::Cucumber.new(ios, tags, profile, quiet)
|
84
86
|
cucumber.format = format if format
|
85
87
|
cucumber.output = output if output
|
86
88
|
cucumber.test
|
data/lib/cuesmash/cucumber.rb
CHANGED
@@ -20,16 +20,21 @@ module Cuesmash
|
|
20
20
|
# Public: the cucumber profile to use for the tests
|
21
21
|
attr_accessor :profile
|
22
22
|
|
23
|
+
# Public: the cucumber quiet flag
|
24
|
+
attr_accessor :quiet
|
25
|
+
|
23
26
|
#
|
24
27
|
# Create a new instance of Cucumber
|
25
28
|
# @param ios [String] The iOS version cucumber will run
|
26
29
|
# @param tags [Array] The tags cucumber will run with
|
27
30
|
# @param profile [String] the cucumber profile to use for the tests
|
31
|
+
# @param quiet [Boolean]
|
28
32
|
#
|
29
|
-
def initialize(ios, tags, profile)
|
33
|
+
def initialize(ios, tags, profile, quiet)
|
30
34
|
@ios = ios
|
31
35
|
@tags = tags
|
32
36
|
@profile = profile
|
37
|
+
@quiet = quiet
|
33
38
|
end
|
34
39
|
|
35
40
|
#
|
@@ -94,6 +99,7 @@ module Cuesmash
|
|
94
99
|
command_string += " --out #{self.output}" if self.output
|
95
100
|
command_string += " --profile #{self.profile}" if self.profile
|
96
101
|
command_string += @tags.to_a.empty? ? "" : tag_arguments
|
102
|
+
command_string += " --quiet" if self.quiet
|
97
103
|
command_string += " -c"
|
98
104
|
|
99
105
|
Logger.debug "cucumber command == #{command_string}"
|
data/lib/cuesmash/start.rb
CHANGED
@@ -27,22 +27,19 @@ module Cuesmash
|
|
27
27
|
--travis_ci -c BOOLEAN turn on settings for building on Travis CI\n
|
28
28
|
--server -r BOOLEAN start up server (requires sinatra app in the project directory)\n
|
29
29
|
--profile -p which cucumber.yml profile to use\n
|
30
|
+
--quiet -q BOOLEAN cucumber quiet mode
|
30
31
|
LONGDESC
|
31
32
|
method_option :scheme, type: :string, aliases: "-s", desc: "the Xcode scheme to build"
|
32
33
|
method_option :tags, type: :array, aliases: "-t", desc: "the tags to pass to cucumber, for multiple tags pass one per tag"
|
33
34
|
method_option :debug, type: :boolean, default: false, aliases: "-d", desc: "turn on debug output"
|
34
35
|
method_option :travis_ci, type: :boolean, default: false, aliases: "-c", desc: "turn on settings for building on Travis CI"
|
35
36
|
method_option :profile, type: :string, aliases: "-p", desc: "which cucumber.yml profile to use"
|
37
|
+
method_option :quiet, type: :boolean, aliases: "-q", desc: "cucumber quiet mode"
|
36
38
|
# method_option :server, type: :string, aliases: "-r", desc: ""
|
37
39
|
def test
|
38
40
|
|
39
|
-
#
|
40
|
-
|
41
|
-
config = YAML.load_file(CONFIG_FILE) if File.exists?(CONFIG_FILE)
|
42
|
-
else
|
43
|
-
say "There is no '.cuesmash.yml' file. Please create one and try again.", :red
|
44
|
-
return
|
45
|
-
end
|
41
|
+
# get the cuesmash.yml config
|
42
|
+
config = load_config
|
46
43
|
|
47
44
|
# Create new IosApp object
|
48
45
|
app = IosApp.new(file_name: options[:scheme], travis_build: options[:travis_ci])
|
@@ -55,7 +52,7 @@ module Cuesmash
|
|
55
52
|
config['devices'].each do |device, oses|
|
56
53
|
oses.each do |os|
|
57
54
|
say "\n============================\ntesting iOS #{os} on #{device}", :green
|
58
|
-
Cuesmash::Command.execute(device: device, os: os, server: options[:server], tags: options[:tags], scheme: options[:scheme], travis: options[:travis_ci], debug: options[:debug], app: app, profile: options[:profile])
|
55
|
+
Cuesmash::Command.execute(device: device, os: os, server: options[:server], tags: options[:tags], scheme: options[:scheme], travis: options[:travis_ci], debug: options[:debug], app: app, profile: options[:profile], quiet: options[:quiet])
|
59
56
|
end
|
60
57
|
end # device each
|
61
58
|
|
@@ -66,5 +63,52 @@ module Cuesmash
|
|
66
63
|
FileUtils.remove_entry app.tmp_dir
|
67
64
|
end
|
68
65
|
end # test
|
66
|
+
|
67
|
+
desc "build OPTIONS", "compile the app and create appium.txt to use for arc"
|
68
|
+
long_desc <<-LONGDESC
|
69
|
+
--scheme -s the Xcode scheme to build\n
|
70
|
+
LONGDESC
|
71
|
+
method_option :scheme, type: :string, aliases: "-s", desc: "the Xcode scheme to build"
|
72
|
+
def build
|
73
|
+
|
74
|
+
# get the cuesmash.yml config
|
75
|
+
config = load_config
|
76
|
+
|
77
|
+
# if no default then bail
|
78
|
+
if config['default'] == nil
|
79
|
+
say "add a default device and os version to the .cuesmash.yml", :red
|
80
|
+
return
|
81
|
+
end
|
82
|
+
|
83
|
+
# Create new IosApp object
|
84
|
+
app = IosApp.new(file_name: options[:scheme])
|
85
|
+
|
86
|
+
# Compile the project
|
87
|
+
compiler = Cuesmash::Compiler.new(options[:scheme], app.tmp_dir)
|
88
|
+
compiler.compile
|
89
|
+
|
90
|
+
# create the appium text file
|
91
|
+
appium = AppiumText.new(platform_name: "iOS", device_name: config['default']['os'], platform_version: config['default']['version'].to_s, app: app.app_path)
|
92
|
+
appium.execute
|
93
|
+
|
94
|
+
say "\nYour build is available at #{app.app_path}", :green
|
95
|
+
end # build
|
96
|
+
|
97
|
+
no_commands do
|
98
|
+
#
|
99
|
+
# load up the .cuesmash.yml config. If we don't find one then bail
|
100
|
+
#
|
101
|
+
# @return [YAML] yaml loaded from the config_file
|
102
|
+
def load_config
|
103
|
+
|
104
|
+
if File.exists?(CONFIG_FILE)
|
105
|
+
config = YAML.load_file(CONFIG_FILE) if File.exists?(CONFIG_FILE)
|
106
|
+
else
|
107
|
+
say "There is no '.cuesmash.yml' file. Please create one and try again.\n", :red
|
108
|
+
return
|
109
|
+
end
|
110
|
+
config
|
111
|
+
end # end load_config
|
112
|
+
end # no_commands
|
69
113
|
end # Start class
|
70
114
|
end # module Cuesmash
|
data/spec/command_spec.rb
CHANGED
@@ -56,13 +56,13 @@ describe Cuesmash::Command do
|
|
56
56
|
end
|
57
57
|
|
58
58
|
it "should set the cucumber ios version" do
|
59
|
-
Cuesmash::Cucumber.should_receive(:new).with("ios", anything, anything)
|
60
|
-
Cuesmash::Command.run_tests("ios", "tags", "profile")
|
59
|
+
Cuesmash::Cucumber.should_receive(:new).with("ios", anything, anything, anything)
|
60
|
+
Cuesmash::Command.run_tests(ios: "ios", tags: "tags", profile: "profile", quiet: true)
|
61
61
|
end
|
62
62
|
|
63
63
|
it "should set the cucumber tags" do
|
64
|
-
Cuesmash::Cucumber.should_receive(:new).with(anything, "tags", anything)
|
65
|
-
Cuesmash::Command.run_tests("ios", "tags", "profile")
|
64
|
+
Cuesmash::Cucumber.should_receive(:new).with(anything, "tags", anything, anything)
|
65
|
+
Cuesmash::Command.run_tests(ios: "ios", tags: "tags", profile: "profile", quiet: true)
|
66
66
|
end
|
67
67
|
|
68
68
|
it "should set the format" do
|
@@ -70,7 +70,7 @@ describe Cuesmash::Command do
|
|
70
70
|
Cuesmash::Cucumber.stub(:new){@cucumber}
|
71
71
|
|
72
72
|
@cucumber.should_receive(:format=)
|
73
|
-
Cuesmash::Command.run_tests(nil, nil, nil, "format")
|
73
|
+
Cuesmash::Command.run_tests(ios: nil, tags: nil, profile: nil, format: "format", quiet: anything)
|
74
74
|
end
|
75
75
|
|
76
76
|
it "should set the output" do
|
@@ -78,12 +78,12 @@ describe Cuesmash::Command do
|
|
78
78
|
Cuesmash::Cucumber.stub(:new){@cucumber}
|
79
79
|
|
80
80
|
@cucumber.should_receive(:output=)
|
81
|
-
Cuesmash::Command.run_tests(nil, nil, nil, nil, "output")
|
81
|
+
Cuesmash::Command.run_tests(ios: nil, tags: nil, profile: nil, format: nil, output: "output", quiet: anything)
|
82
82
|
end
|
83
83
|
|
84
84
|
it "should start the tests" do
|
85
85
|
@mock.should_receive(:test)
|
86
|
-
Cuesmash::Command.run_tests("ios", "tags", "profile")
|
86
|
+
Cuesmash::Command.run_tests(ios: "ios", tags: "tags", profile: "profile", quiet: true)
|
87
87
|
end
|
88
88
|
|
89
89
|
end # describe "when running the cucumber tests"
|
data/spec/cucumber_spec.rb
CHANGED
@@ -15,7 +15,7 @@ describe Cuesmash::Cucumber do
|
|
15
15
|
wait.stub(:join)
|
16
16
|
Open3.stub(:popen3).and_yield(nil, nil, nil, wait)
|
17
17
|
|
18
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil)
|
18
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
19
19
|
@cucumber.stub(:command)
|
20
20
|
end
|
21
21
|
|
@@ -29,62 +29,77 @@ describe Cuesmash::Cucumber do
|
|
29
29
|
describe "when generating the command" do
|
30
30
|
|
31
31
|
it "should not add the ios version if missing" do
|
32
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil)
|
32
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
33
33
|
@cucumber.stub(:tag_arguments)
|
34
34
|
|
35
35
|
expect(@cucumber.instance_eval{command}).not_to match(/DEVICE_TARGET/)
|
36
36
|
end
|
37
37
|
|
38
38
|
it "should add the format" do
|
39
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil)
|
39
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
40
40
|
@cucumber.format = "test-format"
|
41
41
|
|
42
42
|
expect(@cucumber.instance_eval{command}).to match(/--format test-format/)
|
43
43
|
end
|
44
44
|
|
45
45
|
it "should not add the format if missing" do
|
46
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil)
|
46
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
47
47
|
|
48
48
|
expect(@cucumber.instance_eval{command}).not_to match(/--format/)
|
49
49
|
end
|
50
50
|
|
51
51
|
it "should add the output" do
|
52
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil)
|
52
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
53
53
|
@cucumber.output = "test-output"
|
54
54
|
|
55
55
|
expect(@cucumber.instance_eval{command}).to match(/--out test-output/)
|
56
56
|
end
|
57
57
|
|
58
58
|
it "should not add the output if missing" do
|
59
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil)
|
59
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
60
60
|
|
61
61
|
expect(@cucumber.instance_eval{command}).not_to match(/--out/)
|
62
62
|
end
|
63
63
|
|
64
64
|
it "should add the tags" do
|
65
|
-
@cucumber = Cuesmash::Cucumber.new(nil, ["tag1", "tag2"], nil)
|
65
|
+
@cucumber = Cuesmash::Cucumber.new(nil, ["tag1", "tag2"], nil, nil)
|
66
66
|
expect(@cucumber.instance_eval{command}).to match(/--tags tag1 --tags tag2/)
|
67
67
|
end
|
68
68
|
|
69
69
|
it "should not add tags if missing" do
|
70
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil)
|
70
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
71
71
|
expect(@cucumber.instance_eval{command}).not_to match(/--tags/)
|
72
72
|
end
|
73
73
|
|
74
74
|
it "should add the profile" do
|
75
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, "test")
|
75
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, "test", nil)
|
76
76
|
expect(@cucumber.instance_eval{command}).to match(/--profile test/)
|
77
77
|
end
|
78
78
|
|
79
79
|
it "should not add tags if missing" do
|
80
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil)
|
80
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
81
81
|
expect(@cucumber.instance_eval{command}).not_to match(/--profile/)
|
82
82
|
end
|
83
83
|
|
84
84
|
it "should add the color flag" do
|
85
|
-
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil)
|
85
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
86
86
|
expect(@cucumber.instance_eval{command}).to match(/-c/)
|
87
87
|
end
|
88
88
|
|
89
|
+
it "should not add quiet if missing" do
|
90
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, nil)
|
91
|
+
expect(@cucumber.instance_eval{command}).not_to match(/--quiet/)
|
92
|
+
end
|
93
|
+
|
94
|
+
it "should not add quiet if false" do
|
95
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, false)
|
96
|
+
expect(@cucumber.instance_eval{command}).not_to match(/--quiet/)
|
97
|
+
end
|
98
|
+
|
99
|
+
it "should add the quiet flag" do
|
100
|
+
@cucumber = Cuesmash::Cucumber.new(nil, nil, nil, true)
|
101
|
+
expect(@cucumber.instance_eval{command}).to match(/--quiet/)
|
102
|
+
end
|
103
|
+
|
89
104
|
end
|
90
105
|
end
|
data/spec/iosapp_spec.rb
CHANGED
@@ -2,10 +2,6 @@ require 'spec_helper'
|
|
2
2
|
|
3
3
|
describe Cuesmash::IosApp do
|
4
4
|
describe "when creating a new instance" do
|
5
|
-
# before(:all) do
|
6
|
-
# Dir.stub(:mktmpdir) { "/tmp" }
|
7
|
-
# @iosapp = Cuesmash::IosApp.new(file_name: "MyApp")
|
8
|
-
# end
|
9
5
|
|
10
6
|
it "should have an app_dir instance" do
|
11
7
|
stub_dir
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cuesmash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Fish
|
@@ -29,77 +29,110 @@ dependencies:
|
|
29
29
|
name: rake
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
|
+
- - "~>"
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '10.3'
|
32
35
|
- - ">="
|
33
36
|
- !ruby/object:Gem::Version
|
34
|
-
version:
|
37
|
+
version: 10.3.2
|
35
38
|
type: :development
|
36
39
|
prerelease: false
|
37
40
|
version_requirements: !ruby/object:Gem::Requirement
|
38
41
|
requirements:
|
42
|
+
- - "~>"
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '10.3'
|
39
45
|
- - ">="
|
40
46
|
- !ruby/object:Gem::Version
|
41
|
-
version:
|
47
|
+
version: 10.3.2
|
42
48
|
- !ruby/object:Gem::Dependency
|
43
49
|
name: rspec
|
44
50
|
requirement: !ruby/object:Gem::Requirement
|
45
51
|
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.1'
|
46
55
|
- - ">="
|
47
56
|
- !ruby/object:Gem::Version
|
48
|
-
version:
|
57
|
+
version: 3.1.0
|
49
58
|
type: :development
|
50
59
|
prerelease: false
|
51
60
|
version_requirements: !ruby/object:Gem::Requirement
|
52
61
|
requirements:
|
62
|
+
- - "~>"
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '3.1'
|
53
65
|
- - ">="
|
54
66
|
- !ruby/object:Gem::Version
|
55
|
-
version:
|
67
|
+
version: 3.1.0
|
56
68
|
- !ruby/object:Gem::Dependency
|
57
69
|
name: guard-rspec
|
58
70
|
requirement: !ruby/object:Gem::Requirement
|
59
71
|
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '4.3'
|
60
75
|
- - ">="
|
61
76
|
- !ruby/object:Gem::Version
|
62
|
-
version:
|
77
|
+
version: 4.3.1
|
63
78
|
type: :development
|
64
79
|
prerelease: false
|
65
80
|
version_requirements: !ruby/object:Gem::Requirement
|
66
81
|
requirements:
|
82
|
+
- - "~>"
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '4.3'
|
67
85
|
- - ">="
|
68
86
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
87
|
+
version: 4.3.1
|
70
88
|
- !ruby/object:Gem::Dependency
|
71
89
|
name: pry
|
72
90
|
requirement: !ruby/object:Gem::Requirement
|
73
91
|
requirements:
|
92
|
+
- - "~>"
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0.10'
|
74
95
|
- - ">="
|
75
96
|
- !ruby/object:Gem::Version
|
76
|
-
version:
|
97
|
+
version: 0.10.1
|
77
98
|
type: :development
|
78
99
|
prerelease: false
|
79
100
|
version_requirements: !ruby/object:Gem::Requirement
|
80
101
|
requirements:
|
102
|
+
- - "~>"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0.10'
|
81
105
|
- - ">="
|
82
106
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
107
|
+
version: 0.10.1
|
84
108
|
- !ruby/object:Gem::Dependency
|
85
109
|
name: byebug
|
86
110
|
requirement: !ruby/object:Gem::Requirement
|
87
111
|
requirements:
|
112
|
+
- - "~>"
|
113
|
+
- !ruby/object:Gem::Version
|
114
|
+
version: '3.5'
|
88
115
|
- - ">="
|
89
116
|
- !ruby/object:Gem::Version
|
90
|
-
version:
|
117
|
+
version: 3.5.1
|
91
118
|
type: :development
|
92
119
|
prerelease: false
|
93
120
|
version_requirements: !ruby/object:Gem::Requirement
|
94
121
|
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '3.5'
|
95
125
|
- - ">="
|
96
126
|
- !ruby/object:Gem::Version
|
97
|
-
version:
|
127
|
+
version: 3.5.1
|
98
128
|
- !ruby/object:Gem::Dependency
|
99
129
|
name: CFPropertyList
|
100
130
|
requirement: !ruby/object:Gem::Requirement
|
101
131
|
requirements:
|
102
132
|
- - "~>"
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '2.2'
|
135
|
+
- - ">="
|
103
136
|
- !ruby/object:Gem::Version
|
104
137
|
version: 2.2.8
|
105
138
|
type: :runtime
|
@@ -107,6 +140,9 @@ dependencies:
|
|
107
140
|
version_requirements: !ruby/object:Gem::Requirement
|
108
141
|
requirements:
|
109
142
|
- - "~>"
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '2.2'
|
145
|
+
- - ">="
|
110
146
|
- !ruby/object:Gem::Version
|
111
147
|
version: 2.2.8
|
112
148
|
- !ruby/object:Gem::Dependency
|
@@ -114,6 +150,9 @@ dependencies:
|
|
114
150
|
requirement: !ruby/object:Gem::Requirement
|
115
151
|
requirements:
|
116
152
|
- - "~>"
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '0.19'
|
155
|
+
- - ">="
|
117
156
|
- !ruby/object:Gem::Version
|
118
157
|
version: 0.19.1
|
119
158
|
type: :runtime
|
@@ -121,6 +160,9 @@ dependencies:
|
|
121
160
|
version_requirements: !ruby/object:Gem::Requirement
|
122
161
|
requirements:
|
123
162
|
- - "~>"
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '0.19'
|
165
|
+
- - ">="
|
124
166
|
- !ruby/object:Gem::Version
|
125
167
|
version: 0.19.1
|
126
168
|
- !ruby/object:Gem::Dependency
|
@@ -128,6 +170,9 @@ dependencies:
|
|
128
170
|
requirement: !ruby/object:Gem::Requirement
|
129
171
|
requirements:
|
130
172
|
- - "~>"
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '0.1'
|
175
|
+
- - ">="
|
131
176
|
- !ruby/object:Gem::Version
|
132
177
|
version: 0.1.7
|
133
178
|
type: :runtime
|
@@ -135,6 +180,9 @@ dependencies:
|
|
135
180
|
version_requirements: !ruby/object:Gem::Requirement
|
136
181
|
requirements:
|
137
182
|
- - "~>"
|
183
|
+
- !ruby/object:Gem::Version
|
184
|
+
version: '0.1'
|
185
|
+
- - ">="
|
138
186
|
- !ruby/object:Gem::Version
|
139
187
|
version: 0.1.7
|
140
188
|
description: A gift for Juan
|