enat.gemspec in enat-0.1.1 vs enat.gemspec in enat-0.1.2
- old
+ new
@@ -2,26 +2,27 @@
$:.unshift lib unless $:.include?(lib)
require 'enat/version'
Gem::Specification.new do |s|
- s.name = "enat"
- s.version = Enat::VERSION
+ s.name = 'enat'
+ s.version = Enat.version
s.platform = Gem::Platform::RUBY
- s.authors = ["Hari Gopal"]
- s.email = "harigopal1@gmail.com"
- s.summary = "Does something every specified interval."
- s.description = "Executes a block of code at intervals of time, without guarantee of timing."
- s.homepage = "http://github.com/harigopal/enat"
+ s.authors = ['Hari Gopal']
+ s.email = 'harigopal1@gmail.com'
+ s.summary = 'Does something every specified interval.'
+ s.description = 'Executes a block of code at intervals of time, without guarantee of timing.'
+ s.homepage = 'http://github.com/harigopal/enat'
+ s.license = 'MIT'
s.required_ruby_version = '>= 1.9.2'
- s.add_development_dependency "rake"
- s.add_development_dependency "rspec"
+ s.add_development_dependency 'rake'
+ s.add_development_dependency 'rspec'
- s.add_dependency "activesupport"
+ s.add_dependency 'activesupport'
- s.files = `git ls-files`.split("\n") - ["Gemfile.lock", ".rvmrc"]
+ s.files = `git ls-files`.split("\n") - %w(Gemfile.lock .rvmrc)
s.test_files = `git ls-files -- spec/*`.split("\n")
- s.require_paths = ["lib"]
+ s.require_paths = %w(lib)
end
\ No newline at end of file