Skip to content

Commit e5f47b9

Browse files
author
Sebastian Wilgosz
committed
Updated dependencies to make gem actually work.
1 parent 5d92d05 commit e5f47b9

File tree

4 files changed

+67
-1
lines changed

4 files changed

+67
-1
lines changed

Gemfile.lock

+57
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ PATH
66
GEM
77
remote: https://rubygems.org/
88
specs:
9+
actioncable (5.0.1)
10+
actionpack (= 5.0.1)
11+
nio4r (~> 1.2)
12+
websocket-driver (~> 0.6.1)
13+
actionmailer (5.0.1)
14+
actionpack (= 5.0.1)
15+
actionview (= 5.0.1)
16+
activejob (= 5.0.1)
17+
mail (~> 2.5, >= 2.5.4)
18+
rails-dom-testing (~> 2.0)
919
actionpack (5.0.1)
1020
actionview (= 5.0.1)
1121
activesupport (= 5.0.1)
@@ -24,19 +34,29 @@ GEM
2434
activemodel (>= 4.1, < 6)
2535
case_transform (>= 0.2)
2636
jsonapi (= 0.1.1.beta6)
37+
activejob (5.0.1)
38+
activesupport (= 5.0.1)
39+
globalid (>= 0.3.6)
2740
activemodel (5.0.1)
2841
activesupport (= 5.0.1)
42+
activerecord (5.0.1)
43+
activemodel (= 5.0.1)
44+
activesupport (= 5.0.1)
45+
arel (~> 7.0)
2946
activesupport (5.0.1)
3047
concurrent-ruby (~> 1.0, >= 1.0.2)
3148
i18n (~> 0.7)
3249
minitest (~> 5.1)
3350
tzinfo (~> 1.1)
51+
arel (7.1.4)
3452
builder (3.2.3)
3553
case_transform (0.2)
3654
activesupport
3755
concurrent-ruby (1.0.4)
3856
diff-lcs (1.3)
3957
erubis (2.7.0)
58+
globalid (0.3.7)
59+
activesupport (>= 4.1.0)
4060
i18n (0.7.0)
4161
jsonapi (0.1.1.beta6)
4262
jsonapi-parser (= 0.1.1.beta3)
@@ -45,18 +65,43 @@ GEM
4565
jsonapi-renderer (0.1.1.beta1)
4666
loofah (2.0.3)
4767
nokogiri (>= 1.5.9)
68+
mail (2.6.4)
69+
mime-types (>= 1.16, < 4)
70+
method_source (0.8.2)
71+
mime-types (3.1)
72+
mime-types-data (~> 3.2015)
73+
mime-types-data (3.2016.0521)
4874
mini_portile2 (2.1.0)
4975
minitest (5.10.1)
76+
nio4r (1.2.1)
5077
nokogiri (1.7.0.1)
5178
mini_portile2 (~> 2.1.0)
5279
rack (2.0.1)
5380
rack-test (0.6.3)
5481
rack (>= 1.0)
82+
rails (5.0.1)
83+
actioncable (= 5.0.1)
84+
actionmailer (= 5.0.1)
85+
actionpack (= 5.0.1)
86+
actionview (= 5.0.1)
87+
activejob (= 5.0.1)
88+
activemodel (= 5.0.1)
89+
activerecord (= 5.0.1)
90+
activesupport (= 5.0.1)
91+
bundler (>= 1.3.0, < 2.0)
92+
railties (= 5.0.1)
93+
sprockets-rails (>= 2.0.0)
5594
rails-dom-testing (2.0.2)
5695
activesupport (>= 4.2.0, < 6.0)
5796
nokogiri (~> 1.6)
5897
rails-html-sanitizer (1.0.3)
5998
loofah (~> 2.0)
99+
railties (5.0.1)
100+
actionpack (= 5.0.1)
101+
activesupport (= 5.0.1)
102+
method_source
103+
rake (>= 0.8.7)
104+
thor (>= 0.18.1, < 2.0)
60105
rake (10.5.0)
61106
rspec (3.5.0)
62107
rspec-core (~> 3.5.0)
@@ -71,9 +116,20 @@ GEM
71116
diff-lcs (>= 1.2.0, < 2.0)
72117
rspec-support (~> 3.5.0)
73118
rspec-support (3.5.0)
119+
sprockets (3.7.1)
120+
concurrent-ruby (~> 1.0)
121+
rack (> 1, < 3)
122+
sprockets-rails (3.2.0)
123+
actionpack (>= 4.0)
124+
activesupport (>= 4.0)
125+
sprockets (>= 3.0.0)
126+
thor (0.19.4)
74127
thread_safe (0.3.5)
75128
tzinfo (1.2.2)
76129
thread_safe (~> 0.1)
130+
websocket-driver (0.6.5)
131+
websocket-extensions (>= 0.1.0)
132+
websocket-extensions (0.1.2)
77133

78134
PLATFORMS
79135
ruby
@@ -82,6 +138,7 @@ DEPENDENCIES
82138
active_model_serializers (~> 0.10.0)
83139
bundler (~> 1.14)
84140
jsonapi-rspec-matchers!
141+
rails (>= 4.2)
85142
rake (~> 10.0)
86143
rspec (~> 3.0)
87144

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ This gem allows you test server responses in JsonAPI format.
77
Add this line to your application's Gemfile:
88

99
```ruby
10-
gem 'jsonapi-rspec-matchers', github: 'creatubbles/jsonapi-rspec-matchers'
10+
group :test do
11+
gem 'jsonapi-rspec-matchers', github: 'creatubbles/jsonapi-rspec-matchers', require: false
12+
end
13+
14+
# spec/spec_helper.rb
15+
16+
require "jsonapi/rspec/matchers"
1117
```
1218

1319
And then execute:

jsonapi-rspec-matchers.gemspec

+1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,5 @@ Gem::Specification.new do |spec|
3434
spec.add_development_dependency "rake", "~> 10.0"
3535
spec.add_development_dependency "rspec", "~> 3.0"
3636
spec.add_development_dependency "active_model_serializers", '~> 0.10.0'
37+
spec.add_development_dependency "rails", ">=4.2"
3738
end

lib/jsonapi/rspec/matchers/railtie.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require 'rails'
2+
13
module Jsonapi
24
module Rspec
35
module Matchers

0 commit comments

Comments
 (0)