Skip to content

Commit

Permalink
Complicate gemspec a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Chesler committed Jul 17, 2017
1 parent 23f51e3 commit a54be23
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
24 changes: 17 additions & 7 deletions MovableInkAWS.gemspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
require "movable_ink/version"

Gem::Specification.new do |s|
s.name = 'MovableInkAWS'
s.version = '0.0.1'
s.summary = 'AWS Utility methods for MovableInk'
s.description = 'AWS Utility methods for MovableInk'
s.authors = ['Matt Chesler']
s.email = '[email protected]'
s.files = ['lib/movable_ink/aws.rb']
s.name = 'MovableInkAWS'
s.version = MovableInk::AWS::VERSION
s.summary = 'AWS Utility methods for MovableInk'
s.description = 'AWS Utility methods for MovableInk'
s.authors = ['Matt Chesler']
s.email = '[email protected]'

s.add_runtime_dependency 'aws-sdk', '~> 2'

all_files = `git ls-files`.split("\n")
test_files = `git ls-files -- {test,spec,features}/*`.split("\n")

s.files = all_files - test_files
s.test_files = test_files
s.require_paths = ["lib"]
end
5 changes: 5 additions & 0 deletions lib/movable_ink/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module MovableInk
module AWS
VERSION = '0.0.1'
end
end

0 comments on commit a54be23

Please sign in to comment.