interactor-rails 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1ec2c715eab69b3fe8644ee34f4f82f8695bdb1b
4
- data.tar.gz: 45ac618851888068d545e409e0e35a9db83dc178
3
+ metadata.gz: 651950b7c82de4b4f3787c3ffbe0b3b0c1e44e1e
4
+ data.tar.gz: 9acc70cd7f1fd7215ac10e579ef5c42a364ffbfa
5
5
  SHA512:
6
- metadata.gz: ccb469cab988835d2cefe431530f125319505f631af64498b17f4e739031830eb9ab76ba94d9e508a82c634400225bbdb1269dbb0b448752b7dc08ac814be8a0
7
- data.tar.gz: ae19e48778fe71e121a76fd7b2fe1e6658fd0af5e6239a50b8b9b7537c39cb33923022889cafa38e84b2303fb93d3ae827d535149dca09a2ff349b7ede34a61a
6
+ metadata.gz: 346a9e84d2f22417935629905266ce773bf3e071f8f8551de7e4b339c611fd619d5cba9448d5e7e16948bafdf25e2156fd81556cb9e86ce6bfe5727b16e24b0d
7
+ data.tar.gz: 19523b3fa86e1471ee710822982fee698ab59bab13abe8e8aafbb82779c41efffa37596163fe4b53e5c6295310e52b69f9d6b6b9c1e31ba814951c29497ac0e9
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --order random
3
+ --require spec_helper
@@ -1,13 +1,37 @@
1
+ before_install:
2
+ - gem update bundler rake
1
3
  branches:
2
4
  only:
3
5
  - master
6
+ cache: bundler
7
+ env:
8
+ global:
9
+ - secure: | # CODECLIMATE_REPO_TOKEN
10
+ LANA2wEG+eJ4a+Sl0Uhw343XutMp00m/+IV4n7T+AYpFmzmBPB8k5kVP1SZR
11
+ lhqpkdWuJlpaSUyP1EvODyS3Ryg+UtCXXKa0vX6AQseYZqMzXoWWWS1UPHx5
12
+ R5/Dvko4JIPfOeeXwyPGnBhzewdQSqXcQR5UnPIWPG7jvfoCd/Q=
4
13
  gemfile:
5
14
  - gemfiles/rails30.gemfile
6
15
  - gemfiles/rails31.gemfile
7
16
  - gemfiles/rails32.gemfile
8
17
  - gemfiles/rails40.gemfile
18
+ - gemfiles/rails41.gemfile
19
+ - gemfiles/rails42.gemfile
9
20
  language: ruby
21
+ matrix:
22
+ allow_failures:
23
+ - rvm: ruby-head
24
+ include:
25
+ - rvm: 2.2.2
26
+ gemfile: gemfiles/rails50.gemfile
27
+ - rvm: 2.3.0
28
+ gemfile: gemfiles/rails50.gemfile
10
29
  rvm:
11
30
  - 1.9.3
12
- - 2.0.0
13
- script: rspec
31
+ - "2.0"
32
+ - "2.1"
33
+ - 2.2.2
34
+ - 2.3.0
35
+ - ruby-head
36
+ script: bundle exec rspec
37
+ sudo: false
@@ -0,0 +1,22 @@
1
+ ## 2.0.2 / 2016-03-18
2
+
3
+ * [ENHANCEMENT] Add support for Ruby versions 2.1, 2.2, and 2.3
4
+ * [ENHANCEMENT] Add support for Rails versions 4.1, 4.2, and 5.0 (beta)
5
+
6
+ ## 2.0.1 / 2014-09-08
7
+
8
+ * [BUGFIX] Generate nested directories for generated namespaced interactors
9
+
10
+ ## 2.0.0 / 2014-09-08
11
+
12
+ * [ENHANCEMENT] Update to be play nice with Interactor 3.0
13
+
14
+ ## 1.0.1 / 2013-08-19
15
+
16
+ * [ENHANCEMENT] Open up the interactor dependency version requirement
17
+ * [BUGFIX] Require interactor
18
+ * [ENHANCEMENT] Remove the Interactor::Rails module
19
+
20
+ ## 1.0.0 / 2013-08-17
21
+
22
+ * Initial release!
@@ -0,0 +1,51 @@
1
+ # Contributing to Interactor Rails
2
+
3
+ Interactor Rails is open source and contributions from the community are
4
+ encouraged! No contribution is too small.
5
+
6
+ Please consider:
7
+
8
+ * adding a feature
9
+ * squashing a bug
10
+ * writing documentation
11
+ * reporting an issue
12
+ * fixing a typo
13
+ * correcting [style](https://github.com/styleguide/ruby)
14
+
15
+ ## How do I contribute?
16
+
17
+ For the best chance of having your changes merged, please:
18
+
19
+ 1. [Fork](https://github.com/collectiveidea/interactor-rails/fork) the project.
20
+ 2. [Write](http://en.wikipedia.org/wiki/Test-driven_development) a failing test.
21
+ 3. [Commit](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) changes that fix the tests.
22
+ 4. [Submit](https://github.com/collectiveidea/interactor-rails/pulls) a pull request with *at least* one animated GIF.
23
+ 5. Be patient.
24
+
25
+ If your proposed changes only affect documentation, include the following on a
26
+ new line in each of your commit messages:
27
+
28
+ ```
29
+ [ci skip]
30
+ ```
31
+
32
+ This will signal [Travis](https://travis-ci.org) that running the test suite is
33
+ not necessary for these changes.
34
+
35
+ ## Bug Reports
36
+
37
+ If you are experiencing unexpected behavior and, after having read Interactor's
38
+ and Interactor Rails' documentation, are convinced this behavior is a bug,
39
+ please:
40
+
41
+ 1. [Search](https://github.com/collectiveidea/interactor-rails/issues) existing issues.
42
+ 2. Collect enough information to reproduce the issue:
43
+ * Ruby version
44
+ * Rails version
45
+ * Interactor version
46
+ * Interactor Rails version
47
+ * Specific setup conditions
48
+ * Description of expected behavior
49
+ * Description of actual behavior
50
+ 3. [Submit](https://github.com/collectiveidea/interactor-rails/issues/new) an issue.
51
+ 4. Be patient.
data/Gemfile CHANGED
@@ -2,10 +2,10 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem "rails", "~> 4.0"
5
+ gem "rails"
6
6
 
7
7
  group :test do
8
- gem "aruba", "~> 0.5.3"
9
- gem "coveralls", "~> 0.6.7", require: false
10
- gem "rspec", "~> 2.14"
8
+ gem "aruba"
9
+ gem "codeclimate-test-reporter", require: false
10
+ gem "rspec"
11
11
  end
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Steve Richert
1
+ Copyright (c) 2013 Collective Idea
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # Interactor Rails
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/interactor-rails.png)](http://badge.fury.io/rb/interactor-rails)
4
- [![Build Status](https://travis-ci.org/collectiveidea/interactor-rails.png?branch=master)](https://travis-ci.org/collectiveidea/interactor-rails)
5
- [![Code Climate](https://codeclimate.com/github/collectiveidea/interactor-rails.png)](https://codeclimate.com/github/collectiveidea/interactor-rails)
6
- [![Coverage Status](https://coveralls.io/repos/collectiveidea/interactor-rails/badge.png?branch=master)](https://coveralls.io/r/collectiveidea/interactor-rails?branch=master)
7
- [![Dependency Status](https://gemnasium.com/collectiveidea/interactor-rails.png)](https://gemnasium.com/collectiveidea/interactor-rails)
3
+ [![Gem Version](https://img.shields.io/gem/v/interactor-rails.svg?style=flat-square)](http://rubygems.org/gems/interactor-rails)
4
+ [![Build Status](https://img.shields.io/travis/collectiveidea/interactor-rails/master.svg?style=flat-square)](https://travis-ci.org/collectiveidea/interactor-rails)
5
+ [![Code Climate](https://img.shields.io/codeclimate/github/collectiveidea/interactor-rails.svg?style=flat-square)](https://codeclimate.com/github/collectiveidea/interactor-rails)
6
+ [![Test Coverage](http://img.shields.io/codeclimate/coverage/github/collectiveidea/interactor-rails.svg?style=flat-square)](https://codeclimate.com/github/collectiveidea/interactor-rails)
7
+ [![Dependency Status](https://img.shields.io/gemnasium/collectiveidea/interactor-rails.svg?style=flat-square)](https://gemnasium.com/collectiveidea/interactor-rails)
8
8
 
9
9
  Interactor Rails provides Rails support for the
10
10
  [Interactor](https://github.com/collectiveidea/interactor) gem.
@@ -17,7 +17,8 @@ Add this line to your application's Gemfile:
17
17
  gem "interactor-rails", "~> 2.0"
18
18
  ```
19
19
 
20
- Interactor Rails is compatible with Ruby 1.9 or 2.0 on Rails 3 or 4.
20
+ Interactor Rails is compatible with Ruby 1.9.3, 2.0, 2.1, 2.2, or 2.3 on Rails
21
+ 3, 4, or 5.
21
22
 
22
23
  ## Usage
23
24
 
@@ -34,7 +35,7 @@ adds to `app/interactors/authenticate_user.rb`:
34
35
  class AuthenticateUser
35
36
  include Interactor
36
37
 
37
- def perform
38
+ def call
38
39
  # TODO
39
40
  end
40
41
  end
@@ -56,25 +57,15 @@ class PlaceOrder
56
57
  end
57
58
  ```
58
59
 
59
- ## Contributing
60
+ ## Contributions
60
61
 
61
- Interactor is open source and contributions from the community are encouraged!
62
- No contribution is too small. Please consider:
62
+ Interactor Rails is open source and contributions from the community are
63
+ encouraged! No contribution is too small.
63
64
 
64
- * adding an awesome feature
65
- * fixing a terrible bug
66
- * updating documentation
67
- * fixing a not-so-bad bug
68
- * fixing typos
65
+ See Interactor Rails'
66
+ [contribution guidelines](CONTRIBUTING.md) for more information.
69
67
 
70
- For the best chance of having your changes merged, please:
71
-
72
- 1. Ask us! We'd love to hear what you're up to.
73
- 2. Fork the project.
74
- 3. Commit your changes and tests (if applicable (they're applicable)).
75
- 4. Submit a pull request with a thorough explanation and at least one animated GIF.
76
-
77
- ## Thanks
68
+ ## Thank You!
78
69
 
79
70
  A very special thank you to [Attila Domokos](https://github.com/adomokos) for
80
71
  his fantastic work on [LightService](https://github.com/adomokos/light-service).
@@ -5,7 +5,7 @@ gemspec path: ".."
5
5
  gem "rails", "~> 3.0.0"
6
6
 
7
7
  group :test do
8
- gem "aruba", "~> 0.5.3"
9
- gem "coveralls", "~> 0.6.7", require: false
10
- gem "rspec", "~> 2.14"
8
+ gem "aruba"
9
+ gem "codeclimate-test-reporter", require: false
10
+ gem "rspec"
11
11
  end
@@ -5,7 +5,7 @@ gemspec path: ".."
5
5
  gem "rails", "~> 3.1.0"
6
6
 
7
7
  group :test do
8
- gem "aruba", "~> 0.5.3"
9
- gem "coveralls", "~> 0.6.7", require: false
10
- gem "rspec", "~> 2.14"
8
+ gem "aruba"
9
+ gem "codeclimate-test-reporter", require: false
10
+ gem "rspec"
11
11
  end
@@ -5,7 +5,7 @@ gemspec path: ".."
5
5
  gem "rails", "~> 3.2.0"
6
6
 
7
7
  group :test do
8
- gem "aruba", "~> 0.5.3"
9
- gem "coveralls", "~> 0.6.7", require: false
10
- gem "rspec", "~> 2.14"
8
+ gem "aruba"
9
+ gem "codeclimate-test-reporter", require: false
10
+ gem "rspec"
11
11
  end
@@ -5,7 +5,7 @@ gemspec path: ".."
5
5
  gem "rails", "~> 4.0.0"
6
6
 
7
7
  group :test do
8
- gem "aruba", "~> 0.5.3"
9
- gem "coveralls", "~> 0.6.7", require: false
10
- gem "rspec", "~> 2.14"
8
+ gem "aruba"
9
+ gem "codeclimate-test-reporter", require: false
10
+ gem "rspec"
11
11
  end
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec path: ".."
4
+
5
+ gem "rails", "~> 4.1.0"
6
+
7
+ group :test do
8
+ gem "aruba"
9
+ gem "codeclimate-test-reporter", require: false
10
+ gem "rspec"
11
+ end
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec path: ".."
4
+
5
+ gem "rails", "~> 4.2.0"
6
+
7
+ group :test do
8
+ gem "aruba"
9
+ gem "codeclimate-test-reporter", require: false
10
+ gem "rspec"
11
+ end
@@ -0,0 +1,11 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec path: ".."
4
+
5
+ gem "rails", ">= 5.0.0.beta", "< 5.1"
6
+
7
+ group :test do
8
+ gem "aruba"
9
+ gem "codeclimate-test-reporter", require: false
10
+ gem "rspec"
11
+ end
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "interactor-rails"
5
- spec.version = "2.0.1"
5
+ spec.version = "2.0.2"
6
6
 
7
7
  spec.author = "Collective Idea"
8
8
  spec.email = "info@collectiveidea.com"
@@ -11,13 +11,12 @@ Gem::Specification.new do |spec|
11
11
  spec.homepage = "https://github.com/collectiveidea/interactor-rails"
12
12
  spec.license = "MIT"
13
13
 
14
- spec.files = `git ls-files`.split($/)
15
- spec.test_files = spec.files.grep(/^spec/)
16
- spec.require_paths = ["lib"]
14
+ spec.files = `git ls-files`.split($/)
15
+ spec.test_files = spec.files.grep(/^spec/)
17
16
 
18
17
  spec.add_dependency "interactor", "~> 3.0"
19
- spec.add_dependency "rails", ">= 3", "< 5"
18
+ spec.add_dependency "rails", ">= 3", "< 5.1"
20
19
 
21
- spec.add_development_dependency "bundler", "~> 1.3"
22
- spec.add_development_dependency "rake", "~> 10.1"
20
+ spec.add_development_dependency "bundler"
21
+ spec.add_development_dependency "rake"
23
22
  end
@@ -1,7 +1,10 @@
1
- require "spec_helper"
2
-
3
1
  module Interactor
4
2
  describe "Rails" do
3
+ def last_command_started
4
+ # Account for older versions of Aruba as required by Rails 3.0
5
+ Aruba::Api.method_defined?(:last_command_started) ? super : last_command
6
+ end
7
+
5
8
  before do
6
9
  run_simple <<-CMD
7
10
  bundle exec rails new example \
@@ -29,8 +32,8 @@ module Interactor
29
32
  run_simple "bundle exec rails generate interactor place_order"
30
33
 
31
34
  path = "app/interactors/place_order.rb"
32
- check_file_presence([path], true)
33
- check_exact_file_content(path, <<-EOF)
35
+ expect(path).to be_an_existing_file
36
+ expect(path).to have_file_content(<<-EOF)
34
37
  class PlaceOrder
35
38
  include Interactor
36
39
 
@@ -44,16 +47,16 @@ EOF
44
47
  it "requires a name" do
45
48
  run_simple "bundle exec rails generate interactor"
46
49
 
47
- check_file_presence(["app/interactors/place_order.rb"], false)
48
- assert_partial_output("rails generate interactor NAME", all_stdout)
50
+ expect("app/interactors/place_order.rb").not_to be_an_existing_file
51
+ expect(last_command_started.stdout).to include("rails generate interactor NAME")
49
52
  end
50
53
 
51
54
  it "handles namespacing" do
52
55
  run_simple "bundle exec rails generate interactor invoice/place_order"
53
56
 
54
57
  path = "app/interactors/invoice/place_order.rb"
55
- check_file_presence([path], true)
56
- check_exact_file_content(path, <<-EOF)
58
+ expect(path).to be_an_existing_file
59
+ expect(path).to have_file_content(<<-EOF)
57
60
  class Invoice::PlaceOrder
58
61
  include Interactor
59
62
 
@@ -72,8 +75,8 @@ EOF
72
75
  CMD
73
76
 
74
77
  path = "app/interactors/place_order.rb"
75
- check_file_presence([path], true)
76
- check_exact_file_content(path, <<-EOF)
78
+ expect(path).to be_an_existing_file
79
+ expect(path).to have_file_content(<<-EOF)
77
80
  class PlaceOrder
78
81
  include Interactor::Organizer
79
82
 
@@ -89,8 +92,8 @@ EOF
89
92
  CMD
90
93
 
91
94
  path = "app/interactors/place_order.rb"
92
- check_file_presence([path], true)
93
- check_exact_file_content(path, <<-EOF)
95
+ expect(path).to be_an_existing_file
96
+ expect(path).to have_file_content(<<-EOF)
94
97
  class PlaceOrder
95
98
  include Interactor::Organizer
96
99
 
@@ -102,16 +105,16 @@ EOF
102
105
  it "requires a name" do
103
106
  run_simple "bundle exec rails generate interactor:organizer"
104
107
 
105
- check_file_presence(["app/interactors/place_order.rb"], false)
106
- assert_partial_output("rails generate interactor:organizer NAME", all_stdout)
108
+ expect("app/interactors/place_order.rb").not_to be_an_existing_file
109
+ expect(last_command_started.stdout).to include("rails generate interactor:organizer NAME")
107
110
  end
108
111
 
109
112
  it "handles namespacing" do
110
113
  run_simple "bundle exec rails generate interactor:organizer invoice/place_order"
111
114
 
112
115
  path = "app/interactors/invoice/place_order.rb"
113
- check_file_presence([path], true)
114
- check_exact_file_content(path, <<-EOF)
116
+ expect(path).to be_an_existing_file
117
+ expect(path).to have_file_content(<<-EOF)
115
118
  class Invoice::PlaceOrder
116
119
  include Interactor::Organizer
117
120
 
@@ -1,5 +1,7 @@
1
- require "coveralls"
2
- Coveralls.wear!
1
+ if ENV["CODECLIMATE_REPO_TOKEN"]
2
+ require "codeclimate-test-reporter"
3
+ CodeClimate::TestReporter.start
4
+ end
3
5
 
4
6
  require "interactor/rails"
5
7
 
@@ -1,10 +1,13 @@
1
1
  require "aruba/api"
2
2
 
3
+ Aruba.configure do |config|
4
+ config.exit_timeout = 60
5
+ end
6
+
3
7
  RSpec.configure do |config|
4
8
  config.include(Aruba::Api)
5
9
 
6
10
  config.before do
7
- @aruba_timeout_seconds = 60
8
- FileUtils.rm_rf(current_dir)
11
+ setup_aruba
9
12
  end
10
13
  end
metadata CHANGED
@@ -1,85 +1,88 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: interactor-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Collective Idea
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-08 00:00:00.000000000 Z
11
+ date: 2016-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: interactor
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rails
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '3'
34
- - - <
34
+ - - "<"
35
35
  - !ruby/object:Gem::Version
36
- version: '5'
36
+ version: '5.1'
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
- - - '>='
41
+ - - ">="
42
42
  - !ruby/object:Gem::Version
43
43
  version: '3'
44
- - - <
44
+ - - "<"
45
45
  - !ruby/object:Gem::Version
46
- version: '5'
46
+ version: '5.1'
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: bundler
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
- - - ~>
51
+ - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: '1.3'
53
+ version: '0'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
- - - ~>
58
+ - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: '1.3'
60
+ version: '0'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: rake
63
63
  requirement: !ruby/object:Gem::Requirement
64
64
  requirements:
65
- - - ~>
65
+ - - ">="
66
66
  - !ruby/object:Gem::Version
67
- version: '10.1'
67
+ version: '0'
68
68
  type: :development
69
69
  prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
- - - ~>
72
+ - - ">="
73
73
  - !ruby/object:Gem::Version
74
- version: '10.1'
74
+ version: '0'
75
75
  description: Interactor Rails provides Rails support for the Interactor gem.
76
76
  email: info@collectiveidea.com
77
77
  executables: []
78
78
  extensions: []
79
79
  extra_rdoc_files: []
80
80
  files:
81
- - .gitignore
82
- - .travis.yml
81
+ - ".gitignore"
82
+ - ".rspec"
83
+ - ".travis.yml"
84
+ - CHANGELOG.md
85
+ - CONTRIBUTING.md
83
86
  - Gemfile
84
87
  - LICENSE.txt
85
88
  - README.md
@@ -88,6 +91,9 @@ files:
88
91
  - gemfiles/rails31.gemfile
89
92
  - gemfiles/rails32.gemfile
90
93
  - gemfiles/rails40.gemfile
94
+ - gemfiles/rails41.gemfile
95
+ - gemfiles/rails42.gemfile
96
+ - gemfiles/rails50.gemfile
91
97
  - interactor-rails.gemspec
92
98
  - lib/generators/interactor.rb
93
99
  - lib/generators/interactor/organizer_generator.rb
@@ -98,7 +104,6 @@ files:
98
104
  - spec/interactor/rails_spec.rb
99
105
  - spec/spec_helper.rb
100
106
  - spec/support/aruba.rb
101
- - spec/support/random.rb
102
107
  homepage: https://github.com/collectiveidea/interactor-rails
103
108
  licenses:
104
109
  - MIT
@@ -109,17 +114,17 @@ require_paths:
109
114
  - lib
110
115
  required_ruby_version: !ruby/object:Gem::Requirement
111
116
  requirements:
112
- - - '>='
117
+ - - ">="
113
118
  - !ruby/object:Gem::Version
114
119
  version: '0'
115
120
  required_rubygems_version: !ruby/object:Gem::Requirement
116
121
  requirements:
117
- - - '>='
122
+ - - ">="
118
123
  - !ruby/object:Gem::Version
119
124
  version: '0'
120
125
  requirements: []
121
126
  rubyforge_project:
122
- rubygems_version: 2.2.2
127
+ rubygems_version: 2.5.1
123
128
  signing_key:
124
129
  specification_version: 4
125
130
  summary: Rails support for Interactor
@@ -127,4 +132,3 @@ test_files:
127
132
  - spec/interactor/rails_spec.rb
128
133
  - spec/spec_helper.rb
129
134
  - spec/support/aruba.rb
130
- - spec/support/random.rb
@@ -1,3 +0,0 @@
1
- RSpec.configure do |config|
2
- config.order = "random"
3
- end