adb-peco 2.0.2 → 2.0.3

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,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4d00e4b8ed32e7aab2099c6fe087233ff128ab07
4
- data.tar.gz: 3eb3b7235c445410a82dc51e0f75401dbb7e9b7a
2
+ SHA256:
3
+ metadata.gz: c1dac9666d8c2c254ff663b4d88a0d43bd571a8e7b596bfffa025f0c8444c4d7
4
+ data.tar.gz: 3d024bb2cbc621787bdaa0b79b22acd40ce5e651d176517911182a8a62838a24
5
5
  SHA512:
6
- metadata.gz: c20b3effb17481ecdc6e187a5ab5deaa687c55ef61beb0c0953bf66b10e0734ea679e6f314116ac17e9b61f304d59751517bbf6dc68b2abfa52b69ac9b57e8de
7
- data.tar.gz: d6951b77c40576ef49179fad675e96eb2d4406d0aa238bfed11c9a5d66e44a008d773681daaedc03956be1c9c8a8a9581d21a90901e3bfd92c0050d7139b16be
6
+ metadata.gz: 5200dd45e120ce12135e6ac0271367859ec17181c20d5258ea8150d732c7d0f078220d94a3fac3f17ba207300ce5db26fecc9e23b81ccba171d24976cc0d3148
7
+ data.tar.gz: 2289c11b11c3b4709e43c59611b7deb70c055416fcd51a7d8107ea73b1b482c445fe5287c55709dead35b9e3df3565bfefcbb10a7c0edd5b17f23fc56b5d2fdf
data/.gitignore CHANGED
@@ -1,10 +1,130 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
1
+ ### Generated by gibo (https://github.com/simonwhitaker/gibo)
2
+ ### https://raw.github.com/github/gitignore/d0b80a469983a7beece8fa1f5c48a8242318b531/Global/macOS.gitignore
3
+
4
+ # General
5
+ .DS_Store
6
+ .AppleDouble
7
+ .LSOverride
8
+
9
+ # Icon must end with two \r
10
+ Icon
11
+
12
+ # Thumbnails
13
+ ._*
14
+
15
+ # Files that might appear in the root of a volume
16
+ .DocumentRevisions-V100
17
+ .fseventsd
18
+ .Spotlight-V100
19
+ .TemporaryItems
20
+ .Trashes
21
+ .VolumeIcon.icns
22
+ .com.apple.timemachine.donotpresent
23
+
24
+ # Directories potentially created on remote AFP share
25
+ .AppleDB
26
+ .AppleDesktop
27
+ Network Trash Folder
28
+ Temporary Items
29
+ .apdisk
30
+
31
+
32
+ ### https://raw.github.com/github/gitignore/d0b80a469983a7beece8fa1f5c48a8242318b531/Ruby.gitignore
33
+
34
+ *.gem
35
+ *.rbc
36
+ /.config
5
37
  /coverage/
6
- /doc/
38
+ /InstalledFiles
7
39
  /pkg/
8
40
  /spec/reports/
41
+ /spec/examples.txt
42
+ /test/tmp/
43
+ /test/version_tmp/
9
44
  /tmp/
10
- /vendor/bundle/
45
+
46
+ # Used by dotenv library to load environment variables.
47
+ # .env
48
+
49
+ # Ignore Byebug command history file.
50
+ .byebug_history
51
+
52
+ ## Specific to RubyMotion:
53
+ .dat*
54
+ .repl_history
55
+ build/
56
+ *.bridgesupport
57
+ build-iPhoneOS/
58
+ build-iPhoneSimulator/
59
+
60
+ ## Specific to RubyMotion (use of CocoaPods):
61
+ #
62
+ # We recommend against adding the Pods directory to your .gitignore. However
63
+ # you should judge for yourself, the pros and cons are mentioned at:
64
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
65
+ #
66
+ # vendor/Pods/
67
+
68
+ ## Documentation cache and generated files:
69
+ /.yardoc/
70
+ /_yardoc/
71
+ /doc/
72
+ /rdoc/
73
+
74
+ ## Environment normalization:
75
+ /.bundle/
76
+ /vendor/bundle
77
+ /lib/bundler/man/
78
+
79
+ # for a library or gem, you might want to ignore these files since the code is
80
+ # intended to run in multiple environments; otherwise, check them in:
81
+ # Gemfile.lock
82
+ # .ruby-version
83
+ # .ruby-gemset
84
+
85
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
86
+ .rvmrc
87
+
88
+ # Used by RuboCop. Remote config files pulled in from inherit_from directive.
89
+ # .rubocop-https?--*
90
+
91
+
92
+ ### https://raw.github.com/github/gitignore/d0b80a469983a7beece8fa1f5c48a8242318b531/Global/VisualStudioCode.gitignore
93
+
94
+ .vscode/*
95
+ !.vscode/settings.json
96
+ !.vscode/tasks.json
97
+ !.vscode/launch.json
98
+ !.vscode/extensions.json
99
+ !.vscode/*.code-snippets
100
+
101
+ # Local History for Visual Studio Code
102
+ .history/
103
+
104
+ # Built Visual Studio Code Extensions
105
+ *.vsix
106
+
107
+
108
+ ### https://raw.github.com/github/gitignore/d0b80a469983a7beece8fa1f5c48a8242318b531/Global/Vim.gitignore
109
+
110
+ # Swap
111
+ [._]*.s[a-v][a-z]
112
+ !*.svg # comment out if you don't need vector files
113
+ [._]*.sw[a-p]
114
+ [._]s[a-rt-v][a-z]
115
+ [._]ss[a-gi-z]
116
+ [._]sw[a-p]
117
+
118
+ # Session
119
+ Session.vim
120
+ Sessionx.vim
121
+
122
+ # Temporary
123
+ .netrwhist
124
+ *~
125
+ # Auto-generated tag files
126
+ tags
127
+ # Persistent undo
128
+ [._]*.un~
129
+
130
+
data/Gemfile.lock ADDED
@@ -0,0 +1,51 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ adb-peco (2.0.3)
5
+ device_api-android (~> 1.2)
6
+ peco_selector (~> 1.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ android-devices (1.0.1)
12
+ coderay (1.1.1)
13
+ device_api (1.0.2)
14
+ device_api-android (1.2.18)
15
+ android-devices
16
+ device_api (~> 1.0.2)
17
+ diff-lcs (1.2.5)
18
+ method_source (0.8.2)
19
+ peco_selector (1.0.0)
20
+ pry (0.10.3)
21
+ coderay (~> 1.1.0)
22
+ method_source (~> 0.8.1)
23
+ slop (~> 3.4)
24
+ rake (13.0.6)
25
+ rspec (3.4.0)
26
+ rspec-core (~> 3.4.0)
27
+ rspec-expectations (~> 3.4.0)
28
+ rspec-mocks (~> 3.4.0)
29
+ rspec-core (3.4.4)
30
+ rspec-support (~> 3.4.0)
31
+ rspec-expectations (3.4.0)
32
+ diff-lcs (>= 1.2.0, < 2.0)
33
+ rspec-support (~> 3.4.0)
34
+ rspec-mocks (3.4.1)
35
+ diff-lcs (>= 1.2.0, < 2.0)
36
+ rspec-support (~> 3.4.0)
37
+ rspec-support (3.4.1)
38
+ slop (3.6.0)
39
+
40
+ PLATFORMS
41
+ ruby
42
+
43
+ DEPENDENCIES
44
+ adb-peco!
45
+ bundler (>= 2.2.33)
46
+ pry
47
+ rake (>= 12.3.3)
48
+ rspec (~> 3.0)
49
+
50
+ BUNDLED WITH
51
+ 2.2.33
data/adb-peco.gemspec CHANGED
@@ -21,8 +21,8 @@ Gem::Specification.new do |spec|
21
21
 
22
22
  spec.add_dependency 'device_api-android', '~> 1.2'
23
23
  spec.add_dependency 'peco_selector', '~> 1.0'
24
- spec.add_development_dependency 'bundler', '~> 1.12'
25
- spec.add_development_dependency 'rake', '~> 10.0'
24
+ spec.add_development_dependency 'bundler', '>= 2.2.33'
25
+ spec.add_development_dependency 'rake', '>= 12.3.3'
26
26
  spec.add_development_dependency 'rspec', '~> 3.0'
27
27
  spec.add_development_dependency 'pry'
28
28
  end
@@ -1,5 +1,5 @@
1
1
  module Adb
2
2
  module Peco
3
- VERSION = '2.0.2'
3
+ VERSION = '2.0.3'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adb-peco
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomoki Yamashita
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-06-12 00:00:00.000000000 Z
11
+ date: 2022-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: device_api-android
@@ -42,30 +42,30 @@ dependencies:
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '1.12'
47
+ version: 2.2.33
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '1.12'
54
+ version: 2.2.33
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '10.0'
61
+ version: 12.3.3
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '10.0'
68
+ version: 12.3.3
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rspec
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -105,6 +105,7 @@ files:
105
105
  - ".gitignore"
106
106
  - CODE_OF_CONDUCT.md
107
107
  - Gemfile
108
+ - Gemfile.lock
108
109
  - LICENSE
109
110
  - README.md
110
111
  - Rakefile
@@ -120,7 +121,7 @@ homepage: http://github.com/tomorrowkey/adb-peco
120
121
  licenses:
121
122
  - Apache License 2.0
122
123
  metadata: {}
123
- post_install_message:
124
+ post_install_message:
124
125
  rdoc_options: []
125
126
  require_paths:
126
127
  - lib
@@ -135,9 +136,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
136
  - !ruby/object:Gem::Version
136
137
  version: '0'
137
138
  requirements: []
138
- rubyforge_project:
139
- rubygems_version: 2.6.11
140
- signing_key:
139
+ rubygems_version: 3.3.3
140
+ signing_key:
141
141
  specification_version: 4
142
142
  summary: Run adb command with peco
143
143
  test_files: []