Skip to content

Commit

Permalink
update gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
gipcompany committed Sep 10, 2016
1 parent 8a80ff9 commit 70cb011
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 12 deletions.
48 changes: 48 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
PATH
remote: .
specs:
file_manipulator (0.0.1)

GEM
remote: https://rubygems.org/
specs:
byebug (9.0.5)
coderay (1.1.1)
diff-lcs (1.2.5)
method_source (0.8.2)
pry (0.10.4)
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
pry-byebug (3.4.0)
byebug (~> 9.0)
pry (~> 0.10)
rake (10.5.0)
rspec (3.5.0)
rspec-core (~> 3.5.0)
rspec-expectations (~> 3.5.0)
rspec-mocks (~> 3.5.0)
rspec-core (3.5.3)
rspec-support (~> 3.5.0)
rspec-expectations (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-mocks (3.5.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.5.0)
rspec-support (3.5.0)
slop (3.6.0)

PLATFORMS
ruby

DEPENDENCIES
bundler (~> 1.13)
file_manipulator!
pry (~> 0.10.4)
pry-byebug (~> 3.4.0)
rake (~> 10.0)
rspec (~> 3.0)

BUNDLED WITH
1.13.0
Empty file modified exe/file_manipulator
100644 → 100755
Empty file.
17 changes: 5 additions & 12 deletions file_manipulator.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,11 @@ Gem::Specification.new do |spec|
spec.authors = ["Atsushi Ishida"]
spec.email = ["[email protected]"]

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.summary = %q{Manipulate Files}
spec.description = %q{Manipulate (Split/Merge) Files}
spec.homepage = "https://github.com/gipcompany/file_manipulator"
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.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
Expand All @@ -33,4 +24,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "bundler", "~> 1.13"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "pry", '~> 0.10.4'
spec.add_development_dependency "pry-byebug", '~> 3.4.0'
end

0 comments on commit 70cb011

Please sign in to comment.