-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into store-api-client-no…
…t-just-id
- Loading branch information
Showing
6 changed files
with
61 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Stitches | ||
VERSION = '3.0.0' | ||
VERSION = '3.1.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,20 +6,21 @@ Gem::Specification.new do |s| | |
s.name = "stitches" | ||
s.version = Stitches::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ['Dave Copeland'] | ||
s.email = ['dave@stitchfix.com', 'opensource@stitchfix.com'] | ||
s.authors = ["Stitch Fix Engineering","Andrew Peterson","Dave Copeland","Jonathan Dean"] | ||
s.email = ["opensource@stitchfix.com","andy@ndpsoftware.com","[email protected]","[email protected]"] | ||
s.homepage = "https://github.com/stitchfix/stitches" | ||
s.summary = "You'll be in stitches at how easy it is to create a service at Stitch Fix" | ||
s.description = "You'll be in stitches at how easy it is to create a service at Stitch Fix" | ||
s.license = "MIT" | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | ||
s.executables = `git ls-files -- exe/*`.split("\n").map{ |f| File.basename(f) } | ||
s.require_paths = ["lib"] | ||
s.add_dependency("rails") | ||
s.add_dependency("pg") | ||
s.add_runtime_dependency("rails") | ||
s.add_runtime_dependency("pg") | ||
s.add_development_dependency("rake") | ||
s.add_dependency("rspec-rails", "~> 3") | ||
s.add_dependency("apitome") | ||
s.add_runtime_dependency("rspec", ">= 3") | ||
s.add_runtime_dependency("rspec-rails", "~> 3") | ||
s.add_runtime_dependency("apitome") | ||
end |