forked from kreeti/kt-paperclip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configured Travis and Appraisal to make sure we're testing with both …
…aws-sdk v1 and aws-sdk v2
- Loading branch information
Showing
8 changed files
with
84 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
appraise "3.2" do | ||
gem "rails", "~> 3.2.0" | ||
gem "aws-sdk", "~> 2.0" | ||
end | ||
|
||
appraise "4.1" do | ||
gem "rails", "~> 4.1.0" | ||
gem "aws-sdk", "~> 2.0" | ||
end | ||
|
||
appraise "4.2" do | ||
gem "rails", "~> 4.2.0" | ||
gem "aws-sdk", "~> 2.0" | ||
end | ||
|
||
appraise "3.2.awsv1" do | ||
gem "rails", "~> 3.2.0" | ||
gem "aws-sdk", "~> 1.5" | ||
end | ||
|
||
appraise "4.1.awsv1" do | ||
gem "rails", "~> 4.1.0" | ||
gem "aws-sdk", "~> 1.5" | ||
end | ||
|
||
appraise "4.2.awsv1" do | ||
gem "rails", "~> 4.2.0" | ||
gem "aws-sdk", "~> 1.5" | ||
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "sqlite3", "~> 1.3.8", :platforms => :ruby | ||
gem "jruby-openssl", :platforms => :jruby | ||
gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby | ||
gem "rubysl", :platforms => :rbx | ||
gem "racc", :platforms => :rbx | ||
gem "pry" | ||
gem "rails", "~> 3.2.0" | ||
gem "aws-sdk", "~> 1.5" | ||
|
||
group :development, :test do | ||
gem "mime-types", "~> 1.16" | ||
gem "builder" | ||
gem "rubocop", :require => false | ||
end | ||
|
||
gemspec :path => "../" |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "sqlite3", "~> 1.3.8", :platforms => :ruby | ||
gem "jruby-openssl", :platforms => :jruby | ||
gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby | ||
gem "rubysl", :platforms => :rbx | ||
gem "racc", :platforms => :rbx | ||
gem "pry" | ||
gem "rails", "~> 4.1.0" | ||
gem "aws-sdk", "~> 1.5" | ||
|
||
group :development, :test do | ||
gem "mime-types", "~> 1.16" | ||
gem "builder" | ||
gem "rubocop", :require => false | ||
end | ||
|
||
gemspec :path => "../" |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "sqlite3", "~> 1.3.8", :platforms => :ruby | ||
gem "jruby-openssl", :platforms => :jruby | ||
gem "activerecord-jdbcsqlite3-adapter", :platforms => :jruby | ||
gem "rubysl", :platforms => :rbx | ||
gem "racc", :platforms => :rbx | ||
gem "pry" | ||
gem "rails", "~> 4.2.0" | ||
gem "aws-sdk", "~> 1.5" | ||
|
||
group :development, :test do | ||
gem "mime-types", "~> 1.16" | ||
gem "builder" | ||
gem "rubocop", :require => false | ||
end | ||
|
||
gemspec :path => "../" |
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