blue_print 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +16 -14
- data/lib/blue_print.rb +1 -1
- data/lib/blue_print/integration.rb +6 -0
- data/lib/blue_print/integration/rspec.rb +16 -0
- data/lib/blue_print/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8a7f194ff2e87b8e84e1ed5a6a1fc3b86bff3434
|
|
4
|
+
data.tar.gz: 1e31d00cbf855ac7c6c832abd293aa66c34d5557
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9f47f5385d399d04612aa2038aaa52c26208cc6265170287c87c34fc172756d5d1c0ebc9f44144536cb7e03ba96295ddcc381e55166b53227a1d583df3d85fd
|
|
7
|
+
data.tar.gz: 237b435551d1335b13fe9df194957ae5c4c0440b195f227a40f4d3ef96884229f493d647fd5b2013dd5aa4e3feea84d523418a1f0834b13194edc355545e24fe
|
data/.travis.yml
CHANGED
|
@@ -1,19 +1,21 @@
|
|
|
1
1
|
language: ruby
|
|
2
|
-
|
|
3
2
|
rvm:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
- 2.0.0
|
|
4
|
+
- 2.1.0
|
|
5
|
+
- 2.1.1
|
|
6
|
+
- ruby-head
|
|
9
7
|
gemfile:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
- gemfiles/rails-3.x.gemfile
|
|
9
|
+
- gemfiles/rails-4.x.gemfile
|
|
10
|
+
- gemfiles/rails-head.gemfile
|
|
14
11
|
matrix:
|
|
12
|
+
exclude:
|
|
13
|
+
- rvm: ruby-head
|
|
14
|
+
gemfile: gemfiles/rails-3.x.gemfile
|
|
15
15
|
allow_failures:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
16
|
+
- rvm: ruby-head
|
|
17
|
+
- gemfile: gemfiles/rails-head.gemfile
|
|
18
|
+
script: bundle exec rspec
|
|
19
|
+
notifications:
|
|
20
|
+
slack:
|
|
21
|
+
secure: SFTem6vmK6EHR3mH1RS8VwTcCh45Q9uLNbekMIQAEAdbha3ni5YEsv5RnOJrwlFe6B5y0ryLnf4ocmI2yRNZSF+MbMlyGs5ANqxdAZsk56domNmxeS1I7ezSLlM+a5kjD3RBUIOXY2+RZxjUTBQMXVJ4vJrz76IzWhR2U5Lkp/I=
|
data/lib/blue_print.rb
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
require 'active_support/concern'
|
|
2
|
+
require 'blue_print/integration'
|
|
3
|
+
|
|
4
|
+
module BluePrint::Integration::RSpec
|
|
5
|
+
extend ActiveSupport::Concern
|
|
6
|
+
|
|
7
|
+
included do
|
|
8
|
+
after(:each) do
|
|
9
|
+
BluePrint.clear!
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
RSpec.configure do |config|
|
|
15
|
+
config.include BluePrint::Integration::RSpec
|
|
16
|
+
end
|
data/lib/blue_print/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blue_print
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sho Kusano
|
|
@@ -265,6 +265,7 @@ files:
|
|
|
265
265
|
- lib/blue_print/integration/grape/api.rb
|
|
266
266
|
- lib/blue_print/integration/grape/helper.rb
|
|
267
267
|
- lib/blue_print/integration/grape/middleware.rb
|
|
268
|
+
- lib/blue_print/integration/rspec.rb
|
|
268
269
|
- lib/blue_print/railtie.rb
|
|
269
270
|
- lib/blue_print/railtie/action_controller.rb
|
|
270
271
|
- lib/blue_print/railtie/action_view.rb
|