Skip to content

Commit

Permalink
Improvements were done
Browse files Browse the repository at this point in the history
- Ruby 2.2.3 version was added
- Rails 4.2.3 version was added
- Gemfile.lock was removed
- Gemspec was improved
  • Loading branch information
tayfunoziserikan committed Aug 25, 2015
1 parent cf14f9e commit f5b99e9
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 18 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
*.gem
*.log
.bundle/
*.bundle/install.log
*.bundle/install.log
Gemfile.lock
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.2.3
File renamed without changes.
32 changes: 17 additions & 15 deletions cybele.gemspec
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
# coding: utf-8
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
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[info@lab2023.com]
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.name = 'cybele'
spec.version = Cybele::VERSION
spec.authors = %w[lab2023]
spec.email = %w[info@lab2023.com]
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 = '>= 2.0.0'
spec.required_ruby_version = ">= #{Cybele::RUBY_VERSION}"
spec.add_dependency 'bundler', '~> 1.5'
spec.add_dependency 'rails', '~> 4.0'
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.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'

Expand Down
5 changes: 3 additions & 2 deletions lib/cybele/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module Cybele
RAILS_VERSION = '~> 4.2.3'
RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
VERSION = '1.6.2'.freeze
end

end

0 comments on commit f5b99e9

Please sign in to comment.