domr 0.2.2 → 0.2.3

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 (2) hide show
  1. metadata +2 -4
  2. data/ext/mkrf_conf.rb +0 -21
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: domr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -47,14 +47,12 @@ description: Quickly search for available domain names from command line.
47
47
  email: shveloo@gmail.com
48
48
  executables:
49
49
  - domr
50
- extensions:
51
- - ext/mkrf_conf.rb
50
+ extensions: []
52
51
  extra_rdoc_files:
53
52
  - index
54
53
  files:
55
54
  - lib/domr.rb
56
55
  - bin/domr
57
- - ext/mkrf_conf.rb
58
56
  - Gemfile
59
57
  - index
60
58
  homepage: http://shvelo.github.com/domr
data/ext/mkrf_conf.rb DELETED
@@ -1,21 +0,0 @@
1
- require 'rubygems'
2
- require 'rubygems/command.rb'
3
- require 'rubygems/dependency_installer.rb'
4
-
5
- begin
6
- Gem::Command.build_args = ARGV
7
- rescue NoMethodError
8
- end
9
- inst = Gem::DependencyInstaller.new
10
- begin
11
- if RUBY_PLATFORM =~ /mswin32/ || RUBY_PLATFORM =~ /mingw/ || RUBY_PLATFORM =~ /cygwin/
12
- inst.install 'win32console', '~> 1.3.2'
13
- inst.install "windows-pr", '~> 1.2.1'
14
- end
15
- rescue
16
- exit(1)
17
- end
18
-
19
- f = File.open(File.join(File.dirname(__FILE__), 'Rakefile'), 'w') # create dummy rakefile to indicate success
20
- f.write("task :default\n")
21
- f.close