buoys 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/lib/buoys/helper.rb +1 -1
- data/lib/buoys/loader.rb +1 -1
- data/lib/buoys/version.rb +1 -1
- data/lib/generators/buoys/install_generator.rb +1 -1
- data/test/buoys_generator_test.rb +1 -0
- data/test/test_helper.rb +3 -3
- metadata +5 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36271005ba0ba04593d62e6d6f0d2c0cc0156c91
|
|
4
|
+
data.tar.gz: 62c723569c8a8ffb962b1204914209291efc0dca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df714e7c87349f56c64a60a99b7f5d8c94c34e9f572ce28bc60d3f5bbedf696b248eb4f7ded73d0c4cc4aeb7135df4f029cadd9774811c7ae1b23b88957d13af
|
|
7
|
+
data.tar.gz: 4b1d8c37a805d8f23e4246caaebc788ff7e962cc71e74084023ef89c04467c607656ace7f5c29f9bf05ae90d13ce92a054e0b9b7227ba7e30d69e75ae5b3ba09
|
data/lib/buoys/helper.rb
CHANGED
data/lib/buoys/loader.rb
CHANGED
data/lib/buoys/version.rb
CHANGED
data/test/test_helper.rb
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
# Configure Rails Environment
|
|
4
4
|
ENV['RAILS_ENV'] = 'test'
|
|
5
5
|
|
|
6
|
-
require File.expand_path('
|
|
7
|
-
ActiveRecord::Migrator.migrations_paths = [File.expand_path('
|
|
6
|
+
require File.expand_path('../test/dummy/config/environment.rb', __dir__)
|
|
7
|
+
ActiveRecord::Migrator.migrations_paths = [File.expand_path('../test/dummy/db/migrate', __dir__)]
|
|
8
8
|
require 'rails/test_help'
|
|
9
9
|
|
|
10
10
|
# Filter out Minitest backtrace while allowing backtrace from other libraries
|
|
@@ -18,7 +18,7 @@ end
|
|
|
18
18
|
|
|
19
19
|
# Load fixtures from the engine
|
|
20
20
|
if ActiveSupport::TestCase.respond_to?(:fixture_path=)
|
|
21
|
-
ActiveSupport::TestCase.fixture_path = File.expand_path('
|
|
21
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path('fixtures', __dir__)
|
|
22
22
|
ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
|
|
23
23
|
ActiveSupport::TestCase.fixtures :all
|
|
24
24
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: buoys
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- muryoimpl
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-04-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -58,20 +58,14 @@ dependencies:
|
|
|
58
58
|
requirements:
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '0.
|
|
62
|
-
- - ">="
|
|
63
|
-
- !ruby/object:Gem::Version
|
|
64
|
-
version: 0.49.1
|
|
61
|
+
version: '0.54'
|
|
65
62
|
type: :development
|
|
66
63
|
prerelease: false
|
|
67
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
68
65
|
requirements:
|
|
69
66
|
- - "~>"
|
|
70
67
|
- !ruby/object:Gem::Version
|
|
71
|
-
version: '0.
|
|
72
|
-
- - ">="
|
|
73
|
-
- !ruby/object:Gem::Version
|
|
74
|
-
version: 0.49.1
|
|
68
|
+
version: '0.54'
|
|
75
69
|
description: A Ruby on Rails breadcrumbs plugin.
|
|
76
70
|
email:
|
|
77
71
|
- muryoimpl@gmail.com
|
|
@@ -168,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
168
162
|
version: '0'
|
|
169
163
|
requirements: []
|
|
170
164
|
rubyforge_project:
|
|
171
|
-
rubygems_version: 2.
|
|
165
|
+
rubygems_version: 2.6.13
|
|
172
166
|
signing_key:
|
|
173
167
|
specification_version: 4
|
|
174
168
|
summary: A Ruby on Rails breadcrumbs plugin.
|