relish 0.5.3 → 0.6

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.
@@ -5,13 +5,12 @@ module Relish
5
5
  desc 'show this usage'
6
6
  command :default do
7
7
  puts <<-TEXT
8
- A <project> can be scoped by an organization or user handle. For
9
- example, if an organiztion (rspec) has a project (rspec-core), then
10
- the <project> would be `rspec/rspec-core`. If a user (justin) has a
11
- project (my-project), then <project> would be `justin/my-project`.
8
+ A <project> can be scoped by a publisher name. For
9
+ example, if a publisher (rspec) has a project (rspec-core), then
10
+ the <project> would be `rspec/rspec-core`.
12
11
 
13
- If you leave off the organization or user handle, then it defaults
14
- to the user (you).
12
+ If you leave off the publisher name, then it defaults
13
+ to the user (you), assuming you are publishing projects.
15
14
 
16
15
  TEXT
17
16
  puts "=== Available Commands\n\n"
@@ -53,4 +52,4 @@ to the user (you).
53
52
 
54
53
  end
55
54
  end
56
- end
55
+ end
@@ -7,7 +7,7 @@ module Relish
7
7
  puts format(resource['projects'].get(:accept => :json))
8
8
  end
9
9
 
10
- usage 'projects:add <org or user handle>/<project handle>'
10
+ usage 'projects:add <publisher name>/<project name>'
11
11
  desc 'add a project',
12
12
  'append :private to make the project private',
13
13
  'example: relish projects:add rspec/rspec-core:private'
@@ -72,4 +72,4 @@ module Relish
72
72
 
73
73
  end
74
74
  end
75
- end
75
+ end
@@ -18,11 +18,11 @@ module Relish
18
18
  post files_as_tar_gz, project_params
19
19
  end
20
20
 
21
- usage 'push:org <organization handle>'
22
- desc 'push markdown files to an organization',
23
- 'example: relish push:org rspec'
24
- command :org do
25
- post files_as_tar_gz, organization_params
21
+ usage 'push:publisher <publisher name>'
22
+ desc 'push markdown files to a publisher',
23
+ 'example: relish push:publisher rspec'
24
+ command :publisher do
25
+ post files_as_tar_gz, publisher_params
26
26
  end
27
27
 
28
28
  private
@@ -40,8 +40,8 @@ module Relish
40
40
  end
41
41
  end
42
42
 
43
- def organization_params
44
- "organization_id=#{@param}"
43
+ def publisher_params
44
+ "publisher_id=#{@param}"
45
45
  end
46
46
 
47
47
  def project
@@ -1,6 +1,6 @@
1
1
  module Relish
2
2
  module Version
3
- STRING = '0.5.3'
3
+ STRING = '0.6'
4
4
  end
5
5
  end
6
6
 
@@ -30,9 +30,9 @@ Gem::Specification.new do |s|
30
30
  end
31
31
 
32
32
  {
33
- 'bundler' => '~> 1.0.0',
33
+ 'bundler' => '~> 1.2.0.pre.1',
34
34
  'rake' => '~> 0.8.7',
35
- 'rspec' => '~> 2.6.0',
35
+ 'rspec' => '~> 2.8.0',
36
36
  'cucumber' => '~> 1.0.2',
37
37
  'aruba' => '~> 0.4.5',
38
38
  'fakeweb' => '~> 1.3.0'
@@ -11,15 +11,15 @@ module Relish
11
11
 
12
12
  context 'with options file that exists' do
13
13
  let(:options) do
14
- {'organization' => 'rspec', 'project' => 'rspec-core'}
14
+ {'publisher' => 'rspec', 'project' => 'rspec-core'}
15
15
  end
16
16
 
17
17
  before do
18
18
  File.open(path, 'w') { |f| YAML.dump(options, f) }
19
19
  end
20
20
 
21
- it 'parses the organization' do
22
- global_options['organization'].should eq('rspec')
21
+ it 'parses the publisher' do
22
+ global_options['publisher'].should eq('rspec')
23
23
  end
24
24
 
25
25
  it 'parses the project' do
@@ -42,16 +42,16 @@ module Relish
42
42
  context 'with options file that exists' do
43
43
 
44
44
  let(:options) do
45
- {'organization' => 'rspec', 'project' => 'rspec-core'}
45
+ {'publisher' => 'rspec', 'project' => 'rspec-core'}
46
46
  end
47
47
 
48
48
  before do
49
49
  File.open(path, 'w') { |f| YAML.dump(options, f) }
50
- global_options.store('organization' => 'relish')
50
+ global_options.store('publisher' => 'relish')
51
51
  end
52
52
 
53
53
  it "over-writes existing values" do
54
- OptionsFile.new(path).options['organization'].should == 'relish'
54
+ OptionsFile.new(path).options['publisher'].should == 'relish'
55
55
  end
56
56
 
57
57
  it 'leaves existing options alone' do
@@ -62,4 +62,4 @@ module Relish
62
62
  end
63
63
 
64
64
  end
65
- end
65
+ end
@@ -18,8 +18,8 @@ describe Relish do
18
18
  ENV['HOME'] = @original_home
19
19
  end
20
20
 
21
- it "still returns the global_options file setting" do
22
- Relish.global_options_file.should_not be_nil
21
+ it "returns a non-expanded path to ~/.relish" do
22
+ Relish.global_options_file.should == '~/.relish'
23
23
  end
24
24
  end
25
25
 
metadata CHANGED
@@ -1,275 +1,327 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: relish
3
- version: !ruby/object:Gem::Version
4
- hash: 13
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.6'
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 5
9
- - 3
10
- version: 0.5.3
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Matt Wynne
14
9
  - Justin Ko
15
10
  autorequire:
16
11
  bindir: bin
17
12
  cert_chain: []
18
-
19
- date: 2011-10-09 00:00:00 Z
20
- dependencies:
21
- - !ruby/object:Gem::Dependency
13
+ date: 2012-07-13 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: archive-tar-minitar
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: 0.5.2
22
23
  type: :runtime
23
24
  prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
25
+ version_requirements: !ruby/object:Gem::Requirement
25
26
  none: false
26
- requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- hash: 11
30
- segments:
31
- - 1
32
- - 4
33
- - 6
34
- version: 1.4.6
35
- version_requirements: *id001
36
- name: json
37
- - !ruby/object:Gem::Dependency
27
+ requirements:
28
+ - - ! '>='
29
+ - !ruby/object:Gem::Version
30
+ version: 0.5.2
31
+ - !ruby/object:Gem::Dependency
32
+ name: rest-client
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: 1.6.1
38
39
  type: :runtime
39
40
  prerelease: false
40
- requirement: &id002 !ruby/object:Gem::Requirement
41
+ version_requirements: !ruby/object:Gem::Requirement
41
42
  none: false
42
- requirements:
43
- - - ">="
44
- - !ruby/object:Gem::Version
45
- hash: 13
46
- segments:
47
- - 1
48
- - 6
49
- - 1
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
50
46
  version: 1.6.1
51
- version_requirements: *id002
52
- name: rest-client
53
- - !ruby/object:Gem::Dependency
47
+ - !ruby/object:Gem::Dependency
48
+ name: json
49
+ requirement: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.4.6
54
55
  type: :runtime
55
56
  prerelease: false
56
- requirement: &id003 !ruby/object:Gem::Requirement
57
+ version_requirements: !ruby/object:Gem::Requirement
57
58
  none: false
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- hash: 15
62
- segments:
63
- - 0
64
- - 5
65
- - 2
66
- version: 0.5.2
67
- version_requirements: *id003
68
- name: archive-tar-minitar
69
- - !ruby/object:Gem::Dependency
59
+ requirements:
60
+ - - ! '>='
61
+ - !ruby/object:Gem::Version
62
+ version: 1.4.6
63
+ - !ruby/object:Gem::Dependency
64
+ name: bundler
65
+ requirement: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ~>
69
+ - !ruby/object:Gem::Version
70
+ version: 1.2.0.pre.1
70
71
  type: :development
71
72
  prerelease: false
72
- requirement: &id004 !ruby/object:Gem::Requirement
73
+ version_requirements: !ruby/object:Gem::Requirement
73
74
  none: false
74
- requirements:
75
+ requirements:
75
76
  - - ~>
76
- - !ruby/object:Gem::Version
77
- hash: 27
78
- segments:
79
- - 1
80
- - 3
81
- - 0
82
- version: 1.3.0
83
- version_requirements: *id004
84
- name: fakeweb
85
- - !ruby/object:Gem::Dependency
77
+ - !ruby/object:Gem::Version
78
+ version: 1.2.0.pre.1
79
+ - !ruby/object:Gem::Dependency
80
+ name: rake
81
+ requirement: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ~>
85
+ - !ruby/object:Gem::Version
86
+ version: 0.8.7
86
87
  type: :development
87
88
  prerelease: false
88
- requirement: &id005 !ruby/object:Gem::Requirement
89
+ version_requirements: !ruby/object:Gem::Requirement
89
90
  none: false
90
- requirements:
91
+ requirements:
91
92
  - - ~>
92
- - !ruby/object:Gem::Version
93
- hash: 49
94
- segments:
95
- - 0
96
- - 8
97
- - 7
93
+ - !ruby/object:Gem::Version
98
94
  version: 0.8.7
99
- version_requirements: *id005
100
- name: rake
101
- - !ruby/object:Gem::Dependency
95
+ - !ruby/object:Gem::Dependency
96
+ name: rspec
97
+ requirement: !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ~>
101
+ - !ruby/object:Gem::Version
102
+ version: 2.8.0
102
103
  type: :development
103
104
  prerelease: false
104
- requirement: &id006 !ruby/object:Gem::Requirement
105
+ version_requirements: !ruby/object:Gem::Requirement
105
106
  none: false
106
- requirements:
107
+ requirements:
107
108
  - - ~>
108
- - !ruby/object:Gem::Version
109
- hash: 23
110
- segments:
111
- - 2
112
- - 6
113
- - 0
114
- version: 2.6.0
115
- version_requirements: *id006
116
- name: rspec
117
- - !ruby/object:Gem::Dependency
109
+ - !ruby/object:Gem::Version
110
+ version: 2.8.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: cucumber
113
+ requirement: !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ~>
117
+ - !ruby/object:Gem::Version
118
+ version: 1.0.2
118
119
  type: :development
119
120
  prerelease: false
120
- requirement: &id007 !ruby/object:Gem::Requirement
121
+ version_requirements: !ruby/object:Gem::Requirement
121
122
  none: false
122
- requirements:
123
+ requirements:
123
124
  - - ~>
124
- - !ruby/object:Gem::Version
125
- hash: 5
126
- segments:
127
- - 0
128
- - 4
129
- - 5
130
- version: 0.4.5
131
- version_requirements: *id007
125
+ - !ruby/object:Gem::Version
126
+ version: 1.0.2
127
+ - !ruby/object:Gem::Dependency
132
128
  name: aruba
133
- - !ruby/object:Gem::Dependency
129
+ requirement: !ruby/object:Gem::Requirement
130
+ none: false
131
+ requirements:
132
+ - - ~>
133
+ - !ruby/object:Gem::Version
134
+ version: 0.4.5
134
135
  type: :development
135
136
  prerelease: false
136
- requirement: &id008 !ruby/object:Gem::Requirement
137
+ version_requirements: !ruby/object:Gem::Requirement
137
138
  none: false
138
- requirements:
139
+ requirements:
139
140
  - - ~>
140
- - !ruby/object:Gem::Version
141
- hash: 23
142
- segments:
143
- - 1
144
- - 0
145
- - 0
146
- version: 1.0.0
147
- version_requirements: *id008
148
- name: bundler
149
- - !ruby/object:Gem::Dependency
141
+ - !ruby/object:Gem::Version
142
+ version: 0.4.5
143
+ - !ruby/object:Gem::Dependency
144
+ name: fakeweb
145
+ requirement: !ruby/object:Gem::Requirement
146
+ none: false
147
+ requirements:
148
+ - - ~>
149
+ - !ruby/object:Gem::Version
150
+ version: 1.3.0
150
151
  type: :development
151
152
  prerelease: false
152
- requirement: &id009 !ruby/object:Gem::Requirement
153
+ version_requirements: !ruby/object:Gem::Requirement
153
154
  none: false
154
- requirements:
155
+ requirements:
155
156
  - - ~>
156
- - !ruby/object:Gem::Version
157
- hash: 19
158
- segments:
159
- - 1
160
- - 0
161
- - 2
162
- version: 1.0.2
163
- version_requirements: *id009
164
- name: cucumber
157
+ - !ruby/object:Gem::Version
158
+ version: 1.3.0
165
159
  description: Client gem for http://relishapp.com
166
160
  email: matt@mattwynne.net
167
- executables:
168
- - relish
161
+ executables:
162
+ - !binary |-
163
+ cmVsaXNo
169
164
  extensions: []
170
-
171
165
  extra_rdoc_files: []
172
-
173
- files:
174
- - .gitignore
175
- - Gemfile
176
- - LICENSE
177
- - README.md
178
- - Rakefile
179
- - bin/relish
180
- - cucumber.yml
181
- - features/help.feature
182
- - features/projects.feature
183
- - features/step_definitions/aruba.rb
184
- - features/step_definitions/fake_web_steps.rb
185
- - features/step_definitions/relish_steps.rb
186
- - features/support/env.rb
187
- - lib/relish.rb
188
- - lib/relish/command.rb
189
- - lib/relish/commands/base.rb
190
- - lib/relish/commands/collab.rb
191
- - lib/relish/commands/config.rb
192
- - lib/relish/commands/dsl.rb
193
- - lib/relish/commands/dsl/command.rb
194
- - lib/relish/commands/dsl/context_class.rb
195
- - lib/relish/commands/dsl/help_text.rb
196
- - lib/relish/commands/dsl/option.rb
197
- - lib/relish/commands/help.rb
198
- - lib/relish/commands/projects.rb
199
- - lib/relish/commands/push.rb
200
- - lib/relish/commands/versions.rb
201
- - lib/relish/error_messages.rb
202
- - lib/relish/helpers.rb
203
- - lib/relish/options_file.rb
204
- - lib/relish/param_methods.rb
205
- - lib/relish/resource_methods.rb
206
- - lib/relish/ui.rb
207
- - lib/relish/version.rb
208
- - relish.gemspec
209
- - spec/relish/command_spec.rb
210
- - spec/relish/commands/base_spec.rb
211
- - spec/relish/commands/config_spec.rb
212
- - spec/relish/commands/dsl/command_spec.rb
213
- - spec/relish/commands/dsl/help_text_spec.rb
214
- - spec/relish/commands/dsl/option_spec.rb
215
- - spec/relish/error_messages_spec.rb
216
- - spec/relish/options_file_spec.rb
217
- - spec/relish/param_methods_spec.rb
218
- - spec/relish_spec.rb
219
- - spec/spec_helper.rb
220
- - spec/support/context_class_examples.rb
221
- - tags
166
+ files:
167
+ - !binary |-
168
+ LmdpdGlnbm9yZQ==
169
+ - !binary |-
170
+ R2VtZmlsZQ==
171
+ - !binary |-
172
+ TElDRU5TRQ==
173
+ - !binary |-
174
+ UkVBRE1FLm1k
175
+ - !binary |-
176
+ UmFrZWZpbGU=
177
+ - !binary |-
178
+ YmluL3JlbGlzaA==
179
+ - !binary |-
180
+ Y3VjdW1iZXIueW1s
181
+ - !binary |-
182
+ ZmVhdHVyZXMvaGVscC5mZWF0dXJl
183
+ - !binary |-
184
+ ZmVhdHVyZXMvcHJvamVjdHMuZmVhdHVyZQ==
185
+ - !binary |-
186
+ ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9hcnViYS5yYg==
187
+ - !binary |-
188
+ ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9mYWtlX3dlYl9zdGVwcy5yYg==
189
+ - !binary |-
190
+ ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9yZWxpc2hfc3RlcHMucmI=
191
+ - !binary |-
192
+ ZmVhdHVyZXMvc3VwcG9ydC9lbnYucmI=
193
+ - !binary |-
194
+ bGliL3JlbGlzaC5yYg==
195
+ - !binary |-
196
+ bGliL3JlbGlzaC9jb21tYW5kLnJi
197
+ - !binary |-
198
+ bGliL3JlbGlzaC9jb21tYW5kcy9iYXNlLnJi
199
+ - !binary |-
200
+ bGliL3JlbGlzaC9jb21tYW5kcy9jb2xsYWIucmI=
201
+ - !binary |-
202
+ bGliL3JlbGlzaC9jb21tYW5kcy9jb25maWcucmI=
203
+ - !binary |-
204
+ bGliL3JlbGlzaC9jb21tYW5kcy9kc2wucmI=
205
+ - !binary |-
206
+ bGliL3JlbGlzaC9jb21tYW5kcy9kc2wvY29tbWFuZC5yYg==
207
+ - !binary |-
208
+ bGliL3JlbGlzaC9jb21tYW5kcy9kc2wvY29udGV4dF9jbGFzcy5yYg==
209
+ - !binary |-
210
+ bGliL3JlbGlzaC9jb21tYW5kcy9kc2wvaGVscF90ZXh0LnJi
211
+ - !binary |-
212
+ bGliL3JlbGlzaC9jb21tYW5kcy9kc2wvb3B0aW9uLnJi
213
+ - !binary |-
214
+ bGliL3JlbGlzaC9jb21tYW5kcy9oZWxwLnJi
215
+ - !binary |-
216
+ bGliL3JlbGlzaC9jb21tYW5kcy9wcm9qZWN0cy5yYg==
217
+ - !binary |-
218
+ bGliL3JlbGlzaC9jb21tYW5kcy9wdXNoLnJi
219
+ - !binary |-
220
+ bGliL3JlbGlzaC9jb21tYW5kcy92ZXJzaW9ucy5yYg==
221
+ - !binary |-
222
+ bGliL3JlbGlzaC9lcnJvcl9tZXNzYWdlcy5yYg==
223
+ - !binary |-
224
+ bGliL3JlbGlzaC9oZWxwZXJzLnJi
225
+ - !binary |-
226
+ bGliL3JlbGlzaC9vcHRpb25zX2ZpbGUucmI=
227
+ - !binary |-
228
+ bGliL3JlbGlzaC9wYXJhbV9tZXRob2RzLnJi
229
+ - !binary |-
230
+ bGliL3JlbGlzaC9yZXNvdXJjZV9tZXRob2RzLnJi
231
+ - !binary |-
232
+ bGliL3JlbGlzaC91aS5yYg==
233
+ - !binary |-
234
+ bGliL3JlbGlzaC92ZXJzaW9uLnJi
235
+ - !binary |-
236
+ cmVsaXNoLmdlbXNwZWM=
237
+ - !binary |-
238
+ c3BlYy9yZWxpc2gvY29tbWFuZF9zcGVjLnJi
239
+ - !binary |-
240
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvYmFzZV9zcGVjLnJi
241
+ - !binary |-
242
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvY29uZmlnX3NwZWMucmI=
243
+ - !binary |-
244
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvZHNsL2NvbW1hbmRfc3BlYy5yYg==
245
+ - !binary |-
246
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvZHNsL2hlbHBfdGV4dF9zcGVjLnJi
247
+ - !binary |-
248
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvZHNsL29wdGlvbl9zcGVjLnJi
249
+ - !binary |-
250
+ c3BlYy9yZWxpc2gvZXJyb3JfbWVzc2FnZXNfc3BlYy5yYg==
251
+ - !binary |-
252
+ c3BlYy9yZWxpc2gvb3B0aW9uc19maWxlX3NwZWMucmI=
253
+ - !binary |-
254
+ c3BlYy9yZWxpc2gvcGFyYW1fbWV0aG9kc19zcGVjLnJi
255
+ - !binary |-
256
+ c3BlYy9yZWxpc2hfc3BlYy5yYg==
257
+ - !binary |-
258
+ c3BlYy9zcGVjX2hlbHBlci5yYg==
259
+ - !binary |-
260
+ c3BlYy9zdXBwb3J0L2NvbnRleHRfY2xhc3NfZXhhbXBsZXMucmI=
261
+ - !binary |-
262
+ dGFncw==
222
263
  homepage: http://relishapp.com
223
264
  licenses: []
224
-
225
265
  post_install_message:
226
- rdoc_options:
266
+ rdoc_options:
227
267
  - --charset=UTF-8
228
- require_paths:
268
+ require_paths:
229
269
  - lib
230
- required_ruby_version: !ruby/object:Gem::Requirement
270
+ required_ruby_version: !ruby/object:Gem::Requirement
231
271
  none: false
232
- requirements:
233
- - - ">="
234
- - !ruby/object:Gem::Version
235
- hash: 3
236
- segments:
272
+ requirements:
273
+ - - ! '>='
274
+ - !ruby/object:Gem::Version
275
+ version: '0'
276
+ segments:
237
277
  - 0
238
- version: "0"
239
- required_rubygems_version: !ruby/object:Gem::Requirement
278
+ hash: -1171980964409836435
279
+ required_rubygems_version: !ruby/object:Gem::Requirement
240
280
  none: false
241
- requirements:
242
- - - ">="
243
- - !ruby/object:Gem::Version
244
- hash: 17
245
- segments:
246
- - 1
247
- - 3
248
- - 5
281
+ requirements:
282
+ - - ! '>='
283
+ - !ruby/object:Gem::Version
249
284
  version: 1.3.5
250
285
  requirements: []
251
-
252
286
  rubyforge_project:
253
- rubygems_version: 1.8.10
287
+ rubygems_version: 1.8.24
254
288
  signing_key:
255
289
  specification_version: 3
256
290
  summary: Client gem for http://relishapp.com
257
- test_files:
258
- - features/help.feature
259
- - features/projects.feature
260
- - features/step_definitions/aruba.rb
261
- - features/step_definitions/fake_web_steps.rb
262
- - features/step_definitions/relish_steps.rb
263
- - features/support/env.rb
264
- - spec/relish/command_spec.rb
265
- - spec/relish/commands/base_spec.rb
266
- - spec/relish/commands/config_spec.rb
267
- - spec/relish/commands/dsl/command_spec.rb
268
- - spec/relish/commands/dsl/help_text_spec.rb
269
- - spec/relish/commands/dsl/option_spec.rb
270
- - spec/relish/error_messages_spec.rb
271
- - spec/relish/options_file_spec.rb
272
- - spec/relish/param_methods_spec.rb
273
- - spec/relish_spec.rb
274
- - spec/spec_helper.rb
275
- - spec/support/context_class_examples.rb
291
+ test_files:
292
+ - !binary |-
293
+ ZmVhdHVyZXMvaGVscC5mZWF0dXJl
294
+ - !binary |-
295
+ ZmVhdHVyZXMvcHJvamVjdHMuZmVhdHVyZQ==
296
+ - !binary |-
297
+ ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9hcnViYS5yYg==
298
+ - !binary |-
299
+ ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9mYWtlX3dlYl9zdGVwcy5yYg==
300
+ - !binary |-
301
+ ZmVhdHVyZXMvc3RlcF9kZWZpbml0aW9ucy9yZWxpc2hfc3RlcHMucmI=
302
+ - !binary |-
303
+ ZmVhdHVyZXMvc3VwcG9ydC9lbnYucmI=
304
+ - !binary |-
305
+ c3BlYy9yZWxpc2gvY29tbWFuZF9zcGVjLnJi
306
+ - !binary |-
307
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvYmFzZV9zcGVjLnJi
308
+ - !binary |-
309
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvY29uZmlnX3NwZWMucmI=
310
+ - !binary |-
311
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvZHNsL2NvbW1hbmRfc3BlYy5yYg==
312
+ - !binary |-
313
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvZHNsL2hlbHBfdGV4dF9zcGVjLnJi
314
+ - !binary |-
315
+ c3BlYy9yZWxpc2gvY29tbWFuZHMvZHNsL29wdGlvbl9zcGVjLnJi
316
+ - !binary |-
317
+ c3BlYy9yZWxpc2gvZXJyb3JfbWVzc2FnZXNfc3BlYy5yYg==
318
+ - !binary |-
319
+ c3BlYy9yZWxpc2gvb3B0aW9uc19maWxlX3NwZWMucmI=
320
+ - !binary |-
321
+ c3BlYy9yZWxpc2gvcGFyYW1fbWV0aG9kc19zcGVjLnJi
322
+ - !binary |-
323
+ c3BlYy9yZWxpc2hfc3BlYy5yYg==
324
+ - !binary |-
325
+ c3BlYy9zcGVjX2hlbHBlci5yYg==
326
+ - !binary |-
327
+ c3BlYy9zdXBwb3J0L2NvbnRleHRfY2xhc3NfZXhhbXBsZXMucmI=