rdoc_osx_dictionary 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,12 @@
1
+ === 1.0.1 / 2010-01-28
2
+
3
+ * 4 bug fixes:
4
+
5
+ * Added known bad XML to the exclude list.
6
+ * Added missing dependency on rdoc 2 gem. Old rdoc won't cut it.
7
+ * Fixed rsync command
8
+ * Terminal.app in UTF8 breaks on some input. Fix by clearing $LANG.
9
+
1
10
  === 1.0.0 / 2010-01-27
2
11
 
3
12
  * 1 major enhancement
data/Rakefile CHANGED
@@ -8,6 +8,8 @@ Hoe.plugin :seattlerb
8
8
  Hoe.spec 'rdoc_osx_dictionary' do
9
9
  developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
10
10
 
11
+ extra_deps << ['rdoc', '~> 2.4.3']
12
+
11
13
  self.rubyforge_name = 'seattlerb'
12
14
  end
13
15
 
@@ -3,10 +3,18 @@
3
3
  require 'fileutils'
4
4
  require 'rdoc/ri/driver'
5
5
 
6
+ # Forces /bin/tr to ignore badly formatted "unicode". (no clue where from)
7
+ ENV['LANG'] = ""
8
+
6
9
  class RDoc::OSXDictionary
7
- VERSION = '1.0.0'
10
+ VERSION = '1.0.1'
11
+
12
+ exclude = %w[ StringScanner#pre_match
13
+ StringScanner#post_match
14
+ Gem::Package::TarInput
15
+ IRB::OutputMethod
16
+ ]
8
17
 
9
- exclude = [] # nothing to exclude currently
10
18
  EXCLUDE = Hash[*exclude.map { |k| [k, true] }.flatten]
11
19
 
12
20
  NAME_MAP = {
@@ -244,9 +252,7 @@ class RDoc::OSXDictionary
244
252
 
245
253
  FileUtils.mkdir_p dict_path
246
254
 
247
- system("rsync", "-r",
248
- "#{base}/objects/#{dict_name}.dictionary",
249
- "#{dict_path}/#{dict_name}.dictionary")
255
+ system "rsync", "-r", "#{base}/objects/#{dict_name}.dictionary", dict_path
250
256
 
251
257
  FileUtils.touch dict_path
252
258
 
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdoc_osx_dictionary
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -30,9 +30,19 @@ cert_chain:
30
30
  FBHgymkyj/AOSqKRIpXPhjC6
31
31
  -----END CERTIFICATE-----
32
32
 
33
- date: 2010-01-27 00:00:00 -08:00
33
+ date: 2010-01-28 00:00:00 -08:00
34
34
  default_executable:
35
35
  dependencies:
36
+ - !ruby/object:Gem::Dependency
37
+ name: rdoc
38
+ type: :runtime
39
+ version_requirement:
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ version: 2.4.3
45
+ version:
36
46
  - !ruby/object:Gem::Dependency
37
47
  name: rubyforge
38
48
  type: :development
metadata.gz.sig CHANGED
Binary file