Skip to content

Commit

Permalink
Removed task for json_pure.gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Jun 30, 2020
1 parent 746dcb0 commit 4c11a40
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 46 deletions.
44 changes: 0 additions & 44 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,50 +78,6 @@ task :install_ext => [ :compile, :install_pure, :install_ext_really ]
desc "Installing library (extension)"
task :install => :install_ext

if defined?(Gem) and defined?(Gem::PackageTask)
spec_pure = Gem::Specification.new do |s|
s.name = 'json_pure'
s.version = PKG_VERSION
s.summary = PKG_TITLE
s.description = "This is a JSON implementation in pure Ruby."

s.files = PKG_FILES

s.require_path = 'lib'
s.add_development_dependency 'rake'
s.add_development_dependency 'test-unit', '>= 2.0', '< 4.0'

s.extra_rdoc_files << 'README.md'
s.rdoc_options <<
'--title' << 'JSON implemention for ruby' << '--main' << 'README.md'
s.test_files.concat Dir['./tests/test_*.rb']

s.author = "Florian Frank"
s.email = "[email protected]"
s.homepage = "http://flori.github.com/#{PKG_NAME}"
s.license = 'Ruby'
s.required_ruby_version = '>= 2.0'
end

desc 'Creates a json_pure.gemspec file'
task :gemspec_pure => :version do
File.open('json_pure.gemspec', 'w') do |gemspec|
src = spec_pure.to_ruby
src.gsub!(/# stub:.*/, "# This gemspec is generated automatically using `rake gemspec`.\n" \
"# Do not modify directly.")
gemspec.write src
end
end

Gem::PackageTask.new(spec_pure) do |pkg|
pkg.need_tar = true
pkg.package_files = PKG_FILES
end

desc 'Alias for gemspec_pure'
task :gemspec => [ :gemspec_pure ]
end

desc m = "Writing version information for #{PKG_VERSION}"
task :version do
puts m
Expand Down
2 changes: 0 additions & 2 deletions json_pure.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# -*- encoding: utf-8 -*-
# This gemspec is generated automatically using `rake gemspec`.
# Do not modify directly.

Gem::Specification.new do |s|
s.name = "json_pure".freeze
Expand Down

0 comments on commit 4c11a40

Please sign in to comment.