ring-native.gemspec in ring-native-0.0.0 vs ring-native.gemspec in ring-native-0.1.0

- old
+ new

@@ -1,25 +1,25 @@ # coding: utf-8 -lib = File.expand_path('../lib', __FILE__) +lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) -require 'ring/native/version' +require "ring/native/version" Gem::Specification.new do |spec| spec.name = "ring-native" spec.version = Ring::Native::VERSION spec.authors = ["Tony Arcieri"] spec.email = ["bascule@gmail.com"] spec.summary = "The *ring* cryptography library, packaged as a RubyGem" - spec.description = "Snapshots of the *ring* cryptography library, packaged in RubyGem format" + spec.description = "Snapshots of the *ring* cryptography library (ring-ffi) packages as gems" spec.homepage = "https://github.com/cryptosphere/ruby-ring" spec.license = "OpenSSL" spec.files = `git ls-files -z`.split("\x0") - spec.files += Dir.glob("vendor/ring/**/*") - spec.require_paths = ["lib"] + spec.files += Dir.glob("vendor/ring-ffi/**/*") + spec.require_paths = ["lib"] spec.extensions = ["ext/ring/extconf.rb"] spec.add_development_dependency "bundler", "~> 1.11" - spec.add_development_dependency "rake", "~> 10.0" + spec.add_development_dependency "rake", "~> 10.0" end