flag_shih_tzu 0.3.14 → 0.3.15

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: f838aaf59bd28697db5750c2102f66f23dfaed0b
4
- data.tar.gz: e61cc31873a236b52648fce2815f58b090ffd69d
3
+ metadata.gz: 72a4bf4078f8e813036f4c041b813891e9486d85
4
+ data.tar.gz: 2e5b44bc01f7b80731840242717839f97b935e05
5
5
  SHA512:
6
- metadata.gz: 02d87e4ec423ab7053d0b460bc51a889ba5a96ad343f6939f46b2056c024ed858520349b788a7d2a608a380d01e8eaae2374d945be4e3912eb3d3abe707c5d91
7
- data.tar.gz: 0a0b3097c2b6494b838a3b0536c7407117a6d6f4a78cca2cac19b677b03acf6ea6506d130604b2de06fb9b319e52f47a0fe98eec0ab8fff8f16c308e85c1d53f
6
+ metadata.gz: 5dad706a0cfa3a779af31de3a14e919312d40b7cd1a2390a45f6ea9c4825bed963c0f453ce7c7483d67b5249f153ce09050dd0faf317ef7d2f64c2ca45e0915e
7
+ data.tar.gz: 6bca2c375c2afbb2d71a064869e8667f86ad8aaa2533443b261621277b12cce03d19b6cd8e231d9ec5d8e28554b569ca878a4ee139dfdc771744baee722cc18c
data/.travis.yml CHANGED
@@ -3,7 +3,8 @@ rvm:
3
3
  - 2.0.0
4
4
  - 2.1.5
5
5
  - 2.2.3
6
- - jruby
6
+ - jruby-1.7.22
7
+ - jruby-9.0.1.0
7
8
  gemfile:
8
9
  - gemfiles/Gemfile.activerecord-2.3.x
9
10
  - gemfiles/Gemfile.activerecord-3.0.x
@@ -14,15 +15,25 @@ gemfile:
14
15
  - gemfiles/Gemfile.activerecord-4.2.x
15
16
  matrix:
16
17
  exclude:
17
- - rvm: jruby
18
+ - rvm: jruby-9.0.1.0
18
19
  gemfile: gemfiles/Gemfile.activerecord-2.3.x
19
- - rvm: jruby
20
+ - rvm: jruby-9.0.1.0
20
21
  gemfile: gemfiles/Gemfile.activerecord-3.0.x
21
- - rvm: jruby
22
+ - rvm: jruby-9.0.1.0
22
23
  gemfile: gemfiles/Gemfile.activerecord-3.1.x
23
- - rvm: jruby
24
+ - rvm: jruby-9.0.1.0
24
25
  gemfile: gemfiles/Gemfile.activerecord-3.2.x
25
- - rvm: jruby
26
+ - rvm: jruby-9.0.1.0
27
+ gemfile: gemfiles/Gemfile.activerecord-4.0.x
28
+ - rvm: jruby-1.7.22
29
+ gemfile: gemfiles/Gemfile.activerecord-2.3.x
30
+ - rvm: jruby-1.7.22
31
+ gemfile: gemfiles/Gemfile.activerecord-3.0.x
32
+ - rvm: jruby-1.7.22
33
+ gemfile: gemfiles/Gemfile.activerecord-3.1.x
34
+ - rvm: jruby-1.7.22
35
+ gemfile: gemfiles/Gemfile.activerecord-3.2.x
36
+ - rvm: jruby-1.7.22
26
37
  gemfile: gemfiles/Gemfile.activerecord-4.0.x
27
38
  - rvm: 2.2.3
28
39
  gemfile: gemfiles/Gemfile.activerecord-2.3.x
data/CHANGELOG.md CHANGED
@@ -2,12 +2,18 @@
2
2
 
3
3
  * Work merged into master branch goes here until it is released.
4
4
 
5
+ # Version 0.3.15 - OCT.11.2015
6
+
7
+ * Fixed testing for all supported environments by Peter Boling
8
+ * Testing on Travis: added Ruby jruby-9.0.1.0 by Peter Boling
9
+ * Documented compatibility matrix in table in README by Peter Boling
10
+
5
11
  # Version 0.3.14 - OCT.08.2015
6
12
 
7
13
  * Allow use without ActiveRecord (experimental) by jfcaiceo
8
14
  * Many net-zero code cleanups to follow Ruby Style Guide
9
15
  * Improved local testing script rake test:all
10
- * Testing on Travis: added Ruby 1.9.3, 2.1.5, 2.2.3, jruby
16
+ * Testing on Travis: added Ruby 1.9.3, 2.1.5, 2.2.3, jruby-1.7.0
11
17
  * Testing on Travis: removed Ruby 2.1.2
12
18
 
13
19
  # Version 0.3.13 - MAR.13.2015
data/Gemfile CHANGED
@@ -2,6 +2,8 @@ source "http://rubygems.org"
2
2
 
3
3
  # SO the gem can run the simple test suite against the raw bundled gems without the complex BUNDLE_GEMFILE setup
4
4
  gem "sqlite3", :platforms => [:ruby]
5
+ gem "reek", ">= 2.2.1", :platforms => [:ruby] # Last version to support Ruby 1.9
6
+ gem "roodi", ">= 5", :platforms => [:ruby]
5
7
 
6
8
  # Specify your gem's dependencies in flag_shih_tzu.gemspec
7
9
  gemspec
data/README.md CHANGED
@@ -47,11 +47,21 @@ What is a ["Shih Tzu"](http://en.wikipedia.org/wiki/Shih_Tzu)?
47
47
 
48
48
  The gem is actively being tested with:
49
49
 
50
- * MySQL, PostgreSQL and SQLite3 databases
51
- * ActiveRecord versions 2.3.x, 3.0.x, 3.1.x, 3.2.x, 4.0.x, 4.1.x, 4.2.x ;)
52
- * Ruby 1.9.3, 2.0.0, 2.1.5, 2.2.3
53
- * Travis tests the most important builds. See [.travis.yml](https://github.com/pboling/flag_shih_tzu/blob/master/.travis.yml) for the matrix.
54
- * All of the supported builds are run locally by me. See [bin/test.bash](https://github.com/pboling/flag_shih_tzu/blob/master/bin/test.bash)
50
+ * MySQL, PostgreSQL and SQLite3 databases (Both Ruby and JRuby adapters)
51
+ * ActiveRecord versions 2.3.x, 3.0.x, 3.1.x, 3.2.x, 4.0.x, 4.1.x, 4.2.x
52
+ * Ruby 1.9.3, 2.0.0, 2.1.5, 2.2.3, jruby-1.7.22, jruby-9.0.1.0
53
+ * Travis tests the supportedt builds. See [.travis.yml](https://github.com/pboling/flag_shih_tzu/blob/master/.travis.yml) for the matrix.
54
+ * All of the supported builds can also be run locally. See [bin/test.bash](https://github.com/pboling/flag_shih_tzu/blob/master/bin/test.bash)
55
+
56
+ ### Compatibility Matrix
57
+
58
+ | Ruby / Active Record | 2.3.x | 3.0.x | 3.1.x | 3.2.x | 4.0.x | 4.1.x | 4.2.x |
59
+ | 1.9.3 | ✓ | ✓ | ✓ | ✓ | | | |
60
+ | 2.0.0 | | ✓ | ✓ | ✓ | ✓ | ✓ | |
61
+ | 2.1.5 | | | | ✓ | ✓ | ✓ | ✓ |
62
+ | 2.2.3 | | | | ✓ | ✓ | ✓ | ✓ |
63
+ | jruby-1.7.22 | | | ✓ | ✓ | ✓ | ✓ | ✓ |
64
+ | jruby-9.0.1.0 | | | | ✓ | ✓ | ✓ | ✓ |
55
65
 
56
66
  **Legacy**
57
67
 
data/Rakefile CHANGED
@@ -24,17 +24,20 @@ RDoc::Task.new(:rdoc) do |rdoc|
24
24
  rdoc.rdoc_files.include('lib/**/*.rb')
25
25
  end
26
26
 
27
- require 'reek/rake/task'
28
- Reek::Rake::Task.new do |t|
29
- t.fail_on_error = true
30
- t.verbose = false
31
- t.source_files = 'lib/**/*.rb'
27
+ if defined?(Reek) # No Reek on JRuby
28
+ require 'reek/rake/task'
29
+ Reek::Rake::Task.new do |t|
30
+ t.fail_on_error = true
31
+ t.verbose = false
32
+ t.source_files = 'lib/**/*.rb'
33
+ end
32
34
  end
33
35
 
34
- require 'roodi'
35
- require 'roodi_task'
36
- RoodiTask.new do |t|
37
- t.verbose = false
36
+ if defined?(Roodi) # No Roodi on JRuby
37
+ require 'roodi_task'
38
+ RoodiTask.new do |t|
39
+ t.verbose = false
40
+ end
38
41
  end
39
42
 
40
43
  namespace :test do
data/bin/test.bash CHANGED
@@ -5,73 +5,87 @@ gem_installed() {
5
5
  if [ $num -eq "1" ]; then
6
6
  echo "already installed $1"
7
7
  else
8
+ echo "installing $1"
8
9
  gem install $1
9
10
  fi
10
11
  return 0
11
12
  }
12
13
 
14
+ run_all_tests_for() {
15
+ gemfile_location="gemfiles/Gemfile.activerecord-$2"
16
+ rm -rf $gemfile_location.lock
17
+ echo "rvm use $1@flag_shih_tzu-$2"
18
+ rvm use $1@flag_shih_tzu-$2 --create
19
+ gem_installed "bundler"
20
+ echo "BUNDLE_GEMFILE=$gemfile_location bundle update --quiet"
21
+ BUNDLE_GEMFILE=$gemfile_location bundle update --quiet
22
+ echo "NOCOVER=true BUNDLE_GEMFILE=$gemfile_location bundle exec rake test"
23
+ NOCOVER=true BUNDLE_GEMFILE=$gemfile_location bundle exec rake test
24
+ Count=$(( $Count + 1 ))
25
+ }
26
+
13
27
  # First run the tests for all versions supported on Ruby 1.9.3
28
+ #COMPATIBLE_VERSIONS=(2.3.x)
14
29
  COMPATIBLE_VERSIONS=(2.3.x 3.0.x 3.1.x 3.2.x)
15
- count=0
16
- while [ "x${COMPATIBLE_VERSIONS[count]}" != "x" ]
30
+ Count=0
31
+ while [ "x${COMPATIBLE_VERSIONS[Count]}" != "x" ]
17
32
  do
18
- version=${COMPATIBLE_VERSIONS[count]}
19
- rvm use 1.9.3@flag_shih_tzu-$version --create
20
- gem_installed "bundler"
21
- BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle update --quiet
22
- NOCOVER=true BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle exec rake test
23
- count=$(( $count + 1 ))
33
+ rvm_ruby_version=1.9.3
34
+ rails_version=${COMPATIBLE_VERSIONS[Count]}
35
+ run_all_tests_for $rvm_ruby_version $rails_version
24
36
  done
25
37
 
26
38
  # Then run the tests for all versions supported on Ruby 2.0.0
27
39
  COMPATIBLE_VERSIONS=(3.0.x 3.1.x 3.2.x 4.0.x 4.1.x)
28
- count=0
29
- while [ "x${COMPATIBLE_VERSIONS[count]}" != "x" ]
40
+ Count=0
41
+ while [ "x${COMPATIBLE_VERSIONS[Count]}" != "x" ]
30
42
  do
31
- version=${COMPATIBLE_VERSIONS[count]}
32
- rvm use 2.0.0@flag_shih_tzu-$version --create
33
- gem_installed "bundler"
34
- BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle install --quiet
35
- NOCOVER=true BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle exec rake test
36
- count=$(( $count + 1 ))
43
+ rvm_ruby_version=2.0.0
44
+ rails_version=${COMPATIBLE_VERSIONS[Count]}
45
+ run_all_tests_for $rvm_ruby_version $rails_version
37
46
  done
38
47
 
39
48
  # Then run the tests for all versions supported on Ruby 2.1.5
40
49
  COMPATIBLE_VERSIONS=(3.2.x 4.0.x 4.1.x 4.2.x)
41
- count=0
42
- while [ "x${COMPATIBLE_VERSIONS[count]}" != "x" ]
50
+ Count=0
51
+ while [ "x${COMPATIBLE_VERSIONS[Count]}" != "x" ]
43
52
  do
44
- version=${COMPATIBLE_VERSIONS[count]}
45
- rvm use 2.1.5@flag_shih_tzu-$version --create
46
- gem_installed "bundler"
47
- BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle install --quiet
48
- NOCOVER=true BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle exec rake test
49
- count=$(( $count + 1 ))
53
+ rvm_ruby_version=2.1.5
54
+ rails_version=${COMPATIBLE_VERSIONS[Count]}
55
+ run_all_tests_for $rvm_ruby_version $rails_version
50
56
  done
51
57
 
52
58
  # Then run the tests for all versions supported on Ruby 2.2.3
53
59
  COMPATIBLE_VERSIONS=(3.2.x 4.0.x 4.1.x 4.2.x)
54
- count=0
55
- while [ "x${COMPATIBLE_VERSIONS[count]}" != "x" ]
60
+ Count=0
61
+ while [ "x${COMPATIBLE_VERSIONS[Count]}" != "x" ]
56
62
  do
57
- version=${COMPATIBLE_VERSIONS[count]}
58
- rvm use 2.2.3@flag_shih_tzu-$version --create
59
- gem_installed "bundler"
60
- BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle install --quiet
61
- NOCOVER=true BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle exec rake test
62
- count=$(( $count + 1 ))
63
+ rvm_ruby_version=2.2.3
64
+ rails_version=${COMPATIBLE_VERSIONS[Count]}
65
+ run_all_tests_for $rvm_ruby_version $rails_version
66
+ done
67
+
68
+ # Then run the tests for all versions supported on jruby-1.7.22
69
+ # (which appears to pass for 3.1 - 4.2 inclusive)
70
+ # TODO: Investigate 2 failures on Rails 2.3 and 3.0
71
+ # assert_equal true, my_spaceship.update_flag!(:jeanlucpicard, false, true)
72
+ # assert_equal true, my_spaceship.update_flag!(:jeanlucpicard, false)
73
+ COMPATIBLE_VERSIONS=(3.1.x 3.2.x 4.0.x 4.1.x 4.2.x)
74
+ Count=0
75
+ while [ "x${COMPATIBLE_VERSIONS[Count]}" != "x" ]
76
+ do
77
+ rvm_ruby_version=jruby-1.7.22
78
+ rails_version=${COMPATIBLE_VERSIONS[Count]}
79
+ run_all_tests_for $rvm_ruby_version $rails_version
63
80
  done
64
81
 
65
82
  # Then run the tests for all versions supported on jruby-9.0.1.0
66
83
  # (which should be the same as the Ruby 2.2.3 compatibility set)
67
84
  COMPATIBLE_VERSIONS=(3.2.x 4.0.x 4.1.x 4.2.x)
68
- count=0
69
- while [ "x${COMPATIBLE_VERSIONS[count]}" != "x" ]
85
+ Count=0
86
+ while [ "x${COMPATIBLE_VERSIONS[Count]}" != "x" ]
70
87
  do
71
- version=${COMPATIBLE_VERSIONS[count]}
72
- rvm use jruby-9.0.1.0@flag_shih_tzu-$version --create
73
- gem_installed "bundler"
74
- BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle install --quiet
75
- NOCOVER=true BUNDLE_GEMFILE="gemfiles/Gemfile.activerecord-$version" bundle exec rake test
76
- count=$(( $count + 1 ))
88
+ rvm_ruby_version=jruby-9.0.1.0
89
+ rails_version=${COMPATIBLE_VERSIONS[Count]}
90
+ run_all_tests_for $rvm_ruby_version $rails_version
77
91
  done
@@ -28,8 +28,6 @@ ActiveRecord object.
28
28
  s.add_development_dependency "bundler"
29
29
  s.add_development_dependency "rake"
30
30
  s.add_development_dependency "rdoc", ">= 2.4.2"
31
- s.add_development_dependency "reek", ">= 2.2.1" # Last version to support Ruby 1.9
32
- s.add_development_dependency "roodi", ">= 5"
33
31
  s.add_development_dependency "coveralls"
34
32
  s.add_development_dependency "test-unit"
35
33
  end
@@ -7,11 +7,12 @@ gem "mime-types", "< 2.0.0", :platforms => [:ruby_18]
7
7
  gem "activerecord", "~> 2.3.0"
8
8
  gem "sqlite3", "~> 1.3", :platforms => [:ruby]
9
9
  gem "activerecord-jdbcsqlite3-adapter", :platforms => [:jruby]
10
- gem "activerecord-mysql2-adapter", :platforms => [:ruby]
10
+ gem "mysql", :platforms => [:ruby_19]
11
+ gem "activerecord-mysql2-adapter", :platforms => [:ruby_20]
11
12
  gem "activerecord-jdbcmysql-adapter", :platforms => [:jruby]
12
13
  gem "pg", :platforms => [:ruby_18]
13
14
  gem "activerecord-jdbcpostgresql-adapter", :platforms => [:jruby]
14
15
 
15
16
  gem "rake", "~> 0.9.6"
16
- gem "reek", "~> 2.2.1"
17
- gem "roodi", "~> 5.0.0"
17
+ gem "reek", "~> 2.2.1", :platforms => [:ruby]
18
+ gem "roodi", "~> 5.0.0", :platforms => [:ruby]
@@ -7,10 +7,11 @@ gem "mime-types", "< 2.0.0", :platforms => [:ruby_18]
7
7
  gem "activerecord", "~> 3.0.0"
8
8
  gem "sqlite3", "~> 1.3", :platforms => [:ruby]
9
9
  gem "activerecord-jdbcsqlite3-adapter", :platforms => [:jruby]
10
- gem "activerecord-mysql2-adapter", :platforms => [:ruby]
10
+ gem "mysql", :platforms => [:ruby_19]
11
+ gem "activerecord-mysql2-adapter", :platforms => [:ruby_20]
11
12
  gem "activerecord-jdbcmysql-adapter", :platforms => [:jruby]
12
13
  gem "pg", :platforms => [:ruby_18]
13
14
  gem "activerecord-jdbcpostgresql-adapter", :platforms => [:jruby]
14
15
 
15
- gem "reek", "~> 2.2.1"
16
- gem "roodi", "~> 5.0.0"
16
+ gem "reek", "~> 2.2.1", :platforms => [:ruby]
17
+ gem "roodi", "~> 5.0.0", :platforms => [:ruby]
@@ -7,10 +7,11 @@ gem "mime-types", "< 2.0.0", :platforms => [:ruby_18]
7
7
  gem "activerecord", "~> 3.1.0"
8
8
  gem "sqlite3", "~> 1.3", :platforms => [:ruby]
9
9
  gem "activerecord-jdbcsqlite3-adapter", :platforms => [:jruby]
10
- gem "activerecord-mysql2-adapter", :platforms => [:ruby]
10
+ gem "mysql", :platforms => [:ruby_19]
11
+ gem "activerecord-mysql2-adapter", :platforms => [:ruby_20]
11
12
  gem "activerecord-jdbcmysql-adapter", :platforms => [:jruby]
12
13
  gem "pg", :platforms => [:ruby_18]
13
14
  gem "activerecord-jdbcpostgresql-adapter", :platforms => [:jruby]
14
15
 
15
- gem "reek", "~> 2.2.1"
16
- gem "roodi", "~> 5.0.0"
16
+ gem "reek", "~> 2.2.1", :platforms => [:ruby]
17
+ gem "roodi", "~> 5.0.0", :platforms => [:ruby]
@@ -7,10 +7,11 @@ gem "mime-types", "< 2.0.0", :platforms => [:ruby_18]
7
7
  gem "activerecord", "~> 3.2.0"
8
8
  gem "sqlite3", "~> 1.3", :platforms => [:ruby]
9
9
  gem "activerecord-jdbcsqlite3-adapter", :platforms => [:jruby]
10
- gem "activerecord-mysql2-adapter", :platforms => [:ruby]
10
+ gem "activerecord-mysql-adapter", :platforms => [:ruby_19]
11
+ gem "activerecord-mysql2-adapter", :platforms => [:ruby_20]
11
12
  gem "activerecord-jdbcmysql-adapter", :platforms => [:jruby]
12
13
  gem "pg", :platforms => [:ruby_18]
13
14
  gem "activerecord-jdbcpostgresql-adapter", :platforms => [:jruby]
14
15
 
15
- gem "reek", "~> 2.2.1"
16
- gem "roodi", "~> 5.0.0"
16
+ gem "reek", "~> 2.2.1", :platforms => [:ruby]
17
+ gem "roodi", "~> 5.0.0", :platforms => [:ruby]
@@ -9,3 +9,6 @@ gem "activerecord-mysql2-adapter", :platforms => [:ruby]
9
9
  gem "activerecord-jdbcmysql-adapter", :platforms => [:jruby]
10
10
  gem "pg", :platforms => [:ruby_18]
11
11
  gem "activerecord-jdbcpostgresql-adapter", :platforms => [:jruby]
12
+
13
+ gem "reek", "~> 3.5.0", :platforms => [:ruby]
14
+ gem "roodi", "~> 5.0.0", :platforms => [:ruby]
@@ -9,3 +9,6 @@ gem "activerecord-mysql2-adapter", :platforms => [:ruby]
9
9
  gem "activerecord-jdbcmysql-adapter", :platforms => [:jruby]
10
10
  gem "pg", :platforms => [:ruby_18]
11
11
  gem "activerecord-jdbcpostgresql-adapter", :platforms => [:jruby]
12
+
13
+ gem "reek", "~> 3.5.0", :platforms => [:ruby]
14
+ gem "roodi", "~> 5.0.0", :platforms => [:ruby]
@@ -9,3 +9,6 @@ gem "activerecord-mysql2-adapter", :platforms => [:ruby]
9
9
  gem "activerecord-jdbcmysql-adapter", :platforms => [:jruby]
10
10
  gem "pg", :platforms => [:ruby_18]
11
11
  gem "activerecord-jdbcpostgresql-adapter", :platforms => [:jruby]
12
+
13
+ gem "reek", "~> 3.5.0", :platforms => [:ruby]
14
+ gem "roodi", "~> 5.0.0", :platforms => [:ruby]
@@ -1,3 +1,3 @@
1
1
  module FlagShihTzu
2
- VERSION = "0.3.14"
2
+ VERSION = "0.3.15"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flag_shih_tzu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.14
4
+ version: 0.3.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2015-10-08 00:00:00.000000000 Z
15
+ date: 2015-10-11 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: activerecord
@@ -70,34 +70,6 @@ dependencies:
70
70
  - - ">="
71
71
  - !ruby/object:Gem::Version
72
72
  version: 2.4.2
73
- - !ruby/object:Gem::Dependency
74
- name: reek
75
- requirement: !ruby/object:Gem::Requirement
76
- requirements:
77
- - - ">="
78
- - !ruby/object:Gem::Version
79
- version: 2.2.1
80
- type: :development
81
- prerelease: false
82
- version_requirements: !ruby/object:Gem::Requirement
83
- requirements:
84
- - - ">="
85
- - !ruby/object:Gem::Version
86
- version: 2.2.1
87
- - !ruby/object:Gem::Dependency
88
- name: roodi
89
- requirement: !ruby/object:Gem::Requirement
90
- requirements:
91
- - - ">="
92
- - !ruby/object:Gem::Version
93
- version: '5'
94
- type: :development
95
- prerelease: false
96
- version_requirements: !ruby/object:Gem::Requirement
97
- requirements:
98
- - - ">="
99
- - !ruby/object:Gem::Version
100
- version: '5'
101
73
  - !ruby/object:Gem::Dependency
102
74
  name: coveralls
103
75
  requirement: !ruby/object:Gem::Requirement
@@ -193,3 +165,4 @@ test_files:
193
165
  - test/flag_shih_tzu_test.rb
194
166
  - test/schema.rb
195
167
  - test/test_helper.rb
168
+ has_rdoc: