parsel.gemspec in parsel-0.1.1 vs parsel.gemspec in parsel-0.2.0
- old
+ new
@@ -1,22 +1,21 @@
# -*- encoding: utf-8 -*-
-$:.push File.expand_path("../lib", __FILE__)
-require "parsel/version"
+require './lib/parsel/version'
Gem::Specification.new do |s|
- s.name = "parsel"
+ s.name = 'parsel'
s.version = Parsel::Version::STRING
s.platform = Gem::Platform::RUBY
- s.authors = ["Nando Vieira"]
- s.email = ["fnando.vieira@gmail.com"]
- s.homepage = "http://rubygems.org/gems/parsel"
- s.summary = "Encrypt and decrypt data with a given key."
+ s.authors = ['Nando Vieira']
+ s.email = ['fnando.vieira@gmail.com']
+ s.homepage = 'http://rubygems.org/gems/parsel'
+ s.summary = 'Encrypt and decrypt data with a given key.'
s.description = s.summary
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
- s.require_paths = ["lib"]
+ s.require_paths = ['lib']
- s.add_development_dependency "rake"
- s.add_development_dependency "rspec"
+ s.add_development_dependency 'rake'
+ s.add_development_dependency 'rspec'
end