mms2r 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/Rakefile +11 -5
  3. data/lib/mms2r.rb +1 -1
  4. metadata +2 -2
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.1.1 / 2007-06-11 (Dethklok roadie)
2
+
3
+ * rescue rcov non-dependency in Rakefile to make firebrigade happy
4
+
1
5
  == 1.1.0 / 2007-06-08 (Toki Wartooth)
2
6
 
3
7
  * get_body to return body text (Luke Francl)
data/Rakefile CHANGED
@@ -2,7 +2,10 @@
2
2
 
3
3
  require 'rubygems'
4
4
  require 'hoe'
5
- require 'rcov/rcovtask'
5
+ begin
6
+ require 'rcov/rcovtask'
7
+ rescue LoadError
8
+ end
6
9
 
7
10
  $LOAD_PATH.unshift 'lib'
8
11
  require 'mms2r'
@@ -20,10 +23,13 @@ Hoe.new('mms2r', MMS2R::Media::VERSION) do |p|
20
23
  p.clean_globs << 'coverage'
21
24
  end
22
25
 
23
- Rcov::RcovTask.new do |t|
24
- t.test_files = FileList['test/test*.rb']
25
- t.verbose = true
26
- t.rcov_opts << "--exclude rcov.rb,hpricot.rb,hpricot/.*\.rb"
26
+ begin
27
+ Rcov::RcovTask.new do |t|
28
+ t.test_files = FileList['test/test*.rb']
29
+ t.verbose = true
30
+ t.rcov_opts << "--exclude rcov.rb,hpricot.rb,hpricot/.*\.rb"
31
+ end
32
+ rescue NameError
27
33
  end
28
34
 
29
35
  # vim: syntax=Ruby
data/lib/mms2r.rb CHANGED
@@ -57,7 +57,7 @@ module MMS2R
57
57
  ##
58
58
  # MMS2R Library version
59
59
 
60
- VERSION = '1.1.0'
60
+ VERSION = '1.1.1'
61
61
 
62
62
  end
63
63
 
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: mms2r
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.1.0
7
- date: 2007-06-08 00:00:00 -07:00
6
+ version: 1.1.1
7
+ date: 2007-06-11 00:00:00 -07:00
8
8
  summary: Extract user media from MMS (and not carrier cruft)
9
9
  require_paths:
10
10
  - lib