epublishing-rails-plugin-installer 6.0.3 → 6.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1 +1,2 @@
1
+ v6.0.4. FIX issue with windows and dev null
1
2
  v6.0.3. Move to github
data/Manifest CHANGED
@@ -1,9 +1,10 @@
1
- CHANGELOG
2
- LICENSE
3
- README.rdoc
4
- Rakefile
5
- bin/epub-plugin
6
- lib/commands/epub-plugin.rb
7
- lib/epublishing/tgz_builder.rb
8
- lib/epublishing/tgz_extractor.rb
9
- Manifest
1
+ CHANGELOG
2
+ LICENSE
3
+ Manifest
4
+ README.rdoc
5
+ Rakefile
6
+ bin/epub-plugin
7
+ epublishing-rails-plugin-installer.gemspec
8
+ lib/commands/epub-plugin.rb
9
+ lib/epublishing/tgz_builder.rb
10
+ lib/epublishing/tgz_extractor.rb
data/Rakefile CHANGED
@@ -13,6 +13,7 @@ Echoe.new("epublishing-rails-plugin-installer") do |s|
13
13
  s.rdoc_pattern = /README|TODO|LICENSE|CHANGELOG|BENCH|COMPAT|exceptions|behaviors|epub-plugin.rb/
14
14
  s.clean_pattern += ["ext/lib", "ext/include", "ext/share", "ext/libepublishing-rails-plugin-installer-?.??", "ext/bin", "ext/conftest.dSYM"]
15
15
  s.summary = 'An extension of standard rails plugin script to provide support for local file system and tgz files'
16
+ s.runtime_dependencies = ["os >=0.7.4"]
16
17
  end
17
18
 
18
19
  desc 'generate API documentation to doc/rdocs/index.html'
@@ -1,31 +1,34 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{epublishing-rails-plugin-installer}
5
- s.version = "6.0.3"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["David McCullars"]
9
- s.date = %q{2011-04-26}
10
- s.default_executable = %q{epub-plugin}
11
- s.description = %q{An extension of standard rails plugin script to provide support for local file system and tgz files}
12
- s.email = %q{dmccullars@ePublishing.com}
13
- s.executables = ["epub-plugin"]
14
- s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.rdoc", "lib/commands/epub-plugin.rb"]
15
- s.files = ["CHANGELOG", "LICENSE", "README.rdoc", "Rakefile", "bin/epub-plugin", "lib/commands/epub-plugin.rb", "lib/epublishing/tgz_builder.rb", "lib/epublishing/tgz_extractor.rb", "Manifest", "epublishing-rails-plugin-installer.gemspec"]
16
- s.homepage = %q{http://github.com/ePublishing/epublishing-rails-plugin-installer}
17
- s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Epublishing-rails-plugin-installer", "--main", "README.rdoc"]
18
- s.require_paths = ["lib"]
19
- s.rubyforge_project = %q{epublishing-rails-plugin-installer}
20
- s.rubygems_version = %q{1.6.1}
21
- s.summary = %q{An extension of standard rails plugin script to provide support for local file system and tgz files}
22
-
23
- if s.respond_to? :specification_version then
24
- s.specification_version = 3
25
-
26
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
- else
28
- end
29
- else
30
- end
31
- end
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{epublishing-rails-plugin-installer}
5
+ s.version = "6.0.4"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["David McCullars"]
9
+ s.date = %q{2011-05-12}
10
+ s.default_executable = %q{epub-plugin}
11
+ s.description = %q{An extension of standard rails plugin script to provide support for local file system and tgz files}
12
+ s.email = %q{dmccullars@ePublishing.com}
13
+ s.executables = ["epub-plugin"]
14
+ s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.rdoc", "lib/commands/epub-plugin.rb"]
15
+ s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.rdoc", "Rakefile", "bin/epub-plugin", "epublishing-rails-plugin-installer.gemspec", "lib/commands/epub-plugin.rb", "lib/epublishing/tgz_builder.rb", "lib/epublishing/tgz_extractor.rb"]
16
+ s.homepage = %q{http://github.com/ePublishing/epublishing-rails-plugin-installer}
17
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Epublishing-rails-plugin-installer", "--main", "README.rdoc"]
18
+ s.require_paths = ["lib"]
19
+ s.rubyforge_project = %q{epublishing-rails-plugin-installer}
20
+ s.rubygems_version = %q{1.5.2}
21
+ s.summary = %q{An extension of standard rails plugin script to provide support for local file system and tgz files}
22
+
23
+ if s.respond_to? :specification_version then
24
+ s.specification_version = 3
25
+
26
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
27
+ s.add_runtime_dependency(%q<os>, [">= 0.7.4"])
28
+ else
29
+ s.add_dependency(%q<os>, [">= 0.7.4"])
30
+ end
31
+ else
32
+ s.add_dependency(%q<os>, [">= 0.7.4"])
33
+ end
34
+ end
@@ -102,4 +102,20 @@ Plugin.class_eval do
102
102
 
103
103
  end
104
104
 
105
+ # Fix Bug in windows with 1.9.2
106
+ require 'active_support'
107
+ require 'os'
108
+ module Kernel
109
+
110
+ def silence_stream(stream)
111
+ old_stream = stream.dup
112
+ stream.reopen(OS.dev_null)
113
+ stream.sync = true
114
+ yield
115
+ ensure
116
+ stream.reopen(old_stream)
117
+ end
118
+
119
+ end
120
+
105
121
  Commands::Plugin.parse!
metadata CHANGED
@@ -1,85 +1,80 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: epublishing-rails-plugin-installer
3
- version: !ruby/object:Gem::Version
4
- hash: 41
3
+ version: !ruby/object:Gem::Version
4
+ version: 6.0.4
5
5
  prerelease:
6
- segments:
7
- - 6
8
- - 0
9
- - 3
10
- version: 6.0.3
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - David McCullars
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-04-26 00:00:00 -04:00
12
+ date: 2011-05-12 00:00:00.000000000 -05:00
19
13
  default_executable:
20
- dependencies: []
21
-
22
- description: An extension of standard rails plugin script to provide support for local file system and tgz files
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: os
17
+ requirement: &23089812 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: 0.7.4
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *23089812
26
+ description: An extension of standard rails plugin script to provide support for local
27
+ file system and tgz files
23
28
  email: dmccullars@ePublishing.com
24
- executables:
29
+ executables:
25
30
  - epub-plugin
26
31
  extensions: []
27
-
28
- extra_rdoc_files:
32
+ extra_rdoc_files:
29
33
  - CHANGELOG
30
34
  - LICENSE
31
35
  - README.rdoc
32
36
  - lib/commands/epub-plugin.rb
33
- files:
37
+ files:
34
38
  - CHANGELOG
35
39
  - LICENSE
40
+ - Manifest
36
41
  - README.rdoc
37
42
  - Rakefile
38
43
  - bin/epub-plugin
44
+ - epublishing-rails-plugin-installer.gemspec
39
45
  - lib/commands/epub-plugin.rb
40
46
  - lib/epublishing/tgz_builder.rb
41
47
  - lib/epublishing/tgz_extractor.rb
42
- - Manifest
43
- - epublishing-rails-plugin-installer.gemspec
44
48
  has_rdoc: true
45
49
  homepage: http://github.com/ePublishing/epublishing-rails-plugin-installer
46
50
  licenses: []
47
-
48
51
  post_install_message:
49
- rdoc_options:
52
+ rdoc_options:
50
53
  - --line-numbers
51
54
  - --inline-source
52
55
  - --title
53
56
  - Epublishing-rails-plugin-installer
54
57
  - --main
55
58
  - README.rdoc
56
- require_paths:
59
+ require_paths:
57
60
  - lib
58
- required_ruby_version: !ruby/object:Gem::Requirement
61
+ required_ruby_version: !ruby/object:Gem::Requirement
59
62
  none: false
60
- requirements:
61
- - - ">="
62
- - !ruby/object:Gem::Version
63
- hash: 3
64
- segments:
65
- - 0
66
- version: "0"
67
- required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
68
  none: false
69
- requirements:
70
- - - ">="
71
- - !ruby/object:Gem::Version
72
- hash: 11
73
- segments:
74
- - 1
75
- - 2
76
- version: "1.2"
69
+ requirements:
70
+ - - ! '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '1.2'
77
73
  requirements: []
78
-
79
74
  rubyforge_project: epublishing-rails-plugin-installer
80
- rubygems_version: 1.6.1
75
+ rubygems_version: 1.5.2
81
76
  signing_key:
82
77
  specification_version: 3
83
- summary: An extension of standard rails plugin script to provide support for local file system and tgz files
78
+ summary: An extension of standard rails plugin script to provide support for local
79
+ file system and tgz files
84
80
  test_files: []
85
-