Skip to content

Commit

Permalink
Update gemspec content
Browse files Browse the repository at this point in the history
  • Loading branch information
İsmail Akbudak committed Feb 28, 2018
1 parent a572c86 commit 80ef842
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 27 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@
.rspec_status

# RubyMine files
.idea/
.idea/

# Result package
*.gem
2 changes: 1 addition & 1 deletion lib/smartcat_sdk/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SmartcatSdk
VERSION = "0.1.0"
VERSION = '0.1.0'.freeze
end
46 changes: 21 additions & 25 deletions smartcat_sdk.gemspec
Original file line number Diff line number Diff line change
@@ -1,36 +1,32 @@

lib = File.expand_path("../lib", __FILE__)
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "smartcat_sdk/version"
require 'smartcat_sdk/version'
require 'date'

Gem::Specification.new do |spec|
spec.name = "smartcat_sdk"
spec.name = 'smartcat_sdk'
spec.version = SmartcatSdk::VERSION
spec.authors = ["İsmail Akbudak"]
spec.email = ["ismail.akbudak@lab2023.com"]

spec.summary = %q{TODO: Write a short summary, because RubyGems requires one.}
spec.description = %q{TODO: Write a longer description or delete this line.}
spec.homepage = "TODO: Put your gem's website or public repo URL here."
spec.license = "MIT"

# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end

spec.authors = ['İsmail Akbudak']
spec.email = ['ismail.akbudak@lab2023.com']
spec.summary = 'SmartCat Ruby SDK.'
spec.description = 'SmartCat API SDK for ruby & ruby on rails.'
spec.homepage = 'https://github.com/ismailakbudak/smartcat_ruby_sdk'
spec.license = 'MIT'
spec.date = Date.today.strftime('%Y-%m-%d')
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.require_paths = ['lib']

spec.add_development_dependency "bundler", "~> 1.16"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency 'bundler', '~> 1.16'
spec.add_development_dependency 'pronto', '~> 0.9.5'
spec.add_development_dependency 'pronto-fasterer', '~> 0.9.0'
spec.add_development_dependency 'pronto-flay', '~> 0.9.0'
spec.add_development_dependency 'pronto-reek', '~> 0.9.0'
spec.add_development_dependency 'pronto-rubocop', '~> 0.9.0'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.5'
end

0 comments on commit 80ef842

Please sign in to comment.