-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#8 use AR5 in base class collection parser, add ar5 gemfile for tests…
…, cleanup tests
- Loading branch information
Showing
6 changed files
with
84 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
source 'https://rubygems.org' | ||
gem "rake" | ||
gem "rdoc" | ||
gem "activesupport", "5.2" | ||
gem "activeresource", "5.0" | ||
gem "sk_api_schema" | ||
gem "curb" | ||
group :test do | ||
gem "rspec" | ||
gem "simplecov" | ||
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,68 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
activemodel (5.2.0) | ||
activesupport (= 5.2.0) | ||
activemodel-serializers-xml (1.0.2) | ||
activemodel (> 5.x) | ||
activesupport (> 5.x) | ||
builder (~> 3.1) | ||
activeresource (5.0.0) | ||
activemodel (>= 5.0, < 6) | ||
activemodel-serializers-xml (~> 1.0) | ||
activesupport (>= 5.0, < 6) | ||
activesupport (5.2.0) | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
i18n (>= 0.7, < 2) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
builder (3.2.3) | ||
concurrent-ruby (1.0.5) | ||
curb (0.9.6) | ||
diff-lcs (1.3) | ||
docile (1.3.1) | ||
i18n (1.1.0) | ||
concurrent-ruby (~> 1.0) | ||
json (2.1.0) | ||
minitest (5.11.3) | ||
rake (12.3.1) | ||
rdoc (6.0.4) | ||
rspec (3.8.0) | ||
rspec-core (~> 3.8.0) | ||
rspec-expectations (~> 3.8.0) | ||
rspec-mocks (~> 3.8.0) | ||
rspec-core (3.8.0) | ||
rspec-support (~> 3.8.0) | ||
rspec-expectations (3.8.1) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.8.0) | ||
rspec-mocks (3.8.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.8.0) | ||
rspec-support (3.8.0) | ||
simplecov (0.16.1) | ||
docile (~> 1.1) | ||
json (>= 1.8, < 3) | ||
simplecov-html (~> 0.10.0) | ||
simplecov-html (0.10.2) | ||
sk_api_schema (0.11.0) | ||
activesupport | ||
thread_safe (0.3.6) | ||
tzinfo (1.2.5) | ||
thread_safe (~> 0.1) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
activeresource (= 5.0) | ||
activesupport (= 5.2) | ||
curb | ||
rake | ||
rdoc | ||
rspec | ||
simplecov | ||
sk_api_schema | ||
|
||
BUNDLED WITH | ||
1.16.0 |
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 |
---|---|---|
|
@@ -77,8 +77,4 @@ | |
|
||
end | ||
|
||
def destroy_payment | ||
|
||
end | ||
|
||
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
Should this maybe be changed to
ActiveResource::VERSION::MAJOR >= 4
? Anticipating Rails 6, you know?