Skip to content

Commit

Permalink
fix warning on build gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Ismail Akbudak committed Aug 26, 2015
1 parent 4a7756f commit 90eef0f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
31 changes: 15 additions & 16 deletions cybele.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,25 @@ require File.expand_path('../lib/cybele/version', __FILE__)
require 'date'

Gem::Specification.new do |spec|
spec.name = 'cybele'
spec.version = Cybele::VERSION
spec.authors = %w[lab2023]
spec.email = %w[[email protected]]
spec.description = %q{Rails 4.x template with responder, simple form, haml, exception notification, etc etc ...}
spec.summary = %q{Rails 4.x template with responder, simple form, haml, exception notification, etc etc ...}
spec.homepage = 'https://github.com/kebab-project/cybele'
spec.license = 'MIT'
spec.date = Date.today.strftime('%Y-%m-%d')

spec.required_ruby_version = ">= #{Cybele::RUBY_VERSION}"
spec.add_dependency 'bundler', '~> 1.5'
spec.add_dependency 'rails', Cybele::RAILS_VERSION

spec.files = `git ls-files`.split($/)
spec.executables = %w[cybele]
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths= %w[lib]
spec.name = 'cybele'
spec.version = Cybele::VERSION
spec.authors = %w[lab2023]
spec.email = %w[[email protected]]
spec.description = %q{Rails 4.x template with responder, simple form, haml, exception notification, etc etc ...}
spec.summary = %q{Rails 4.x template with responder, simple form, haml, exception notification, etc etc ...}
spec.homepage = 'https://github.com/kebab-project/cybele'
spec.license = 'MIT'
spec.date = Date.today.strftime('%Y-%m-%d')
spec.files = `git ls-files`.split($/)
spec.executables = %w[cybele]
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = %w[lib]

spec.add_development_dependency 'rake'
spec.add_dependency 'bundler', '~> 1.5'
spec.add_dependency 'rails', Cybele::RAILS_VERSION

spec.extra_rdoc_files = %w[README.md MIT-LICENSE]
end
2 changes: 1 addition & 1 deletion lib/cybele/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Cybele
RAILS_VERSION = '~> 4.2.4'
RAILS_VERSION = '~> 4.2.0'
RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
VERSION = '1.7.1'
end

0 comments on commit 90eef0f

Please sign in to comment.