factory_girl_sequences 4.3.1 → 4.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7a2fe9d2210c6fd16304ed08cd0fcf61bdfee603
4
- data.tar.gz: 926fddfa26b556792403780d6976a6db674ad99e
3
+ metadata.gz: 623579233b02ef5c47e00fcd838a668b9e9cc70d
4
+ data.tar.gz: 02b8d39f44f23a132fde0be9d0a538150da35c2c
5
5
  SHA512:
6
- metadata.gz: cf12b8c733e07a30ff133be109f7f5ab1dcb5d65e66a11b31e4a29cfde87de02728e8471ae71200017651114e346a3620c6cb846507fe25a61b36dd345eebef4
7
- data.tar.gz: 4596de2c9f599c9b14747f9291ae4dd2d80f66eed58d422e78cd63787e86177db226ba18a7ed96deb1586fc20b574a266098d6b03a7be6d1023081f4154e5825
6
+ metadata.gz: dd9365b53f249be84368e9e2c8f970393db5a0fc55cf3b2102ab62b041411bcff0524e10a10242e276bd918f33bd55488714f39077e964ebbe300518a66b022a
7
+ data.tar.gz: 3da5e098a34ca8120e16cf7a8d23fef56f27bd99fb9f0c4789e700d5b18099c9c4051823f1e24c6b686b9d2a85f45b45e8c75bf7d716b2f14ddc96bdecc0f26b
data/.dockerignore ADDED
@@ -0,0 +1,2 @@
1
+ pkg/
2
+ temp/
data/.travis.yml CHANGED
@@ -1,25 +1,27 @@
1
- language: ruby
1
+ sudo: false
2
+
2
3
  rvm:
3
- - 1.9.3
4
- - 2.0.0
4
+ - 2.3.3
5
5
  - ruby-head
6
- - jruby-19mode
6
+ - rbx-2
7
7
  - jruby-head
8
- bundler_args: []
9
- before_install:
10
- - gem update --system
11
- - gem install turn --version 0.8.2
12
- - gem install turn --version 0.8.3
13
- before_script: bundle exec rake appraisal:install
14
- jdk:
15
- - openjdk7
16
- gemfile:
17
- - gemfiles/rails4.0.gemfile
18
- branches:
19
- only:
20
- - master
8
+
21
9
  matrix:
22
10
  allow_failures:
23
11
  - rvm: ruby-head
24
- - rvm: jruby-19mode
12
+ - rvm: rbx-2
25
13
  - rvm: jruby-head
14
+ fast_finish: true
15
+
16
+ gemfile:
17
+ - gemfiles/rails_4.gemfile
18
+ - gemfiles/rails_5.gemfile
19
+
20
+ script: "bundle exec rake"
21
+
22
+ branches:
23
+ only:
24
+ - master
25
+
26
+ before_install:
27
+ - gem update bundler
data/Appraisals CHANGED
@@ -1,7 +1,12 @@
1
- appraise "rails4.0" do
2
- gem "rails", "4.0"
1
+ appraise "rails-4" do
2
+ gem "rails", "~> 4.2.7"
3
+ gem "sqlite3"
3
4
  gem "factory_girl_rails"
4
- gem "sdoc"
5
+ end
6
+
7
+ appraise "rails-5" do
8
+ gem "rails", "~> 5.0.0"
5
9
  gem "sqlite3"
6
- gem "jbuilder"
10
+ gem "factory_girl_rails"
11
+ gem "listen"
7
12
  end
data/Dockerfile ADDED
@@ -0,0 +1,16 @@
1
+ FROM ruby:latest
2
+
3
+ # fixes cucumber bug where it cannot find bundler
4
+ RUN gem install bundler --no-ri --no-rdoc
5
+
6
+ RUN mkdir -p /usr/src/lib
7
+ WORKDIR /usr/src/lib
8
+
9
+ COPY Gemfile* /usr/src/lib/
10
+ COPY *.gemspec /usr/src/lib/
11
+ RUN bundle install
12
+
13
+ COPY Appraisals /usr/src/lib/
14
+ RUN appraisal install
15
+
16
+ COPY . /usr/src/lib/
data/Gemfile CHANGED
@@ -3,6 +3,9 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  gem 'rake'
6
- gem 'appraisal', '~> 0.5.0'
7
- gem 'cucumber', '~> 1.2.1'
8
- gem 'aruba', '~> 0.5.1'
6
+
7
+ group :test do
8
+ gem 'cucumber', '~> 2.4.0'
9
+ gem 'aruba', '~> 0.14.2'
10
+ gem "appraisal", '~> 2.1'
11
+ end
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012 - 2014 Anton Kalyaev
1
+ Copyright (c) 2012 - 2017 Anton Kaliaev
2
2
 
3
3
  MIT License
4
4
 
data/Makefile ADDED
@@ -0,0 +1,7 @@
1
+ docker_build:
2
+ docker build -t factory_girl_sequences .
3
+
4
+ docker_test:
5
+ docker run -it --rm -v "$(PWD)":/usr/src/lib factory_girl_sequences bundle exec rake
6
+
7
+ .PHONY: docker_build docker_test
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # FactoryGirlSequences [![Build Status](https://secure.travis-ci.org/akalyaev/factory_girl_sequences.png "Build Status")](http://travis-ci.org/akalyaev/factory_girl_sequences) [![Gem Version](https://badge.fury.io/rb/factory_girl_sequences.png)](http://badge.fury.io/rb/factory_girl_sequences) [![Dependency Status](https://gemnasium.com/akalyaev/factory_girl_sequences.png)](https://gemnasium.com/akalyaev/factory_girl_sequences)
1
+ # FactoryGirlSequences [![Build Status](https://secure.travis-ci.org/melekes/factory_girl_sequences.png "Build Status")](http://travis-ci.org/melekes/factory_girl_sequences) [![Gem Version](https://badge.fury.io/rb/factory_girl_sequences.png)](http://badge.fury.io/rb/factory_girl_sequences) [![Dependency Status](https://gemnasium.com/melekes/factory_girl_sequences.png)](https://gemnasium.com/melekes/factory_girl_sequences)
2
2
 
3
3
  Collection of useful [FactoryGirl](http://github.com/thoughtbot/factory_girl)
4
4
  sequences.
@@ -212,10 +212,6 @@ For whose of you who are using spork or tconsole, consider adding `FactoryGirlSe
212
212
 
213
213
  ## Credits
214
214
 
215
- Created by [Anton Kalyaev](http://github.com/akalyaev)
215
+ Created by [Anton Kaliaev](http://github.com/melekes)
216
216
 
217
- Thank you to all our amazing [contributors](http://github.com/akalyaev/factory_girl_sequences/contributors)!
218
-
219
- ## License
220
-
221
- FactoryGirlSequences is Copyright © 2012-2014 Anton Kalyaev. It is free software, and may be redistributed under the terms specified in the [MIT License](http://www.opensource.org/licenses/MIT) file.
217
+ Thank you to all our amazing [contributors](http://github.com/melekes/factory_girl_sequences/contributors)!
data/Rakefile CHANGED
@@ -1,23 +1,18 @@
1
- require 'bundler/setup'
2
- require 'bundler/gem_tasks'
1
+ #!/usr/bin/env rake
2
+ require 'rubygems'
3
+ require 'bundler'
4
+ require 'rake'
5
+ require 'appraisal'
3
6
  require 'cucumber/rake/task'
4
7
 
5
8
  Cucumber::Rake::Task.new(:cucumber) do |t|
6
- t.fork = true
7
9
  t.cucumber_opts = ['--format', (ENV['CUCUMBER_FORMAT'] || 'progress')]
8
10
  end
9
11
 
10
- require 'appraisal'
11
-
12
- desc 'Run the test suite'
13
- task :default do |t|
14
- if ENV['BUNDLE_GEMFILE'] =~ /gemfiles/
15
- exec 'rake cucumber'
16
- else
17
- Rake::Task['appraise'].execute
18
- end
19
- end
12
+ task test_suite: [:cucumber]
20
13
 
21
- task :appraise => ['appraisal:install'] do |t|
22
- exec 'rake appraisal'
14
+ if !ENV['APPRAISAL_INITIALIZED'] && !ENV['TRAVIS']
15
+ task :default => :appraisal
16
+ else
17
+ task default: :test_suite
23
18
  end
@@ -1,14 +1,13 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require File.expand_path('../lib/factory_girl_sequences/version', __FILE__)
3
2
 
4
3
  Gem::Specification.new do |gem|
5
4
  gem.name = "factory_girl_sequences"
6
- gem.version = FactoryGirlSequences::VERSION
7
- gem.authors = ["Anton Kalyaev"]
5
+ gem.version = "4.8.0"
6
+ gem.authors = ["Anton Kaliaev"]
8
7
  gem.email = ["anton.kalyaev@gmail.com"]
9
8
  gem.description = %q{factory_girl_sequences provides a collection of useful FactoryGirl sequences}
10
9
  gem.summary = %q{Collection of useful FactoryGirl sequences}
11
- gem.homepage = "http://github.com/akalyaev/factory_girl_sequences"
10
+ gem.homepage = "http://github.com/melekes/factory_girl_sequences"
12
11
  gem.license = "MIT"
13
12
 
14
13
  gem.files = `git ls-files`.split($\)
@@ -21,5 +20,5 @@ Gem::Specification.new do |gem|
21
20
  gem.extra_rdoc_files = %w(README.md CHANGELOG.md LICENSE)
22
21
 
23
22
  gem.add_dependency 'factory_girl', '~> 4.0'
24
- gem.add_dependency 'activesupport', '>= 3.0.0'
23
+ gem.add_dependency 'activesupport', '>= 4.2'
25
24
  end
@@ -1,3 +1,4 @@
1
+ # @announce-output
1
2
  Feature:
2
3
  I would like Factory Girl Sequences gem to automatically register sequences
3
4
 
@@ -8,9 +9,9 @@ Feature:
8
9
  And I add "factory_girl_sequences" from this project as a dependency
9
10
 
10
11
  Scenario: Using Factory Girl Sequences registers predefined sequences
11
- And I run `bundle install` with a clean environment
12
- And I run `bundle exec rails generate model User name:string` with a clean environment
13
- And I run `bundle exec rake db:migrate` with a clean environment
12
+ And I run `bundle install`
13
+ And I run `bundle exec rails generate model User name`
14
+ And I run `bundle exec rake db:migrate`
14
15
  When I write to "test/unit/user_test.rb" with:
15
16
  """
16
17
  require 'test_helper'
@@ -22,5 +23,5 @@ Feature:
22
23
  end
23
24
  end
24
25
  """
25
- And I run `bundle exec rake test` with a clean environment
26
- Then the output should contain "1 tests, 1 assertions, 0 failures, 0 errors"
26
+ And I run `bundle exec rake test`
27
+ Then the output should contain "1 runs, 1 assertions, 0 failures, 0 errors, 0 skips"
@@ -5,10 +5,3 @@ PROJECT_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..')).f
5
5
  Before do
6
6
  @aruba_timeout_seconds = 3600
7
7
  end
8
-
9
- Aruba.configure do |config|
10
- config.before_cmd do |cmd|
11
- set_env('JRUBY_OPTS', "-X-C #{ENV['JRUBY_OPTS']}") # disable JIT since these processes are so short lived
12
- set_env('JAVA_OPTS', "-d32 #{ENV['JAVA_OPTS']}") # force jRuby to use client JVM for faster startup times
13
- end
14
- end if RUBY_PLATFORM == 'java'
@@ -0,0 +1,16 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rake"
6
+ gem "rails", "~> 4.2.7"
7
+ gem "sqlite3"
8
+ gem "factory_girl_rails"
9
+
10
+ group :test do
11
+ gem "cucumber", "~> 2.4.0"
12
+ gem "aruba", "~> 0.14.2"
13
+ gem "appraisal", "~> 2.1"
14
+ end
15
+
16
+ gemspec :path => "../"
@@ -0,0 +1,159 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_girl_sequences (4.3.1)
5
+ activesupport (>= 4.2)
6
+ factory_girl (~> 4.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.7.1)
12
+ actionpack (= 4.2.7.1)
13
+ actionview (= 4.2.7.1)
14
+ activejob (= 4.2.7.1)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.7.1)
18
+ actionview (= 4.2.7.1)
19
+ activesupport (= 4.2.7.1)
20
+ rack (~> 1.6)
21
+ rack-test (~> 0.6.2)
22
+ rails-dom-testing (~> 1.0, >= 1.0.5)
23
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
+ actionview (4.2.7.1)
25
+ activesupport (= 4.2.7.1)
26
+ builder (~> 3.1)
27
+ erubis (~> 2.7.0)
28
+ rails-dom-testing (~> 1.0, >= 1.0.5)
29
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
+ activejob (4.2.7.1)
31
+ activesupport (= 4.2.7.1)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.7.1)
34
+ activesupport (= 4.2.7.1)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.7.1)
37
+ activemodel (= 4.2.7.1)
38
+ activesupport (= 4.2.7.1)
39
+ arel (~> 6.0)
40
+ activesupport (4.2.7.1)
41
+ i18n (~> 0.7)
42
+ json (~> 1.7, >= 1.7.7)
43
+ minitest (~> 5.1)
44
+ thread_safe (~> 0.3, >= 0.3.4)
45
+ tzinfo (~> 1.1)
46
+ appraisal (2.1.0)
47
+ bundler
48
+ rake
49
+ thor (>= 0.14.0)
50
+ arel (6.0.4)
51
+ aruba (0.14.2)
52
+ childprocess (~> 0.5.6)
53
+ contracts (~> 0.9)
54
+ cucumber (>= 1.3.19)
55
+ ffi (~> 1.9.10)
56
+ rspec-expectations (>= 2.99)
57
+ thor (~> 0.19)
58
+ builder (3.2.3)
59
+ childprocess (0.5.9)
60
+ ffi (~> 1.0, >= 1.0.11)
61
+ concurrent-ruby (1.0.4)
62
+ contracts (0.14.0)
63
+ cucumber (2.4.0)
64
+ builder (>= 2.1.2)
65
+ cucumber-core (~> 1.5.0)
66
+ cucumber-wire (~> 0.0.1)
67
+ diff-lcs (>= 1.1.3)
68
+ gherkin (~> 4.0)
69
+ multi_json (>= 1.7.5, < 2.0)
70
+ multi_test (>= 0.1.2)
71
+ cucumber-core (1.5.0)
72
+ gherkin (~> 4.0)
73
+ cucumber-wire (0.0.1)
74
+ diff-lcs (1.2.5)
75
+ erubis (2.7.0)
76
+ factory_girl (4.8.0)
77
+ activesupport (>= 3.0.0)
78
+ factory_girl_rails (4.8.0)
79
+ factory_girl (~> 4.8.0)
80
+ railties (>= 3.0.0)
81
+ ffi (1.9.17)
82
+ gherkin (4.0.0)
83
+ globalid (0.3.7)
84
+ activesupport (>= 4.1.0)
85
+ i18n (0.7.0)
86
+ json (1.8.6)
87
+ loofah (2.0.3)
88
+ nokogiri (>= 1.5.9)
89
+ mail (2.6.4)
90
+ mime-types (>= 1.16, < 4)
91
+ mime-types (3.1)
92
+ mime-types-data (~> 3.2015)
93
+ mime-types-data (3.2016.0521)
94
+ mini_portile2 (2.1.0)
95
+ minitest (5.10.1)
96
+ multi_json (1.12.1)
97
+ multi_test (0.1.2)
98
+ nokogiri (1.7.0.1)
99
+ mini_portile2 (~> 2.1.0)
100
+ rack (1.6.5)
101
+ rack-test (0.6.3)
102
+ rack (>= 1.0)
103
+ rails (4.2.7.1)
104
+ actionmailer (= 4.2.7.1)
105
+ actionpack (= 4.2.7.1)
106
+ actionview (= 4.2.7.1)
107
+ activejob (= 4.2.7.1)
108
+ activemodel (= 4.2.7.1)
109
+ activerecord (= 4.2.7.1)
110
+ activesupport (= 4.2.7.1)
111
+ bundler (>= 1.3.0, < 2.0)
112
+ railties (= 4.2.7.1)
113
+ sprockets-rails
114
+ rails-deprecated_sanitizer (1.0.3)
115
+ activesupport (>= 4.2.0.alpha)
116
+ rails-dom-testing (1.0.8)
117
+ activesupport (>= 4.2.0.beta, < 5.0)
118
+ nokogiri (~> 1.6)
119
+ rails-deprecated_sanitizer (>= 1.0.1)
120
+ rails-html-sanitizer (1.0.3)
121
+ loofah (~> 2.0)
122
+ railties (4.2.7.1)
123
+ actionpack (= 4.2.7.1)
124
+ activesupport (= 4.2.7.1)
125
+ rake (>= 0.8.7)
126
+ thor (>= 0.18.1, < 2.0)
127
+ rake (12.0.0)
128
+ rspec-expectations (3.5.0)
129
+ diff-lcs (>= 1.2.0, < 2.0)
130
+ rspec-support (~> 3.5.0)
131
+ rspec-support (3.5.0)
132
+ sprockets (3.7.1)
133
+ concurrent-ruby (~> 1.0)
134
+ rack (> 1, < 3)
135
+ sprockets-rails (3.2.0)
136
+ actionpack (>= 4.0)
137
+ activesupport (>= 4.0)
138
+ sprockets (>= 3.0.0)
139
+ sqlite3 (1.3.13)
140
+ thor (0.19.4)
141
+ thread_safe (0.3.5)
142
+ tzinfo (1.2.2)
143
+ thread_safe (~> 0.1)
144
+
145
+ PLATFORMS
146
+ ruby
147
+
148
+ DEPENDENCIES
149
+ appraisal (~> 2.1)
150
+ aruba (~> 0.14.2)
151
+ cucumber (~> 2.4.0)
152
+ factory_girl_rails
153
+ factory_girl_sequences!
154
+ rails (~> 4.2.7)
155
+ rake
156
+ sqlite3
157
+
158
+ BUNDLED WITH
159
+ 1.13.6
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rake"
6
+ gem "rails", "~> 5.0.0"
7
+ gem "sqlite3"
8
+ gem "factory_girl_rails"
9
+ gem "listen"
10
+
11
+ group :test do
12
+ gem "cucumber", "~> 2.4.0"
13
+ gem "aruba", "~> 0.14.2"
14
+ gem "appraisal", "~> 2.1"
15
+ end
16
+
17
+ gemspec :path => "../"
@@ -0,0 +1,173 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ factory_girl_sequences (4.3.1)
5
+ activesupport (>= 4.2)
6
+ factory_girl (~> 4.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.0.1)
12
+ actionpack (= 5.0.1)
13
+ nio4r (~> 1.2)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.0.1)
16
+ actionpack (= 5.0.1)
17
+ actionview (= 5.0.1)
18
+ activejob (= 5.0.1)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.0.1)
22
+ actionview (= 5.0.1)
23
+ activesupport (= 5.0.1)
24
+ rack (~> 2.0)
25
+ rack-test (~> 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.0.1)
29
+ activesupport (= 5.0.1)
30
+ builder (~> 3.1)
31
+ erubis (~> 2.7.0)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
+ activejob (5.0.1)
35
+ activesupport (= 5.0.1)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.0.1)
38
+ activesupport (= 5.0.1)
39
+ activerecord (5.0.1)
40
+ activemodel (= 5.0.1)
41
+ activesupport (= 5.0.1)
42
+ arel (~> 7.0)
43
+ activesupport (5.0.1)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (~> 0.7)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ appraisal (2.1.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (7.1.4)
53
+ aruba (0.14.2)
54
+ childprocess (~> 0.5.6)
55
+ contracts (~> 0.9)
56
+ cucumber (>= 1.3.19)
57
+ ffi (~> 1.9.10)
58
+ rspec-expectations (>= 2.99)
59
+ thor (~> 0.19)
60
+ builder (3.2.3)
61
+ childprocess (0.5.9)
62
+ ffi (~> 1.0, >= 1.0.11)
63
+ concurrent-ruby (1.0.4)
64
+ contracts (0.14.0)
65
+ cucumber (2.4.0)
66
+ builder (>= 2.1.2)
67
+ cucumber-core (~> 1.5.0)
68
+ cucumber-wire (~> 0.0.1)
69
+ diff-lcs (>= 1.1.3)
70
+ gherkin (~> 4.0)
71
+ multi_json (>= 1.7.5, < 2.0)
72
+ multi_test (>= 0.1.2)
73
+ cucumber-core (1.5.0)
74
+ gherkin (~> 4.0)
75
+ cucumber-wire (0.0.1)
76
+ diff-lcs (1.2.5)
77
+ erubis (2.7.0)
78
+ factory_girl (4.8.0)
79
+ activesupport (>= 3.0.0)
80
+ factory_girl_rails (4.8.0)
81
+ factory_girl (~> 4.8.0)
82
+ railties (>= 3.0.0)
83
+ ffi (1.9.17)
84
+ gherkin (4.0.0)
85
+ globalid (0.3.7)
86
+ activesupport (>= 4.1.0)
87
+ i18n (0.7.0)
88
+ listen (3.1.5)
89
+ rb-fsevent (~> 0.9, >= 0.9.4)
90
+ rb-inotify (~> 0.9, >= 0.9.7)
91
+ ruby_dep (~> 1.2)
92
+ loofah (2.0.3)
93
+ nokogiri (>= 1.5.9)
94
+ mail (2.6.4)
95
+ mime-types (>= 1.16, < 4)
96
+ method_source (0.8.2)
97
+ mime-types (3.1)
98
+ mime-types-data (~> 3.2015)
99
+ mime-types-data (3.2016.0521)
100
+ mini_portile2 (2.1.0)
101
+ minitest (5.10.1)
102
+ multi_json (1.12.1)
103
+ multi_test (0.1.2)
104
+ nio4r (1.2.1)
105
+ nokogiri (1.7.0.1)
106
+ mini_portile2 (~> 2.1.0)
107
+ rack (2.0.1)
108
+ rack-test (0.6.3)
109
+ rack (>= 1.0)
110
+ rails (5.0.1)
111
+ actioncable (= 5.0.1)
112
+ actionmailer (= 5.0.1)
113
+ actionpack (= 5.0.1)
114
+ actionview (= 5.0.1)
115
+ activejob (= 5.0.1)
116
+ activemodel (= 5.0.1)
117
+ activerecord (= 5.0.1)
118
+ activesupport (= 5.0.1)
119
+ bundler (>= 1.3.0, < 2.0)
120
+ railties (= 5.0.1)
121
+ sprockets-rails (>= 2.0.0)
122
+ rails-dom-testing (2.0.2)
123
+ activesupport (>= 4.2.0, < 6.0)
124
+ nokogiri (~> 1.6)
125
+ rails-html-sanitizer (1.0.3)
126
+ loofah (~> 2.0)
127
+ railties (5.0.1)
128
+ actionpack (= 5.0.1)
129
+ activesupport (= 5.0.1)
130
+ method_source
131
+ rake (>= 0.8.7)
132
+ thor (>= 0.18.1, < 2.0)
133
+ rake (12.0.0)
134
+ rb-fsevent (0.9.8)
135
+ rb-inotify (0.9.7)
136
+ ffi (>= 0.5.0)
137
+ rspec-expectations (3.5.0)
138
+ diff-lcs (>= 1.2.0, < 2.0)
139
+ rspec-support (~> 3.5.0)
140
+ rspec-support (3.5.0)
141
+ ruby_dep (1.5.0)
142
+ sprockets (3.7.1)
143
+ concurrent-ruby (~> 1.0)
144
+ rack (> 1, < 3)
145
+ sprockets-rails (3.2.0)
146
+ actionpack (>= 4.0)
147
+ activesupport (>= 4.0)
148
+ sprockets (>= 3.0.0)
149
+ sqlite3 (1.3.13)
150
+ thor (0.19.4)
151
+ thread_safe (0.3.5)
152
+ tzinfo (1.2.2)
153
+ thread_safe (~> 0.1)
154
+ websocket-driver (0.6.4)
155
+ websocket-extensions (>= 0.1.0)
156
+ websocket-extensions (0.1.2)
157
+
158
+ PLATFORMS
159
+ ruby
160
+
161
+ DEPENDENCIES
162
+ appraisal (~> 2.1)
163
+ aruba (~> 0.14.2)
164
+ cucumber (~> 2.4.0)
165
+ factory_girl_rails
166
+ factory_girl_sequences!
167
+ listen
168
+ rails (~> 5.0.0)
169
+ rake
170
+ sqlite3
171
+
172
+ BUNDLED WITH
173
+ 1.13.6
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factory_girl_sequences
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.1
4
+ version: 4.8.0
5
5
  platform: ruby
6
6
  authors:
7
- - Anton Kalyaev
7
+ - Anton Kaliaev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-12 00:00:00.000000000 Z
11
+ date: 2017-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: factory_girl
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 3.0.0
33
+ version: '4.2'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 3.0.0
40
+ version: '4.2'
41
41
  description: factory_girl_sequences provides a collection of useful FactoryGirl sequences
42
42
  email:
43
43
  - anton.kalyaev@gmail.com
@@ -48,27 +48,30 @@ extra_rdoc_files:
48
48
  - CHANGELOG.md
49
49
  - LICENSE
50
50
  files:
51
+ - ".dockerignore"
51
52
  - ".gitignore"
52
53
  - ".travis.yml"
53
54
  - ".yardopts"
54
55
  - Appraisals
55
56
  - CHANGELOG.md
57
+ - Dockerfile
56
58
  - Gemfile
57
59
  - LICENSE
60
+ - Makefile
58
61
  - README.md
59
62
  - Rakefile
60
63
  - factory_girl_sequences.gemspec
61
64
  - features/sequences.feature
62
- - features/step_definitions/appraisal.rb
63
65
  - features/step_definitions/rails_steps.rb
64
66
  - features/support/env.rb
65
- - gemfiles/rails4.0.gemfile
66
- - gemfiles/rails4.0.gemfile.lock
67
+ - gemfiles/rails_4.gemfile
68
+ - gemfiles/rails_4.gemfile.lock
69
+ - gemfiles/rails_5.gemfile
70
+ - gemfiles/rails_5.gemfile.lock
67
71
  - lib/factory_girl_sequences.rb
68
72
  - lib/factory_girl_sequences/reload.rb
69
73
  - lib/factory_girl_sequences/sequences.rb
70
- - lib/factory_girl_sequences/version.rb
71
- homepage: http://github.com/akalyaev/factory_girl_sequences
74
+ homepage: http://github.com/melekes/factory_girl_sequences
72
75
  licenses:
73
76
  - MIT
74
77
  metadata: {}
@@ -94,12 +97,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
97
  version: '0'
95
98
  requirements: []
96
99
  rubyforge_project:
97
- rubygems_version: 2.2.2
100
+ rubygems_version: 2.6.8
98
101
  signing_key:
99
102
  specification_version: 4
100
103
  summary: Collection of useful FactoryGirl sequences
101
104
  test_files:
102
105
  - features/sequences.feature
103
- - features/step_definitions/appraisal.rb
104
106
  - features/step_definitions/rails_steps.rb
105
107
  - features/support/env.rb
@@ -1,3 +0,0 @@
1
- When /^I run `([^"]+)` with a clean environment$/ do |command|
2
- step %{I successfully run `ruby -e 'system({"BUNDLE_GEMFILE" => nil}, "#{command}")'`}
3
- end
@@ -1,15 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "rake"
6
- gem "appraisal", "~> 0.5.0"
7
- gem "cucumber", "~> 1.2.1"
8
- gem "aruba", "~> 0.5.1"
9
- gem "rails", "4.0"
10
- gem "factory_girl_rails"
11
- gem "sdoc"
12
- gem "sqlite3"
13
- gem "jbuilder"
14
-
15
- gemspec :path=>"../"
@@ -1,131 +0,0 @@
1
- PATH
2
- remote: /projects/fun-box/factory_girl_sequences
3
- specs:
4
- factory_girl_sequences (4.2.0)
5
- activesupport (>= 3.0.0)
6
- factory_girl (~> 4.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.0.0)
12
- actionpack (= 4.0.0)
13
- mail (~> 2.5.3)
14
- actionpack (4.0.0)
15
- activesupport (= 4.0.0)
16
- builder (~> 3.1.0)
17
- erubis (~> 2.7.0)
18
- rack (~> 1.5.2)
19
- rack-test (~> 0.6.2)
20
- activemodel (4.0.0)
21
- activesupport (= 4.0.0)
22
- builder (~> 3.1.0)
23
- activerecord (4.0.0)
24
- activemodel (= 4.0.0)
25
- activerecord-deprecated_finders (~> 1.0.2)
26
- activesupport (= 4.0.0)
27
- arel (~> 4.0.0)
28
- activerecord-deprecated_finders (1.0.3)
29
- activesupport (4.0.0)
30
- i18n (~> 0.6, >= 0.6.4)
31
- minitest (~> 4.2)
32
- multi_json (~> 1.3)
33
- thread_safe (~> 0.1)
34
- tzinfo (~> 0.3.37)
35
- appraisal (0.5.2)
36
- bundler
37
- rake
38
- arel (4.0.1)
39
- aruba (0.5.3)
40
- childprocess (>= 0.3.6)
41
- cucumber (>= 1.1.1)
42
- rspec-expectations (>= 2.7.0)
43
- atomic (1.1.14)
44
- builder (3.1.4)
45
- childprocess (0.3.9)
46
- ffi (~> 1.0, >= 1.0.11)
47
- cucumber (1.2.5)
48
- builder (>= 2.1.2)
49
- diff-lcs (>= 1.1.3)
50
- gherkin (~> 2.11.7)
51
- multi_json (~> 1.3)
52
- diff-lcs (1.2.5)
53
- erubis (2.7.0)
54
- factory_girl (4.3.0)
55
- activesupport (>= 3.0.0)
56
- factory_girl_rails (4.3.0)
57
- factory_girl (~> 4.3.0)
58
- railties (>= 3.0.0)
59
- ffi (1.9.3)
60
- gherkin (2.11.8)
61
- multi_json (~> 1.3)
62
- hike (1.2.3)
63
- i18n (0.6.5)
64
- jbuilder (1.5.2)
65
- activesupport (>= 3.0.0)
66
- multi_json (>= 1.2.0)
67
- json (1.8.1)
68
- mail (2.5.4)
69
- mime-types (~> 1.16)
70
- treetop (~> 1.4.8)
71
- mime-types (1.25)
72
- minitest (4.7.5)
73
- multi_json (1.8.2)
74
- polyglot (0.3.3)
75
- rack (1.5.2)
76
- rack-test (0.6.2)
77
- rack (>= 1.0)
78
- rails (4.0.0)
79
- actionmailer (= 4.0.0)
80
- actionpack (= 4.0.0)
81
- activerecord (= 4.0.0)
82
- activesupport (= 4.0.0)
83
- bundler (>= 1.3.0, < 2.0)
84
- railties (= 4.0.0)
85
- sprockets-rails (~> 2.0.0)
86
- railties (4.0.0)
87
- actionpack (= 4.0.0)
88
- activesupport (= 4.0.0)
89
- rake (>= 0.8.7)
90
- thor (>= 0.18.1, < 2.0)
91
- rake (10.1.0)
92
- rdoc (3.12.2)
93
- json (~> 1.4)
94
- rspec-expectations (2.14.4)
95
- diff-lcs (>= 1.1.3, < 2.0)
96
- sdoc (0.3.20)
97
- json (>= 1.1.3)
98
- rdoc (~> 3.10)
99
- sprockets (2.10.0)
100
- hike (~> 1.2)
101
- multi_json (~> 1.0)
102
- rack (~> 1.0)
103
- tilt (~> 1.1, != 1.3.0)
104
- sprockets-rails (2.0.1)
105
- actionpack (>= 3.0)
106
- activesupport (>= 3.0)
107
- sprockets (~> 2.8)
108
- sqlite3 (1.3.8)
109
- thor (0.18.1)
110
- thread_safe (0.1.3)
111
- atomic
112
- tilt (1.4.1)
113
- treetop (1.4.15)
114
- polyglot
115
- polyglot (>= 0.3.1)
116
- tzinfo (0.3.38)
117
-
118
- PLATFORMS
119
- ruby
120
-
121
- DEPENDENCIES
122
- appraisal (~> 0.5.0)
123
- aruba (~> 0.5.1)
124
- cucumber (~> 1.2.1)
125
- factory_girl_rails
126
- factory_girl_sequences!
127
- jbuilder
128
- rails (= 4.0)
129
- rake
130
- sdoc
131
- sqlite3
@@ -1,3 +0,0 @@
1
- module FactoryGirlSequences
2
- VERSION = "4.3.1"
3
- end