Project

General

Profile

Download (56.7 KB) Statistics
| Branch: | Tag: | Revision:

runcible / rubygem-runcible.spec @ 4376f477

1
%{?scl:%scl_package rubygem-%{gem_name}}
2
%{!?scl:%global pkg_name %{name}}
3

    
4
# vim: sw=4:ts=4:et
5
#
6
# Copyright 2011 Red Hat, Inc.
7
#
8
# MIT License
9
#
10
# Permission is hereby granted, free of charge, to any person obtaining
11
# a copy of this software and associated documentation files (the
12
# "Software"), to deal in the Software without restriction, including
13
# without limitation the rights to use, copy, modify, merge, publish,
14
# distribute, sublicense, and/or sell copies of the Software, and to
15
# permit persons to whom the Software is furnished to do so, subject to
16
# the following conditions:
17
#
18
# The above copyright notice and this permission notice shall be
19
# included in all copies or substantial portions of the Software.
20
#
21
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28

    
29
%global gem_name runcible
30

    
31
%if "%{?scl}" == "ruby193" || 0%{?rhel} > 6 || 0%{?fedora} > 16
32
%define rubyabi 1.9.1
33
%else
34
%define rubyabi 1.8
35
%endif
36

    
37
%if 0%{?rhel} == 6 && "%{?scl}" == ""
38
%global gem_dir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
39
%global gem_docdir %{gem_dir}/doc/%{gem_name}-%{version}
40
%global gem_cache %{gem_dir}/cache/%{gem_name}-%{version}.gem
41
%global gem_spec %{gem_dir}/specifications/%{gem_name}-%{version}.gemspec
42
%global gem_instdir %{gem_dir}/gems/%{gem_name}-%{version}
43
%endif
44

    
45
BuildRequires: %{?scl_prefix}rubygems-devel
46

    
47
Name:           %{?scl_prefix}rubygem-%{gem_name}
48
Summary:        A gem exposing Pulp's juiciest parts
49
Group:          Applications/System
50
License:        MIT
51
Version:        0.4.12
52
Release:        1%{?dist}
53
URL:            https://github.com/Katello/runcible
54
# Can be retrieved by:
55
# git clone git://github.com/Katello/runcible.git
56
# cd runcible.git
57
# tito build --tgz
58
Source0:        %{gem_name}-%{version}.gem
59
%if 0%{?rhel} == 5
60
BuildRoot:      %{_tmppath}/%{gem_name}-%{version}-%{release}-root-%(%{__id_u} -n)
61
%endif
62
%if 0%{?fedora} > 18
63
Requires:       %{?scl_prefix}ruby(release)
64
%else
65
Requires:       %{?scl_prefix}ruby(abi) = %{rubyabi}
66
%endif
67
Requires:       %{?scl_prefix}ruby(rubygems) 
68
Requires:       %{?scl_prefix}rubygem(json) 
69
Requires:       %{?scl_prefix}rubygem(rest-client) >= 1.6.1
70
Requires:       %{?scl_prefix}rubygem(oauth) 
71
Requires:       %{?scl_prefix}rubygem(activesupport) >= 3.0.10
72
Requires:       %{?scl_prefix}rubygem(i18n) >= 0.5.0
73
%if 0%{?fedora} > 18
74
BuildRequires:  %{?scl_prefix}ruby(release)
75
%else
76
BuildRequires:  %{?scl_prefix}ruby(abi) = %{rubyabi}
77
%endif
78
BuildRequires:  %{?scl_prefix}ruby(rubygems) 
79
BuildArch:      noarch
80
Provides:       %{?scl_prefix}rubygem(%{gem_name}) = %{version}
81

    
82
%description
83
A gem to expose Pulp's juiciest parts.
84

    
85
%package doc
86
BuildArch:  noarch
87
Requires:   %{?scl_prefix}%{pkg_name} = %{version}-%{release}
88
Summary:    Documentation for rubygem-%{gem_name}
89

    
90
%description doc
91
This package contains documentation for rubygem-%{gem_name}
92

    
93
%prep
94
%setup -q -c -T -n  %{gem_name}-%{version}
95

    
96
%build
97
mkdir -p .%{gem_dir}
98
%{?scl:scl enable %{scl} "}
99
gem install --local --install-dir .%{gem_dir} \
100
            --force --no-rdoc --no-ri %{SOURCE0}
101
%{?scl:"}
102

    
103

    
104
%install
105
mkdir -p %{buildroot}%{gem_dir}
106
cp -a .%{gem_dir}/* \
107
        %{buildroot}%{gem_dir}/
108
mkdir -p %{buildroot}%{gem_docdir}
109

    
110
%files
111
%dir %{gem_instdir}
112
%{gem_instdir}/lib
113
%exclude %{gem_cache}
114
%{gem_spec}
115
%doc %{gem_instdir}/LICENSE
116

    
117
%files doc
118
%doc %{gem_docdir}
119
%{gem_instdir}/Rakefile
120
%{gem_instdir}/Gemfile
121
%doc %{gem_instdir}/README.md 
122
%doc %{gem_instdir}/CONTRIBUTING.md
123

    
124
%changelog
125
* Tue Jul 30 2013 Justin Sherrill <jsherril@redhat.com> 0.4.12-1
126
- adding support for yum_clone_distributor (jsherril@redhat.com)
127
- Improving some of the tests for pulp 2.2 and regenerating cassettes
128
  (jsherril@redhat.com)
129
- Pulp v2.2: Fixing individual tests for Pulp 2.2 (daviddavis@redhat.com)
130
- Updating Readme to include steps for an official release. (ehelms@redhat.com)
131

    
132
* Tue Jul 02 2013 Brad Buckingham <bbuckingham@redhat.com> 0.4.11-1
133
- bumping release to 0.4.11 (bbuckingham@redhat.com)
134
- consumer/group - update to allow for update all (bbuckingham@redhat.com)
135

    
136
* Thu Jun 13 2013 Justin Sherrill <jsherril@redhat.com> 0.4.10-1
137
- adding yum_repo_metadata_file unit type (jsherril@redhat.com)
138
- adds timeout config values and pass to rest client (jsherril@redhat.com)
139
- 969457: Do not timeout on getting all #rpm_ids (git@pitr.ch)
140
- 955706 - update vcr_cassettes for pulp-server-2.1.2-0.1.beta
141
  (bbuckingham@redhat.com)
142
- 955706 - consumer_groups - add passing of additional options
143
  (bbuckingham@redhat.com)
144
- 955706 - update runcible to support pulp-server-2.1.2-0.1.beta
145
  (bbuckingham@redhat.com)
146

    
147
* Tue Jun 04 2013 Justin Sherrill <jsherril@redhat.com> 0.4.9-1
148
- adding more options for various actions (jsherril@redhat.com)
149
- Docs - Updating how to build and deploy documentation. (ehelms@redhat.com)
150
- Showing a better config error message (daviddavis@redhat.com)
151

    
152
* Wed May 22 2013 Justin Sherrill <jsherril@redhat.com> 0.4.8-1
153
- adding additional importer/distributor options (jsherril@redhat.com)
154
- requiring older minitest (jsherril@redhat.com)
155
- adding readme and contributing to gemspec (jsherril@redhat.com)
156
- adding new files to gemfile, and bumping for new release
157
  (jsherril@redhat.com)
158
- adding method to easily check the status of a publish (mmccune@redhat.com)
159
- adding export distributor so we can initiate ISO exports (mmccune@redhat.com)
160

    
161
* Wed May 15 2013 Justin Sherrill <jsherril@redhat.com> 0.4.7-1
162
- new package built with tito
163

    
164
* Mon May 13 2013 Miroslav Suchý <msuchy@redhat.com> 0.4.5-1
165
- enable SCL builds
166

    
167
* Fri May 03 2013 Justin Sherrill <jsherril@redhat.com> 0.4.4-2
168
- consumer - specify different unit key based on content type
169
  (bbuckingham@redhat.com)
170

    
171
* Fri May 03 2013 Justin Sherrill <jsherril@redhat.com> 0.4.4-1
172
- consumer - specify different unit key based on content type
173
  (bbuckingham@redhat.com)
174

    
175
* Tue Apr 23 2013 Justin Sherrill <jsherril@redhat.com> 0.4.3-1
176
- fixing gem version (jsherril@redhat.com)
177

    
178
* Tue Apr 23 2013 Justin Sherrill <jsherril@redhat.com> 0.4.2-1
179
- unit copy - updates for pulp improvements in unit associate/copy
180
  (bbuckingham@redhat.com)
181
- consumer - updates to support applicable errata (bbuckingham@redhat.com)
182
- Adding ISO repo support (jsherril@redhat.com)
183

    
184
* Mon Mar 25 2013 Justin Sherrill <jsherril@redhat.com> 0.4.1-1
185
- removing 1.8.7 support (jsherril@redhat.com)
186
- adding repo group support (jsherril@redhat.com)
187
- Pulp 2.1 - Adding fixes to support the previous errors around package group
188
  unit copy.  This commit is against a beta build of 2.1 (ericdhelms@gmail.com)
189
- Pulp2.1 - Adding note with link to current stable Runcible branch.
190
  (ericdhelms@gmail.com)
191
- Pulp 2.1 - Adding two API calls to handle content applicability for
192
  consumers. (ericdhelms@gmail.com)
193
- Pulp2.1 - Updates to how consumer group content tests are handled to test
194
  them properly. (ericdhelms@gmail.com)
195
- comply with Fedora Guidelines (msuchy@redhat.com)
196
- Fixes logging=true option during testing based off the previous changes to
197
  requiring the logger to be based off the Ruby standard logger API.
198
  (ericdhelms@gmail.com)
199
- only request ids of errata and rpms for errata_id/rpm_id functions
200
  (jsherril@redhat.com)
201
- allowing running of single test by filename (jsherril@redhat.com)
202

    
203
* Thu Feb 28 2013 Miroslav Suchý <msuchy@redhat.com> 0.3.3-4
204
- use scl_prefix for setup macro (msuchy@redhat.com)
205
- use upstream builder (msuchy@redhat.com)
206

    
207
* Thu Feb 28 2013 Miroslav Suchý <msuchy@redhat.com> 0.3.3-3
208
- tar.gz is created form package name, address this for SC (msuchy@redhat.com)
209

    
210
* Thu Feb 28 2013 Miroslav Suchý <msuchy@redhat.com> 0.3.3-2
211
- convert spec file using spec2scl to support SC (msuchy@redhat.com)
212

    
213
* Tue Feb 05 2013 Justin Sherrill <jsherril@redhat.com> 0.3.3-1
214
- dropping version requirement for runcible (jsherril@redhat.com)
215
- Changes license reference from Eric to Red Hat for consistency.
216
  (ehelms@redhat.com)
217

    
218
* Mon Feb 04 2013 Justin Sherrill <jsherril@redhat.com> 0.3.2-1
219
- Logging - Test update. (ehelms@redhat.com)
220
- Logging - Updates to prevent logging twice in the event an exception is
221
  thrown when the log level is at debug. (ehelms@redhat.com)
222
- Gemspec cleanup by moving dependencies into the gemspec file.
223
  (ehelms@redhat.com)
224
- Updates logging code to allow logging of all requests (debug mode) and a
225
  special exceptions mode for only logging to a provided logger calls that
226
  generate exceptions. (ehelms@redhat.com)
227
- Updates readme to include new test option. (ehelms@redhat.com)
228
- Moves primary tests into top level test directory and re-factors the test
229
  commands to account for the changes. Resources and extension suites may now
230
  be run separately now. (ehelms@redhat.com)
231
- Adds environment variable to allow running full test suite against a live
232
  Pulp without recording new cassettes. (ehelms@redhat.com)
233
- Updates README to include a section on building and releasin gem or RPM.
234
  (ehelms@redhat.com)
235
- being less restrictive on activesupport version in Gemfile
236
  (jsherril@redhat.com)
237
- being less restrictive on activesupport version (jsherril@redhat.com)
238
- Renamed test methods to quiten travis (paji@redhat.com)
239
- Redid the tests to make em more explicit (paji@redhat.com)
240
- Fixed a test (paji@redhat.com)
241
- Accidental blooper where I missed a method name (paji@redhat.com)
242
- Added some cosmetic changes for clarity (paji@redhat.com)
243
- Updated unit tests to make travis happy (paji@redhat.com)
244
- Removed accidental space (paji@redhat.com)
245
- Updated content unassociate calls to be based of unit_id or content_id
246
  (paji@redhat.com)
247
- Moved the copy and unassociate logic to a more centralized location
248
  (paji@redhat.com)
249

    
250
* Wed Jan 16 2013 Justin Sherrill <jsherril@redhat.com> 0.3.1-1
251
- version bump to 0.3.1 (jsherril@redhat.com)
252
- fixes #35 - correctly default to include repos info in unit finds
253
  (jsherril@redhat.com)
254

    
255
* Fri Jan 11 2013 Eric D Helms <ehelms@redhat.com> 0.3.0-1
256
- Version bump. (ehelms@redhat.com)
257
- Adds tests for content_type. (ehelms@redhat.com)
258
- Updates to how the content type is declared for extensions. Test updates.
259
  (ehelms@redhat.com)
260
- Series of documentation updates for extensions that include the addition of a
261
  base Unit extension that all content types inherit from. (ehelms@redhat.com)
262
- Updating to first Pulp V2.0 stable build. (ehelms@redhat.com)
263
- minor version bump (jsherril@redhat.com)
264
- cassette update (jsherril@redhat.com)
265
- fixing package category test
266
- adding package group copy (jsherril@redhat.com)
267
- Automatic commit of package [rubygem-runcible] release [0.2.0-1].
268
  (ehelms@redhat.com)
269
- Spec file updates to remove redundant directory declarations.
270
  (ehelms@redhat.com)
271

    
272
* Mon Nov 19 2012 Eric D Helms <ehelms@redhat.com> 0.2.0-1
273
- Spec file updates to remove redundant directory declarations.
274
  (ehelms@redhat.com)
275
- Version bump. (ehelms@redhat.com)
276
- cassette updates (jsherril@redhat.com)
277
- sleep longer for fewer waiting tasks (jsherril@redhat.com)
278
- fixing errata copy by unit id (jsherril@redhat.com)
279
- cassette updates (jsherril@redhat.com)
280
- fixing typo in rakefile (jsherril@redhat.com)
281
- adding errata test (jsherril@redhat.com)
282
- cassette updates (jsherril@redhat.com)
283
- do not sleep if were running as none (jsherril@redhat.com)
284
- switching to primarily use unit ids for errata (jsherril@redhat.com)
285
- Assert - Cleans up copy/paste fail on a test name and associated tests.
286
  (ehelms@redhat.com)
287
- Asserts - Cleans up the asserts in extensions. (ehelms@redhat.com)
288
- Asserts - Cleans up the asserts to use more minitest asserts in resources to
289
  provide more friendly output. (ehelms@redhat.com)
290
- Updates readme with link to github pages. (ehelms@redhat.com)
291
- Doc - Adds references to the latest Pulp doc location for each entity.
292
  (ehelms@redhat.com)
293
- Fixes broken reference. (ehelms@redhat.com)
294
- DOC - Adds documentation for all resources. (ehelms@redhat.com)
295
- Fixes for none mode test runs. (ehelms@redhat.com)
296
- Pulp Beta - Updates to handle Repository deletion and consumer unbind as
297
  tasks to remove chance for race condition. (ehelms@redhat.com)
298
- Pulp Beta - Adds missing cassettes and updates test data. (ehelms@redhat.com)
299
- Updates to the latest pulp beta and fixes all associated tests.
300
  (ehelms@redhat.com)
301
- Docs - Adds yard doc for repository. (ehelms@redhat.com)
302
- Updates to fix missing cassette and switches each content type to extend Unit
303
  resource. (ehelms@redhat.com)
304
- Version bump. (ehelms@redhat.com)
305
- Merge branch 'master' of github.com:Katello/runcible (ehelms@redhat.com)
306
- Updates test data to reflect added tests. (ehelms@redhat.com)
307
- Adds and cleans-up functions that having missing or mis-named tests.
308
  (ehelms@redhat.com)
309
- Updates Travis to fail if there are untested functions. (ehelms@redhat.com)
310
- Adds rake task to find functions without corresponding test functions.
311
  (ehelms@redhat.com)
312
- cassette update (jsherril@redhat.com)
313
- do not use sorting for unit search, as mongo may fail (jsherril@redhat.com)
314
- Updating pulp version (paji@redhat.com)
315

    
316
* Mon Nov 19 2012 Eric D Helms <ehelms@redhat.com> 0.2.0-1
317
- Version bump. (ehelms@redhat.com)
318
- cassette updates (jsherril@redhat.com)
319
- sleep longer for fewer waiting tasks (jsherril@redhat.com)
320
- fixing errata copy by unit id (jsherril@redhat.com)
321
- cassette updates (jsherril@redhat.com)
322
- fixing typo in rakefile (jsherril@redhat.com)
323
- adding errata test (jsherril@redhat.com)
324
- cassette updates (jsherril@redhat.com)
325
- do not sleep if were running as none (jsherril@redhat.com)
326
- switching to primarily use unit ids for errata (jsherril@redhat.com)
327
- Assert - Cleans up copy/paste fail on a test name and associated tests.
328
  (ehelms@redhat.com)
329
- Asserts - Cleans up the asserts in extensions. (ehelms@redhat.com)
330
- Asserts - Cleans up the asserts to use more minitest asserts in resources to
331
  provide more friendly output. (ehelms@redhat.com)
332
- Updates readme with link to github pages. (ehelms@redhat.com)
333
- Doc - Adds references to the latest Pulp doc location for each entity.
334
  (ehelms@redhat.com)
335
- Fixes broken reference. (ehelms@redhat.com)
336
- DOC - Adds documentation for all resources. (ehelms@redhat.com)
337
- Fixes for none mode test runs. (ehelms@redhat.com)
338
- Pulp Beta - Updates to handle Repository deletion and consumer unbind as
339
  tasks to remove chance for race condition. (ehelms@redhat.com)
340
- Pulp Beta - Adds missing cassettes and updates test data. (ehelms@redhat.com)
341
- Updates to the latest pulp beta and fixes all associated tests.
342
  (ehelms@redhat.com)
343
- Docs - Adds yard doc for repository. (ehelms@redhat.com)
344
- Updates to fix missing cassette and switches each content type to extend Unit
345
  resource. (ehelms@redhat.com)
346
- Version bump. (ehelms@redhat.com)
347
- Merge branch 'master' of github.com:Katello/runcible (ehelms@redhat.com)
348
- Updates test data to reflect added tests. (ehelms@redhat.com)
349
- Adds and cleans-up functions that having missing or mis-named tests.
350
  (ehelms@redhat.com)
351
- Updates Travis to fail if there are untested functions. (ehelms@redhat.com)
352
- Adds rake task to find functions without corresponding test functions.
353
  (ehelms@redhat.com)
354
- cassette update (jsherril@redhat.com)
355
- do not use sorting for unit search, as mongo may fail (jsherril@redhat.com)
356
- Updating pulp version (paji@redhat.com)
357

    
358
* Fri Nov 02 2012 Eric D. Helms <ehelms@redhat.com> 0.1.3-1
359
- Version bump. (ehelms@redhat.com)
360
- Cassette updates for tests. (ehelms@redhat.com)
361
- Fixes broken publish_all call and adds tests for publish and publish_all.
362
  (ehelms@redhat.com)
363
- Adding files to make travis happy in theory (paji@redhat.com)
364
- Changed the 'options' parameter to be  empty hash instead of a string since
365
  pulp expects that (paji@redhat.com)
366
- Changed the check for 'logging' suite name as suggested (paji@redhat.com)
367
- Replaced all the GPL licenses with MIT as requested by eric (paji@redhat.com)
368
- Fixed merge conflicts and regenerated yml cassettes (paji@redhat.com)
369
- Updated the required yml to make the runcible tests run (paji@redhat.com)
370
- Fixed a few consumer group tests (paji@redhat.com)
371
- Travis - Adds testing against 1.9.3 (ehelms@redhat.com)
372
- Merge branch 'master' of github.com:Katello/runcible (ehelms@redhat.com)
373
- Ruby 1.9.3 - Updates to get code and tests passing on both Ruby 1.8.7 and
374
  Ruby 1.9.3 (ehelms@redhat.com)
375
- Added calls in extensions to simplify adding and removing consumers from
376
  consumer groups (paji@redhat.com)
377
- Added consumer group associate and unassociate calls (paji@redhat.com)
378
- cassette update (jsherril@redhat.com)
379
- adding support for repository ids as part of repository unit listing
380
  (jsherril@redhat.com)
381
- fixing issue with sync cancel not working properly (jsherril@redhat.com)
382

    
383
* Thu Oct 25 2012 Eric D. Helms <ehelms@redhat.com> 0.1.2-1
384
- Version bump. (ehelms@redhat.com)
385
- Updates README indentation for code blocks and moves all Copyrights to Red
386
  Hat. (ehelms@redhat.com)
387
- Updates README to include configuration and examples. (ehelms@redhat.com)
388
- Updates to add bold emphasis to pulp version in README. (ehelms@redhat.com)
389
- Adds Rake task to grab pulp version and input to the README.
390
  (ehelms@redhat.com)
391
- Adds missing errata test and cassette. (ehelms@redhat.com)
392
- Moves helpers to be under test/support. (ehelms@redhat.com)
393
- Adds missing cassette file. (ehelms@redhat.com)
394
- Merge branch 'master' of github.com:Katello/runcible (ehelms@redhat.com)
395
- Merge pull request #13 from parthaa/consumer-groups (ericdhelms@gmail.com)
396
- Initial set of runcible consumer group bindings (paji@redhat.com)
397
- Added  consumer tests for content install/update/uninstall (paji@redhat.com)
398
- Moves fixtures to be under test/fixtures instead of test/integration.
399
  (ehelms@redhat.com)
400
- Fixed repo sync schedule based tests (paji@redhat.com)
401
- Adding back previously deleted test files. (ehelms@redhat.com)
402
- Misc Fixes to get pulp artifacts running (paji@redhat.com)
403
- Patch to get all tests running right in live mode (paji@redhat.com)
404
- Tweaked the tests to pass in the 'none' mode (paji@redhat.com)
405
- Split up the extension/resources tests in  different files (paji@redhat.com)
406
- Fixed consumer unit tests based on comments offered in the pull
407
  (paji@redhat.com)
408
- Moved the binding methods to follow the runcible convention of separate calls
409
  (paji@redhat.com)
410
- Reverting a previous change on this file (paji@redhat.com)
411
- Merge branch 'master' into pulp-consumer-changes (paji@redhat.com)
412
- Added tests for consumer API (paji@redhat.com)
413
- Changes to deal with pulp-server-0.0.331-1.fc16.noarch (paji@redhat.com)
414
- Fixed notifications to work with the new pulp (paji@redhat.com)
415

    
416
* Tue Oct 16 2012 Eric D. Helms <ehelms@redhat.com> 0.1.1-1
417
- Version bump. (ehelms@redhat.com)
418

    
419
* Tue Oct 09 2012 Eric D. Helms <ehelms@redhat.com> 0.1.0-1
420
- Version bump. (ehelms@redhat.com)
421
- Updates README with Travis status and new test options. (ehelms@redhat.com)
422
- Removing puts in helper that are not quite helpful. (ehelms@redhat.com)
423
- Adds i18n for activesupport. (ehelms@redhat.com)
424
- Typo in Gemfile. (ehelms@redhat.com)
425
- Adds missing active_support requirement. (ehelms@redhat.com)
426
- Updates to testing to allow recorded and none modes to be run on a system
427
  without pulp installed.  Adds option to turn logging during testing off or
428
  on. (ehelms@redhat.com)
429
- Removes references to ruby-debug. (ehelms@redhat.com)
430
- Adds rake to Gemfile. (ehelms@redhat.com)
431
- Removes ruby-debug from Gemfile, adds none as the default test mode and adds
432
  a basic travis config file. (ehelms@redhat.com)
433
- merge conflicts (jsherril@redhat.com)
434
- cassette updates (jsherril@redhat.com)
435
- uncommenting some repo test code (jsherril@redhat.com)
436
- cassette updates (jsherril@redhat.com)
437
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
438
  pulpv2 (bbuckingham@redhat.com)
439
- fixing broken test (jsherril@redhat.com)
440
- cleaning up search tests (jsherril@redhat.com)
441
- pulpv2 - consumer - adding apis for repo binding and content actions
442
  (bbuckingham@redhat.com)
443
- moving repository test (jsherril@redhat.com)
444
- cassette updates (jsherril@redhat.com)
445
- cassette updates (jsherril@redhat.com)
446
- adding distributions and other unit tests (jsherril@redhat.com)
447
- adding new ignore (jsherril@redhat.com)
448
- pulpv2 - adding retrieve all for users and re-organizing
449
  (jsherril@redhat.com)
450
- Merge pull request #5 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
451
- cassette updates (jsherril@redhat.com)
452
- adding testing for rpm/errata/category/group (jsherril@redhat.com)
453
- Revert "removing generate_metadata as it is not a valid option"
454
  (jsherril@redhat.com)
455
- adding units (jsherril@redhat.com)
456
- removing spaces (jsherril@redhat.com)
457
- removing generate_metadata as it is not a valid option (jsherril@redhat.com)
458
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
459
  pulpv2 (bbuckingham@redhat.com)
460
- Merge pull request #4 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
461
- cassette updates (jsherril@redhat.com)
462
- pull request comment (jsherril@redhat.com)
463
- addressing pull request comments (jsherril@redhat.com)
464
- fixing return on publish_all extension (jsherril@redhat.com)
465
- new cassettes (jsherril@redhat.com)
466
- adding event notifiers to runcible (jsherril@redhat.com)
467
- cassette update (jsherril@redhat.com)
468
- adding extension test (jsherril@redhat.com)
469
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
470
  pulpv2 (bbuckingham@redhat.com)
471
- cassette updates (jsherril@redhat.com)
472
- cassette updates (jsherril@redhat.com)
473
- moving some tests to their own vcr cassettes for isolation, also
474
  consolidating setups into before_suites (jsherril@redhat.com)
475
- reducing sleep time (jsherril@redhat.com)
476
- really adding None record type (jsherril@redhat.com)
477
- Small fix to get pulp repo test running (paji@redhat.com)
478
- addressing previous commits comments (jsherril@redhat.com)
479
- fixes #2 - fixing typo in gemspec (jsherril@redhat.com)
480
- Adding missing license (jsherril@redhat.com)
481
- updating readme to point to none mode (jsherril@redhat.com)
482
- updating vcr cassettes (jsherril@redhat.com)
483
- Moving with_indifferent_access to base (jsherril@redhat.com)
484
- removing unintentionally commented out section (jsherril@redhat.com)
485
- adding unit unassociation methods (jsherril@redhat.com)
486
- allowing None for record mode (jsherril@redhat.com)
487
- fixes for pull request (jsherril@redhat.com)
488
- Update to support proper get params with multiple values
489
  (jsherril@redhat.com)
490
- pulp v2 - consumer - initial changes for
491
  create/review/update/delete/profile/profile upload (bbuckingham@redhat.com)
492
- moving importers and distributors to their own files (jsherril@redhat.com)
493
- adding schedule extension and moviing requires (jsherril@redhat.com)
494
- adding new vcr data (jsherril@redhat.com)
495
- adding tests for repoistory schedules (jsherril@redhat.com)
496
- moving unit repo listing to runcible (jsherril@redhat.com)
497
- some task changes, properly implementing sync_status (jsherril@redhat.com)
498
- updated vcr data (jsherril@redhat.com)
499
- moving all unit_copy items to runcible (jsherril@redhat.com)
500
- new vcr data (jsherril@redhat.com)
501
- adding importer/distributor extensions and tests (jsherril@redhat.com)
502
- README update for tests (jsherril@redhat.com)
503
- adding importer and exporter objects (jsherril@redhat.com)
504
- Updates to re-scope from Pulp to Resources and from Pulp to Extensions and
505
  fit in line more with the directory structure. (ehelms@redhat.com)
506
- Version bump. (ehelms@redhat.com)
507

    
508
* Tue Oct 09 2012 Eric D. Helms <ehelms@redhat.com> 0.1.0-1
509
- Updates README with Travis status and new test options. (ehelms@redhat.com)
510
- Removing puts in helper that are not quite helpful. (ehelms@redhat.com)
511
- Adds i18n for activesupport. (ehelms@redhat.com)
512
- Typo in Gemfile. (ehelms@redhat.com)
513
- Adds missing active_support requirement. (ehelms@redhat.com)
514
- Updates to testing to allow recorded and none modes to be run on a system
515
  without pulp installed.  Adds option to turn logging during testing off or
516
  on. (ehelms@redhat.com)
517
- Removes references to ruby-debug. (ehelms@redhat.com)
518
- Adds rake to Gemfile. (ehelms@redhat.com)
519
- Removes ruby-debug from Gemfile, adds none as the default test mode and adds
520
  a basic travis config file. (ehelms@redhat.com)
521
- merge conflicts (jsherril@redhat.com)
522
- cassette updates (jsherril@redhat.com)
523
- uncommenting some repo test code (jsherril@redhat.com)
524
- cassette updates (jsherril@redhat.com)
525
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
526
  pulpv2 (bbuckingham@redhat.com)
527
- fixing broken test (jsherril@redhat.com)
528
- cleaning up search tests (jsherril@redhat.com)
529
- pulpv2 - consumer - adding apis for repo binding and content actions
530
  (bbuckingham@redhat.com)
531
- moving repository test (jsherril@redhat.com)
532
- cassette updates (jsherril@redhat.com)
533
- cassette updates (jsherril@redhat.com)
534
- adding distributions and other unit tests (jsherril@redhat.com)
535
- adding new ignore (jsherril@redhat.com)
536
- pulpv2 - adding retrieve all for users and re-organizing
537
  (jsherril@redhat.com)
538
- Merge pull request #5 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
539
- cassette updates (jsherril@redhat.com)
540
- adding testing for rpm/errata/category/group (jsherril@redhat.com)
541
- Revert "removing generate_metadata as it is not a valid option"
542
  (jsherril@redhat.com)
543
- adding units (jsherril@redhat.com)
544
- removing spaces (jsherril@redhat.com)
545
- removing generate_metadata as it is not a valid option (jsherril@redhat.com)
546
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
547
  pulpv2 (bbuckingham@redhat.com)
548
- Merge pull request #4 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
549
- cassette updates (jsherril@redhat.com)
550
- pull request comment (jsherril@redhat.com)
551
- addressing pull request comments (jsherril@redhat.com)
552
- fixing return on publish_all extension (jsherril@redhat.com)
553
- new cassettes (jsherril@redhat.com)
554
- adding event notifiers to runcible (jsherril@redhat.com)
555
- cassette update (jsherril@redhat.com)
556
- adding extension test (jsherril@redhat.com)
557
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
558
  pulpv2 (bbuckingham@redhat.com)
559
- cassette updates (jsherril@redhat.com)
560
- cassette updates (jsherril@redhat.com)
561
- moving some tests to their own vcr cassettes for isolation, also
562
  consolidating setups into before_suites (jsherril@redhat.com)
563
- reducing sleep time (jsherril@redhat.com)
564
- really adding None record type (jsherril@redhat.com)
565
- Small fix to get pulp repo test running (paji@redhat.com)
566
- addressing previous commits comments (jsherril@redhat.com)
567
- fixes #2 - fixing typo in gemspec (jsherril@redhat.com)
568
- Adding missing license (jsherril@redhat.com)
569
- updating readme to point to none mode (jsherril@redhat.com)
570
- updating vcr cassettes (jsherril@redhat.com)
571
- Moving with_indifferent_access to base (jsherril@redhat.com)
572
- removing unintentionally commented out section (jsherril@redhat.com)
573
- adding unit unassociation methods (jsherril@redhat.com)
574
- allowing None for record mode (jsherril@redhat.com)
575
- fixes for pull request (jsherril@redhat.com)
576
- Update to support proper get params with multiple values
577
  (jsherril@redhat.com)
578
- pulp v2 - consumer - initial changes for
579
  create/review/update/delete/profile/profile upload (bbuckingham@redhat.com)
580
- moving importers and distributors to their own files (jsherril@redhat.com)
581
- adding schedule extension and moviing requires (jsherril@redhat.com)
582
- adding new vcr data (jsherril@redhat.com)
583
- adding tests for repoistory schedules (jsherril@redhat.com)
584
- moving unit repo listing to runcible (jsherril@redhat.com)
585
- some task changes, properly implementing sync_status (jsherril@redhat.com)
586
- updated vcr data (jsherril@redhat.com)
587
- moving all unit_copy items to runcible (jsherril@redhat.com)
588
- new vcr data (jsherril@redhat.com)
589
- adding importer/distributor extensions and tests (jsherril@redhat.com)
590
- README update for tests (jsherril@redhat.com)
591
- adding importer and exporter objects (jsherril@redhat.com)
592
- Updates to re-scope from Pulp to Resources and from Pulp to Extensions and
593
  fit in line more with the directory structure. (ehelms@redhat.com)
594
- Version bump. (ehelms@redhat.com)
595

    
596
* Tue Oct 09 2012 Eric D. Helms <ehelms@redhat.com> 0.1.0-1
597
- Version bump to 0.1 (ehelms@redhat.com)
598
- Removing puts in helper that are not quite helpful. (ehelms@redhat.com)
599
- Adds i18n for activesupport. (ehelms@redhat.com)
600
- Typo in Gemfile. (ehelms@redhat.com)
601
- Adds missing active_support requirement. (ehelms@redhat.com)
602
- Updates to testing to allow recorded and none modes to be run on a system
603
  without pulp installed.  Adds option to turn logging during testing off or
604
  on. (ehelms@redhat.com)
605
- Removes references to ruby-debug. (ehelms@redhat.com)
606
- Adds rake to Gemfile. (ehelms@redhat.com)
607
- Removes ruby-debug from Gemfile, adds none as the default test mode and adds
608
  a basic travis config file. (ehelms@redhat.com)
609
- merge conflicts (jsherril@redhat.com)
610
- cassette updates (jsherril@redhat.com)
611
- uncommenting some repo test code (jsherril@redhat.com)
612
- cassette updates (jsherril@redhat.com)
613
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
614
  pulpv2 (bbuckingham@redhat.com)
615
- fixing broken test (jsherril@redhat.com)
616
- cleaning up search tests (jsherril@redhat.com)
617
- pulpv2 - consumer - adding apis for repo binding and content actions
618
  (bbuckingham@redhat.com)
619
- moving repository test (jsherril@redhat.com)
620
- cassette updates (jsherril@redhat.com)
621
- cassette updates (jsherril@redhat.com)
622
- adding distributions and other unit tests (jsherril@redhat.com)
623
- adding new ignore (jsherril@redhat.com)
624
- pulpv2 - adding retrieve all for users and re-organizing
625
  (jsherril@redhat.com)
626
- Merge pull request #5 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
627
- cassette updates (jsherril@redhat.com)
628
- adding testing for rpm/errata/category/group (jsherril@redhat.com)
629
- Revert "removing generate_metadata as it is not a valid option"
630
  (jsherril@redhat.com)
631
- adding units (jsherril@redhat.com)
632
- removing spaces (jsherril@redhat.com)
633
- removing generate_metadata as it is not a valid option (jsherril@redhat.com)
634
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
635
  pulpv2 (bbuckingham@redhat.com)
636
- Merge pull request #4 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
637
- cassette updates (jsherril@redhat.com)
638
- pull request comment (jsherril@redhat.com)
639
- addressing pull request comments (jsherril@redhat.com)
640
- fixing return on publish_all extension (jsherril@redhat.com)
641
- new cassettes (jsherril@redhat.com)
642
- adding event notifiers to runcible (jsherril@redhat.com)
643
- cassette update (jsherril@redhat.com)
644
- adding extension test (jsherril@redhat.com)
645
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
646
  pulpv2 (bbuckingham@redhat.com)
647
- cassette updates (jsherril@redhat.com)
648
- cassette updates (jsherril@redhat.com)
649
- moving some tests to their own vcr cassettes for isolation, also
650
  consolidating setups into before_suites (jsherril@redhat.com)
651
- reducing sleep time (jsherril@redhat.com)
652
- really adding None record type (jsherril@redhat.com)
653
- Small fix to get pulp repo test running (paji@redhat.com)
654
- addressing previous commits comments (jsherril@redhat.com)
655
- fixes #2 - fixing typo in gemspec (jsherril@redhat.com)
656
- Adding missing license (jsherril@redhat.com)
657
- updating readme to point to none mode (jsherril@redhat.com)
658
- updating vcr cassettes (jsherril@redhat.com)
659
- Moving with_indifferent_access to base (jsherril@redhat.com)
660
- removing unintentionally commented out section (jsherril@redhat.com)
661
- adding unit unassociation methods (jsherril@redhat.com)
662
- allowing None for record mode (jsherril@redhat.com)
663
- fixes for pull request (jsherril@redhat.com)
664
- Update to support proper get params with multiple values
665
  (jsherril@redhat.com)
666
- pulp v2 - consumer - initial changes for
667
  create/review/update/delete/profile/profile upload (bbuckingham@redhat.com)
668
- moving importers and distributors to their own files (jsherril@redhat.com)
669
- adding schedule extension and moviing requires (jsherril@redhat.com)
670
- adding new vcr data (jsherril@redhat.com)
671
- adding tests for repoistory schedules (jsherril@redhat.com)
672
- moving unit repo listing to runcible (jsherril@redhat.com)
673
- some task changes, properly implementing sync_status (jsherril@redhat.com)
674
- updated vcr data (jsherril@redhat.com)
675
- moving all unit_copy items to runcible (jsherril@redhat.com)
676
- new vcr data (jsherril@redhat.com)
677
- adding importer/distributor extensions and tests (jsherril@redhat.com)
678
- README update for tests (jsherril@redhat.com)
679
- adding importer and exporter objects (jsherril@redhat.com)
680
- Updates to re-scope from Pulp to Resources and from Pulp to Extensions and
681
  fit in line more with the directory structure. (ehelms@redhat.com)
682
- Version bump. (ehelms@redhat.com)
683

    
684
* Tue Oct 09 2012 Eric D. Helms <ehelms@redhat.com>
685
- Version bump to 0.1 (ehelms@redhat.com)
686
- Removing puts in helper that are not quite helpful. (ehelms@redhat.com)
687
- Adds i18n for activesupport. (ehelms@redhat.com)
688
- Typo in Gemfile. (ehelms@redhat.com)
689
- Adds missing active_support requirement. (ehelms@redhat.com)
690
- Updates to testing to allow recorded and none modes to be run on a system
691
  without pulp installed.  Adds option to turn logging during testing off or
692
  on. (ehelms@redhat.com)
693
- Removes references to ruby-debug. (ehelms@redhat.com)
694
- Adds rake to Gemfile. (ehelms@redhat.com)
695
- Removes ruby-debug from Gemfile, adds none as the default test mode and adds
696
  a basic travis config file. (ehelms@redhat.com)
697
- merge conflicts (jsherril@redhat.com)
698
- cassette updates (jsherril@redhat.com)
699
- uncommenting some repo test code (jsherril@redhat.com)
700
- cassette updates (jsherril@redhat.com)
701
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
702
  pulpv2 (bbuckingham@redhat.com)
703
- fixing broken test (jsherril@redhat.com)
704
- cleaning up search tests (jsherril@redhat.com)
705
- pulpv2 - consumer - adding apis for repo binding and content actions
706
  (bbuckingham@redhat.com)
707
- moving repository test (jsherril@redhat.com)
708
- cassette updates (jsherril@redhat.com)
709
- cassette updates (jsherril@redhat.com)
710
- adding distributions and other unit tests (jsherril@redhat.com)
711
- adding new ignore (jsherril@redhat.com)
712
- pulpv2 - adding retrieve all for users and re-organizing
713
  (jsherril@redhat.com)
714
- Merge pull request #5 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
715
- cassette updates (jsherril@redhat.com)
716
- adding testing for rpm/errata/category/group (jsherril@redhat.com)
717
- Revert "removing generate_metadata as it is not a valid option"
718
  (jsherril@redhat.com)
719
- adding units (jsherril@redhat.com)
720
- removing spaces (jsherril@redhat.com)
721
- removing generate_metadata as it is not a valid option (jsherril@redhat.com)
722
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
723
  pulpv2 (bbuckingham@redhat.com)
724
- Merge pull request #4 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
725
- cassette updates (jsherril@redhat.com)
726
- pull request comment (jsherril@redhat.com)
727
- addressing pull request comments (jsherril@redhat.com)
728
- fixing return on publish_all extension (jsherril@redhat.com)
729
- new cassettes (jsherril@redhat.com)
730
- adding event notifiers to runcible (jsherril@redhat.com)
731
- cassette update (jsherril@redhat.com)
732
- adding extension test (jsherril@redhat.com)
733
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
734
  pulpv2 (bbuckingham@redhat.com)
735
- cassette updates (jsherril@redhat.com)
736
- cassette updates (jsherril@redhat.com)
737
- moving some tests to their own vcr cassettes for isolation, also
738
  consolidating setups into before_suites (jsherril@redhat.com)
739
- reducing sleep time (jsherril@redhat.com)
740
- really adding None record type (jsherril@redhat.com)
741
- Small fix to get pulp repo test running (paji@redhat.com)
742
- addressing previous commits comments (jsherril@redhat.com)
743
- fixes #2 - fixing typo in gemspec (jsherril@redhat.com)
744
- Adding missing license (jsherril@redhat.com)
745
- updating readme to point to none mode (jsherril@redhat.com)
746
- updating vcr cassettes (jsherril@redhat.com)
747
- Moving with_indifferent_access to base (jsherril@redhat.com)
748
- removing unintentionally commented out section (jsherril@redhat.com)
749
- adding unit unassociation methods (jsherril@redhat.com)
750
- allowing None for record mode (jsherril@redhat.com)
751
- fixes for pull request (jsherril@redhat.com)
752
- Update to support proper get params with multiple values
753
  (jsherril@redhat.com)
754
- pulp v2 - consumer - initial changes for
755
  create/review/update/delete/profile/profile upload (bbuckingham@redhat.com)
756
- moving importers and distributors to their own files (jsherril@redhat.com)
757
- adding schedule extension and moviing requires (jsherril@redhat.com)
758
- adding new vcr data (jsherril@redhat.com)
759
- adding tests for repoistory schedules (jsherril@redhat.com)
760
- moving unit repo listing to runcible (jsherril@redhat.com)
761
- some task changes, properly implementing sync_status (jsherril@redhat.com)
762
- updated vcr data (jsherril@redhat.com)
763
- moving all unit_copy items to runcible (jsherril@redhat.com)
764
- new vcr data (jsherril@redhat.com)
765
- adding importer/distributor extensions and tests (jsherril@redhat.com)
766
- README update for tests (jsherril@redhat.com)
767
- adding importer and exporter objects (jsherril@redhat.com)
768
- Updates to re-scope from Pulp to Resources and from Pulp to Extensions and
769
  fit in line more with the directory structure. (ehelms@redhat.com)
770
- Version bump. (ehelms@redhat.com)
771

    
772
* Tue Oct 09 2012 Eric D. Helms <ehelms@redhat.com> 0.1.0-1
773
- Removing puts in helper that are not quite helpful. (ehelms@redhat.com)
774
- Adds i18n for activesupport. (ehelms@redhat.com)
775
- Typo in Gemfile. (ehelms@redhat.com)
776
- Adds missing active_support requirement. (ehelms@redhat.com)
777
- Updates to testing to allow recorded and none modes to be run on a system
778
  without pulp installed.  Adds option to turn logging during testing off or
779
  on. (ehelms@redhat.com)
780
- Removes references to ruby-debug. (ehelms@redhat.com)
781
- Adds rake to Gemfile. (ehelms@redhat.com)
782
- Removes ruby-debug from Gemfile, adds none as the default test mode and adds
783
  a basic travis config file. (ehelms@redhat.com)
784
- merge conflicts (jsherril@redhat.com)
785
- cassette updates (jsherril@redhat.com)
786
- uncommenting some repo test code (jsherril@redhat.com)
787
- cassette updates (jsherril@redhat.com)
788
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
789
  pulpv2 (bbuckingham@redhat.com)
790
- fixing broken test (jsherril@redhat.com)
791
- cleaning up search tests (jsherril@redhat.com)
792
- pulpv2 - consumer - adding apis for repo binding and content actions
793
  (bbuckingham@redhat.com)
794
- moving repository test (jsherril@redhat.com)
795
- cassette updates (jsherril@redhat.com)
796
- cassette updates (jsherril@redhat.com)
797
- adding distributions and other unit tests (jsherril@redhat.com)
798
- adding new ignore (jsherril@redhat.com)
799
- pulpv2 - adding retrieve all for users and re-organizing
800
  (jsherril@redhat.com)
801
- Merge pull request #5 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
802
- cassette updates (jsherril@redhat.com)
803
- adding testing for rpm/errata/category/group (jsherril@redhat.com)
804
- Revert "removing generate_metadata as it is not a valid option"
805
  (jsherril@redhat.com)
806
- adding units (jsherril@redhat.com)
807
- removing spaces (jsherril@redhat.com)
808
- removing generate_metadata as it is not a valid option (jsherril@redhat.com)
809
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
810
  pulpv2 (bbuckingham@redhat.com)
811
- Merge pull request #4 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
812
- cassette updates (jsherril@redhat.com)
813
- pull request comment (jsherril@redhat.com)
814
- addressing pull request comments (jsherril@redhat.com)
815
- fixing return on publish_all extension (jsherril@redhat.com)
816
- new cassettes (jsherril@redhat.com)
817
- adding event notifiers to runcible (jsherril@redhat.com)
818
- cassette update (jsherril@redhat.com)
819
- adding extension test (jsherril@redhat.com)
820
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
821
  pulpv2 (bbuckingham@redhat.com)
822
- cassette updates (jsherril@redhat.com)
823
- cassette updates (jsherril@redhat.com)
824
- moving some tests to their own vcr cassettes for isolation, also
825
  consolidating setups into before_suites (jsherril@redhat.com)
826
- reducing sleep time (jsherril@redhat.com)
827
- really adding None record type (jsherril@redhat.com)
828
- Small fix to get pulp repo test running (paji@redhat.com)
829
- addressing previous commits comments (jsherril@redhat.com)
830
- fixes #2 - fixing typo in gemspec (jsherril@redhat.com)
831
- Adding missing license (jsherril@redhat.com)
832
- updating readme to point to none mode (jsherril@redhat.com)
833
- updating vcr cassettes (jsherril@redhat.com)
834
- Moving with_indifferent_access to base (jsherril@redhat.com)
835
- removing unintentionally commented out section (jsherril@redhat.com)
836
- adding unit unassociation methods (jsherril@redhat.com)
837
- allowing None for record mode (jsherril@redhat.com)
838
- fixes for pull request (jsherril@redhat.com)
839
- Update to support proper get params with multiple values
840
  (jsherril@redhat.com)
841
- pulp v2 - consumer - initial changes for
842
  create/review/update/delete/profile/profile upload (bbuckingham@redhat.com)
843
- moving importers and distributors to their own files (jsherril@redhat.com)
844
- adding schedule extension and moviing requires (jsherril@redhat.com)
845
- adding new vcr data (jsherril@redhat.com)
846
- adding tests for repoistory schedules (jsherril@redhat.com)
847
- moving unit repo listing to runcible (jsherril@redhat.com)
848
- some task changes, properly implementing sync_status (jsherril@redhat.com)
849
- updated vcr data (jsherril@redhat.com)
850
- moving all unit_copy items to runcible (jsherril@redhat.com)
851
- new vcr data (jsherril@redhat.com)
852
- adding importer/distributor extensions and tests (jsherril@redhat.com)
853
- README update for tests (jsherril@redhat.com)
854
- adding importer and exporter objects (jsherril@redhat.com)
855
- Updates to re-scope from Pulp to Resources and from Pulp to Extensions and
856
  fit in line more with the directory structure. (ehelms@redhat.com)
857
- Version bump. (ehelms@redhat.com)
858

    
859
* Tue Oct 09 2012 Eric D. Helms <ehelms@redhat.com> 0.1.1-1
860
- Removing puts in helper that are not quite helpful. (ehelms@redhat.com)
861
- Adds i18n for activesupport. (ehelms@redhat.com)
862
- Typo in Gemfile. (ehelms@redhat.com)
863
- Adds missing active_support requirement. (ehelms@redhat.com)
864
- Updates to testing to allow recorded and none modes to be run on a system
865
  without pulp installed.  Adds option to turn logging during testing off or
866
  on. (ehelms@redhat.com)
867
- Removes references to ruby-debug. (ehelms@redhat.com)
868
- Adds rake to Gemfile. (ehelms@redhat.com)
869
- Removes ruby-debug from Gemfile, adds none as the default test mode and adds
870
  a basic travis config file. (ehelms@redhat.com)
871
- merge conflicts (jsherril@redhat.com)
872
- cassette updates (jsherril@redhat.com)
873
- uncommenting some repo test code (jsherril@redhat.com)
874
- cassette updates (jsherril@redhat.com)
875
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
876
  pulpv2 (bbuckingham@redhat.com)
877
- fixing broken test (jsherril@redhat.com)
878
- cleaning up search tests (jsherril@redhat.com)
879
- pulpv2 - consumer - adding apis for repo binding and content actions
880
  (bbuckingham@redhat.com)
881
- moving repository test (jsherril@redhat.com)
882
- cassette updates (jsherril@redhat.com)
883
- cassette updates (jsherril@redhat.com)
884
- adding distributions and other unit tests (jsherril@redhat.com)
885
- adding new ignore (jsherril@redhat.com)
886
- pulpv2 - adding retrieve all for users and re-organizing
887
  (jsherril@redhat.com)
888
- Merge pull request #5 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
889
- cassette updates (jsherril@redhat.com)
890
- adding testing for rpm/errata/category/group (jsherril@redhat.com)
891
- Revert "removing generate_metadata as it is not a valid option"
892
  (jsherril@redhat.com)
893
- adding units (jsherril@redhat.com)
894
- removing spaces (jsherril@redhat.com)
895
- removing generate_metadata as it is not a valid option (jsherril@redhat.com)
896
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
897
  pulpv2 (bbuckingham@redhat.com)
898
- Merge pull request #4 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
899
- cassette updates (jsherril@redhat.com)
900
- pull request comment (jsherril@redhat.com)
901
- addressing pull request comments (jsherril@redhat.com)
902
- fixing return on publish_all extension (jsherril@redhat.com)
903
- new cassettes (jsherril@redhat.com)
904
- adding event notifiers to runcible (jsherril@redhat.com)
905
- cassette update (jsherril@redhat.com)
906
- adding extension test (jsherril@redhat.com)
907
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
908
  pulpv2 (bbuckingham@redhat.com)
909
- cassette updates (jsherril@redhat.com)
910
- cassette updates (jsherril@redhat.com)
911
- moving some tests to their own vcr cassettes for isolation, also
912
  consolidating setups into before_suites (jsherril@redhat.com)
913
- reducing sleep time (jsherril@redhat.com)
914
- really adding None record type (jsherril@redhat.com)
915
- Small fix to get pulp repo test running (paji@redhat.com)
916
- addressing previous commits comments (jsherril@redhat.com)
917
- fixes #2 - fixing typo in gemspec (jsherril@redhat.com)
918
- Adding missing license (jsherril@redhat.com)
919
- updating readme to point to none mode (jsherril@redhat.com)
920
- updating vcr cassettes (jsherril@redhat.com)
921
- Moving with_indifferent_access to base (jsherril@redhat.com)
922
- removing unintentionally commented out section (jsherril@redhat.com)
923
- adding unit unassociation methods (jsherril@redhat.com)
924
- allowing None for record mode (jsherril@redhat.com)
925
- fixes for pull request (jsherril@redhat.com)
926
- Update to support proper get params with multiple values
927
  (jsherril@redhat.com)
928
- pulp v2 - consumer - initial changes for
929
  create/review/update/delete/profile/profile upload (bbuckingham@redhat.com)
930
- moving importers and distributors to their own files (jsherril@redhat.com)
931
- adding schedule extension and moviing requires (jsherril@redhat.com)
932
- adding new vcr data (jsherril@redhat.com)
933
- adding tests for repoistory schedules (jsherril@redhat.com)
934
- moving unit repo listing to runcible (jsherril@redhat.com)
935
- some task changes, properly implementing sync_status (jsherril@redhat.com)
936
- updated vcr data (jsherril@redhat.com)
937
- moving all unit_copy items to runcible (jsherril@redhat.com)
938
- new vcr data (jsherril@redhat.com)
939
- adding importer/distributor extensions and tests (jsherril@redhat.com)
940
- README update for tests (jsherril@redhat.com)
941
- adding importer and exporter objects (jsherril@redhat.com)
942
- Updates to re-scope from Pulp to Resources and from Pulp to Extensions and
943
  fit in line more with the directory structure. (ehelms@redhat.com)
944
- Version bump. (ehelms@redhat.com)
945

    
946
* Tue Oct 09 2012 Eric D. Helms <ehelms@redhat.com>
947
- Removing puts in helper that are not quite helpful. (ehelms@redhat.com)
948
- Adds i18n for activesupport. (ehelms@redhat.com)
949
- Typo in Gemfile. (ehelms@redhat.com)
950
- Adds missing active_support requirement. (ehelms@redhat.com)
951
- Updates to testing to allow recorded and none modes to be run on a system
952
  without pulp installed.  Adds option to turn logging during testing off or
953
  on. (ehelms@redhat.com)
954
- Removes references to ruby-debug. (ehelms@redhat.com)
955
- Adds rake to Gemfile. (ehelms@redhat.com)
956
- Removes ruby-debug from Gemfile, adds none as the default test mode and adds
957
  a basic travis config file. (ehelms@redhat.com)
958
- merge conflicts (jsherril@redhat.com)
959
- cassette updates (jsherril@redhat.com)
960
- uncommenting some repo test code (jsherril@redhat.com)
961
- cassette updates (jsherril@redhat.com)
962
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
963
  pulpv2 (bbuckingham@redhat.com)
964
- fixing broken test (jsherril@redhat.com)
965
- cleaning up search tests (jsherril@redhat.com)
966
- pulpv2 - consumer - adding apis for repo binding and content actions
967
  (bbuckingham@redhat.com)
968
- moving repository test (jsherril@redhat.com)
969
- cassette updates (jsherril@redhat.com)
970
- cassette updates (jsherril@redhat.com)
971
- adding distributions and other unit tests (jsherril@redhat.com)
972
- adding new ignore (jsherril@redhat.com)
973
- pulpv2 - adding retrieve all for users and re-organizing
974
  (jsherril@redhat.com)
975
- Merge pull request #5 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
976
- cassette updates (jsherril@redhat.com)
977
- adding testing for rpm/errata/category/group (jsherril@redhat.com)
978
- Revert "removing generate_metadata as it is not a valid option"
979
  (jsherril@redhat.com)
980
- adding units (jsherril@redhat.com)
981
- removing spaces (jsherril@redhat.com)
982
- removing generate_metadata as it is not a valid option (jsherril@redhat.com)
983
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
984
  pulpv2 (bbuckingham@redhat.com)
985
- Merge pull request #4 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
986
- cassette updates (jsherril@redhat.com)
987
- pull request comment (jsherril@redhat.com)
988
- addressing pull request comments (jsherril@redhat.com)
989
- fixing return on publish_all extension (jsherril@redhat.com)
990
- new cassettes (jsherril@redhat.com)
991
- adding event notifiers to runcible (jsherril@redhat.com)
992
- cassette update (jsherril@redhat.com)
993
- adding extension test (jsherril@redhat.com)
994
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
995
  pulpv2 (bbuckingham@redhat.com)
996
- cassette updates (jsherril@redhat.com)
997
- cassette updates (jsherril@redhat.com)
998
- moving some tests to their own vcr cassettes for isolation, also
999
  consolidating setups into before_suites (jsherril@redhat.com)
1000
- reducing sleep time (jsherril@redhat.com)
1001
- really adding None record type (jsherril@redhat.com)
1002
- Small fix to get pulp repo test running (paji@redhat.com)
1003
- addressing previous commits comments (jsherril@redhat.com)
1004
- fixes #2 - fixing typo in gemspec (jsherril@redhat.com)
1005
- Adding missing license (jsherril@redhat.com)
1006
- updating readme to point to none mode (jsherril@redhat.com)
1007
- updating vcr cassettes (jsherril@redhat.com)
1008
- Moving with_indifferent_access to base (jsherril@redhat.com)
1009
- removing unintentionally commented out section (jsherril@redhat.com)
1010
- adding unit unassociation methods (jsherril@redhat.com)
1011
- allowing None for record mode (jsherril@redhat.com)
1012
- fixes for pull request (jsherril@redhat.com)
1013
- Update to support proper get params with multiple values
1014
  (jsherril@redhat.com)
1015
- pulp v2 - consumer - initial changes for
1016
  create/review/update/delete/profile/profile upload (bbuckingham@redhat.com)
1017
- moving importers and distributors to their own files (jsherril@redhat.com)
1018
- adding schedule extension and moviing requires (jsherril@redhat.com)
1019
- adding new vcr data (jsherril@redhat.com)
1020
- adding tests for repoistory schedules (jsherril@redhat.com)
1021
- moving unit repo listing to runcible (jsherril@redhat.com)
1022
- some task changes, properly implementing sync_status (jsherril@redhat.com)
1023
- updated vcr data (jsherril@redhat.com)
1024
- moving all unit_copy items to runcible (jsherril@redhat.com)
1025
- new vcr data (jsherril@redhat.com)
1026
- adding importer/distributor extensions and tests (jsherril@redhat.com)
1027
- README update for tests (jsherril@redhat.com)
1028
- adding importer and exporter objects (jsherril@redhat.com)
1029
- Updates to re-scope from Pulp to Resources and from Pulp to Extensions and
1030
  fit in line more with the directory structure. (ehelms@redhat.com)
1031
- Version bump. (ehelms@redhat.com)
1032

    
1033
* Tue Oct 09 2012 Eric D. Helms <ehelms@redhat.com> 0.1.1-1
1034
- Removing puts in helper that are not quite helpful. (ehelms@redhat.com)
1035
- Adds i18n for activesupport. (ehelms@redhat.com)
1036
- Typo in Gemfile. (ehelms@redhat.com)
1037
- Adds missing active_support requirement. (ehelms@redhat.com)
1038
- Updates to testing to allow recorded and none modes to be run on a system
1039
  without pulp installed.  Adds option to turn logging during testing off or
1040
  on. (ehelms@redhat.com)
1041
- Removes references to ruby-debug. (ehelms@redhat.com)
1042
- Adds rake to Gemfile. (ehelms@redhat.com)
1043
- Removes ruby-debug from Gemfile, adds none as the default test mode and adds
1044
  a basic travis config file. (ehelms@redhat.com)
1045
- merge conflicts (jsherril@redhat.com)
1046
- cassette updates (jsherril@redhat.com)
1047
- uncommenting some repo test code (jsherril@redhat.com)
1048
- cassette updates (jsherril@redhat.com)
1049
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
1050
  pulpv2 (bbuckingham@redhat.com)
1051
- fixing broken test (jsherril@redhat.com)
1052
- cleaning up search tests (jsherril@redhat.com)
1053
- pulpv2 - consumer - adding apis for repo binding and content actions
1054
  (bbuckingham@redhat.com)
1055
- moving repository test (jsherril@redhat.com)
1056
- cassette updates (jsherril@redhat.com)
1057
- cassette updates (jsherril@redhat.com)
1058
- adding distributions and other unit tests (jsherril@redhat.com)
1059
- adding new ignore (jsherril@redhat.com)
1060
- pulpv2 - adding retrieve all for users and re-organizing
1061
  (jsherril@redhat.com)
1062
- Merge pull request #5 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
1063
- cassette updates (jsherril@redhat.com)
1064
- adding testing for rpm/errata/category/group (jsherril@redhat.com)
1065
- Revert "removing generate_metadata as it is not a valid option"
1066
  (jsherril@redhat.com)
1067
- adding units (jsherril@redhat.com)
1068
- removing spaces (jsherril@redhat.com)
1069
- removing generate_metadata as it is not a valid option (jsherril@redhat.com)
1070
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
1071
  pulpv2 (bbuckingham@redhat.com)
1072
- Merge pull request #4 from jlsherrill/pulpv2 (ericdhelms@gmail.com)
1073
- cassette updates (jsherril@redhat.com)
1074
- pull request comment (jsherril@redhat.com)
1075
- addressing pull request comments (jsherril@redhat.com)
1076
- fixing return on publish_all extension (jsherril@redhat.com)
1077
- new cassettes (jsherril@redhat.com)
1078
- adding event notifiers to runcible (jsherril@redhat.com)
1079
- cassette update (jsherril@redhat.com)
1080
- adding extension test (jsherril@redhat.com)
1081
- Merge remote-tracking branch 'upstream-runcible/master' into fork-runcible-
1082
  pulpv2 (bbuckingham@redhat.com)
1083
- cassette updates (jsherril@redhat.com)
1084
- cassette updates (jsherril@redhat.com)
1085
- moving some tests to their own vcr cassettes for isolation, also
1086
  consolidating setups into before_suites (jsherril@redhat.com)
1087
- reducing sleep time (jsherril@redhat.com)
1088
- really adding None record type (jsherril@redhat.com)
1089
- Small fix to get pulp repo test running (paji@redhat.com)
1090
- addressing previous commits comments (jsherril@redhat.com)
1091
- fixes #2 - fixing typo in gemspec (jsherril@redhat.com)
1092
- Adding missing license (jsherril@redhat.com)
1093
- updating readme to point to none mode (jsherril@redhat.com)
1094
- updating vcr cassettes (jsherril@redhat.com)
1095
- Moving with_indifferent_access to base (jsherril@redhat.com)
1096
- removing unintentionally commented out section (jsherril@redhat.com)
1097
- adding unit unassociation methods (jsherril@redhat.com)
1098
- allowing None for record mode (jsherril@redhat.com)
1099
- fixes for pull request (jsherril@redhat.com)
1100
- Update to support proper get params with multiple values
1101
  (jsherril@redhat.com)
1102
- pulp v2 - consumer - initial changes for
1103
  create/review/update/delete/profile/profile upload (bbuckingham@redhat.com)
1104
- moving importers and distributors to their own files (jsherril@redhat.com)
1105
- adding schedule extension and moviing requires (jsherril@redhat.com)
1106
- adding new vcr data (jsherril@redhat.com)
1107
- adding tests for repoistory schedules (jsherril@redhat.com)
1108
- moving unit repo listing to runcible (jsherril@redhat.com)
1109
- some task changes, properly implementing sync_status (jsherril@redhat.com)
1110
- updated vcr data (jsherril@redhat.com)
1111
- moving all unit_copy items to runcible (jsherril@redhat.com)
1112
- new vcr data (jsherril@redhat.com)
1113
- adding importer/distributor extensions and tests (jsherril@redhat.com)
1114
- README update for tests (jsherril@redhat.com)
1115
- adding importer and exporter objects (jsherril@redhat.com)
1116
- Updates to re-scope from Pulp to Resources and from Pulp to Extensions and
1117
  fit in line more with the directory structure. (ehelms@redhat.com)
1118
- Version bump. (ehelms@redhat.com)
1119

    
1120
* Fri Sep 14 2012 Eric D. Helms <ehelms@redhat.com> 0.0.9-1
1121
- Updates verison. (ehelms@redhat.com)
1122
- Minor updates to spec file. (ehelms@redhat.com)
1123
- Automatic commit of package [rubygem-runcible] release [0.0.7-1].
1124
  (ehelms@redhat.com)
1125

    
1126
* Fri Sep 14 2012 Eric D. Helms <ehelms@redhat.com>
1127
- Automatic commit of package [rubygem-runcible] release [0.0.8-1].
1128
  (ehelms@redhat.com)
1129

    
1130
* Fri Sep 14 2012 Eric D. Helms <ehelms@redhat.com> 0.0.8-1
1131
- Minor updates to spec file. (ehelms@redhat.com)
1132
- Automatic commit of package [rubygem-runcible] release [0.0.7-1].
1133
  (ehelms@redhat.com)
1134

    
1135
* Fri Sep 14 2012 Eric D. Helms <ehelms@redhat.com>
1136
- Minor updates to spec file. (ehelms@redhat.com)
1137
- Automatic commit of package [rubygem-runcible] release [0.0.7-1].
1138
  (ehelms@redhat.com)
1139

    
1140
* Fri Sep 14 2012 Eric D. Helms <ehelms@redhat.com>
1141
- Minor updates to spec file. (ehelms@redhat.com)
1142
- Automatic commit of package [rubygem-runcible] release [0.0.7-1].
1143
  (ehelms@redhat.com)
1144

    
1145
* Fri Sep 14 2012 Eric D. Helms <ehelms@redhat.com> 0.0.7-1
1146
- Updates to spec file. (ehelms@redhat.com)
1147
- Moves install directive into prep section. (ehelms@redhat.com)
1148
- Flipping order of prep steps. (ehelms@redhat.com)
1149
- Fixing typo in source declaration in spec file. (ehelms@redhat.com)
1150
- Updates to spec file variables. (ehelms@redhat.com)
1151
- Adds documentation subpackage and cleans up spec file to handle tar.gz
1152
  source. (ehelms@redhat.com)
1153

    
1154
* Fri Sep 14 2012 Eric D. Helms <ehelms@redhat.com> 0.0.6-1
1155
- new package built with tito