flash_rails_messages 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +9 -18
- data/.rspec +1 -0
- data/.travis.yml +8 -5
- data/Appraisals +4 -8
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +0 -6
- data/LICENSE.txt +17 -18
- data/README.md +32 -13
- data/Rakefile +3 -7
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/flash_rails_messages.gemspec +19 -10
- data/gemfiles/rails_5.2.gemfile +1 -4
- data/gemfiles/rails_5.2.gemfile.lock +90 -95
- data/gemfiles/{rails_4.gemfile → rails_6.0.gemfile} +1 -4
- data/gemfiles/rails_6.0.gemfile.lock +181 -0
- data/lib/flash_rails_messages/version.rb +1 -1
- data/lib/generators/flash_rails_messages/templates/config/initializers/flash_rails_messages_bootstrap.rb +2 -2
- data/lib/generators/flash_rails_messages/templates/config/initializers/flash_rails_messages_foundation.rb +1 -1
- metadata +80 -25
- data/gemfiles/rails_4.gemfile.lock +0 -155
- data/gemfiles/rails_5.gemfile +0 -10
- data/gemfiles/rails_5.gemfile.lock +0 -162
- data/spec/flash_rails_messages_spec.rb +0 -65
- data/spec/spec_helper.rb +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d747619e5fa0998ec1356d97178021b63d05670216a8006c3c7ec1a34b85738
|
4
|
+
data.tar.gz: 37e765cf3667110c1718ede76c72b6cf985bd7e46412068c435b72e7f8033e44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b99f4ca241ded9ad5574b13136f085e83874e8b489151e31ff6221ebade58ddebad6a0d853bb3da43fd6e915363139fa5609377ab5c7977caff559f210f5c964
|
7
|
+
data.tar.gz: f9c7b6ac914d7094dc072ef387617863ac32a59eb525f19dbf5210a511280349380892d98cc099c2b1a2abad1f6f18a49ee826f98eb7c3aca40da383432f75d4
|
data/.gitignore
CHANGED
@@ -1,20 +1,11 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/_yardoc/
|
4
|
+
/coverage/
|
5
|
+
/doc/
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/tmp/
|
9
|
+
coverage
|
5
10
|
.ruby-version
|
6
|
-
.ruby-gemset
|
7
|
-
.config
|
8
|
-
.yardoc
|
9
11
|
Gemfile.lock
|
10
|
-
InstalledFiles
|
11
|
-
_yardoc
|
12
|
-
coverage
|
13
|
-
doc/
|
14
|
-
lib/bundler/man
|
15
|
-
pkg
|
16
|
-
rdoc
|
17
|
-
spec/reports
|
18
|
-
test/tmp
|
19
|
-
test/version_tmp
|
20
|
-
tmp
|
data/.rspec
CHANGED
data/.travis.yml
CHANGED
@@ -1,11 +1,14 @@
|
|
1
|
+
sudo: false
|
2
|
+
cache: bundler
|
1
3
|
language: ruby
|
2
4
|
|
3
5
|
rvm:
|
4
|
-
- 2.
|
5
|
-
- 2.
|
6
|
-
|
6
|
+
- 2.5.5
|
7
|
+
- 2.6.3
|
8
|
+
|
9
|
+
before_install:
|
10
|
+
- gem install bundler -v 2.0.2
|
7
11
|
|
8
12
|
gemfile:
|
9
|
-
- gemfiles/rails_4.gemfile
|
10
|
-
- gemfiles/rails_5.gemfile
|
11
13
|
- gemfiles/rails_5.2.gemfile
|
14
|
+
- gemfiles/rails_6.0.gemfile
|
data/Appraisals
CHANGED
@@ -1,11 +1,7 @@
|
|
1
|
-
appraise 'rails-
|
2
|
-
gem 'rails', '~>
|
3
|
-
end
|
4
|
-
|
5
|
-
appraise 'rails-5' do
|
6
|
-
gem 'rails', '~> 5.0.0'
|
1
|
+
appraise 'rails-5.2' do
|
2
|
+
gem 'rails', '~> 5.2'
|
7
3
|
end
|
8
4
|
|
9
|
-
appraise 'rails-
|
10
|
-
gem 'rails', '~>
|
5
|
+
appraise 'rails-6.0' do
|
6
|
+
gem 'rails', '~> 6.0'
|
11
7
|
end
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at alejandrodevs@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
@@ -1,22 +1,21 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
2
|
|
3
|
-
|
3
|
+
Copyright (c) 2019 Alejandro Gutiérrez
|
4
4
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
the following conditions:
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
12
11
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
15
14
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
OF
|
22
|
-
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,49 +1,68 @@
|
|
1
1
|
# FlashRailsMessages
|
2
|
-
[![Build Status](https://travis-ci.
|
3
|
-
|
2
|
+
[![Build Status](https://travis-ci.com/alejandrodevs/flash_rails_messages.svg?branch=master)](https://travis-ci.org/alejandrodevs/flash_rails_messages) [![Coverage Status](https://coveralls.io/repos/github/alejandrodevs/flash_rails_messages/badge.svg?branch=master)](https://coveralls.io/github/alejandrodevs/flash_rails_messages?branch=master)
|
4
3
|
|
5
4
|
This gem provides an easy and simple way to display flash rails messages.
|
6
5
|
This works with [Bootstrap](http://getbootstrap.com/) and [Zurb Foundation 3](http://foundation.zurb.com/) frameworks.
|
7
6
|
|
8
|
-
|
9
7
|
## Installation
|
8
|
+
|
10
9
|
Add this line to your application's Gemfile:
|
10
|
+
|
11
11
|
```ruby
|
12
12
|
gem 'flash_rails_messages'
|
13
13
|
```
|
14
|
-
Run the bundle command to install it.
|
15
14
|
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install flash_rails_messages
|
16
22
|
|
17
23
|
### Bootstrap
|
24
|
+
|
18
25
|
To integrate **FlashRailsMessages** with [Bootstrap](http://getbootstrap.com/) run the next:
|
26
|
+
|
19
27
|
```console
|
20
28
|
rails generate flash_rails_messages:install --bootstrap
|
21
29
|
```
|
22
|
-
|
30
|
+
|
31
|
+
NOTE: Be sure that you added Bootstrap to your application.
|
23
32
|
|
24
33
|
|
25
34
|
### Zurb Foundation 3
|
35
|
+
|
26
36
|
To integrate **FlashRailsMessages** with [Zurb Foundation 3](http://foundation.zurb.com/) run the next:
|
37
|
+
|
27
38
|
```console
|
28
39
|
rails generate flash_rails_messages:install --foundation
|
29
40
|
```
|
30
|
-
NOTE: Be sure that you added Foundation assets on your application.
|
31
41
|
|
42
|
+
NOTE: Be sure that you added Foundation to your application.
|
32
43
|
|
33
44
|
## Usage
|
45
|
+
|
34
46
|
You just need to add the line below in your layout:
|
47
|
+
|
35
48
|
```erb
|
36
49
|
<%= render_flash_messages %>
|
37
50
|
```
|
38
51
|
|
52
|
+
## Development
|
39
53
|
|
40
|
-
|
41
|
-
Just update your **FlashRailsMessages** initializer according to your needs.
|
54
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
42
55
|
|
56
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
43
57
|
|
44
58
|
## Contributing
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
59
|
+
|
60
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/alejandrodevs/flash_rails_messages. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
61
|
+
|
62
|
+
## License
|
63
|
+
|
64
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
65
|
+
|
66
|
+
## Code of Conduct
|
67
|
+
|
68
|
+
Everyone interacting in the FlashRailsMessages project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/alejandrodevs/flash_rails_messages/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
CHANGED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "flash_rails_messages"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
1
|
+
lib = File.expand_path('lib', __dir__)
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
3
|
require 'flash_rails_messages/version'
|
5
4
|
|
@@ -8,19 +7,29 @@ Gem::Specification.new do |spec|
|
|
8
7
|
spec.version = FlashRailsMessages::VERSION
|
9
8
|
spec.authors = ['Alejandro Gutiérrez']
|
10
9
|
spec.email = ['alejandrodevs@gmail.com']
|
11
|
-
spec.description = 'A simple helper to display flash rails messages'
|
12
10
|
spec.summary = 'This gems provides an easy way to display flash rails messages'
|
11
|
+
spec.description = 'This gems provides an easy way to display flash rails messages'
|
13
12
|
spec.homepage = 'https://github.com/alejandrodevs/flash_rails_messages'
|
14
13
|
spec.license = 'MIT'
|
15
14
|
|
16
|
-
spec.
|
17
|
-
spec.
|
18
|
-
spec.
|
19
|
-
spec.require_paths = ['lib']
|
15
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
16
|
+
spec.metadata['source_code_uri'] = spec.homepage
|
17
|
+
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/LICENSE.txt"
|
20
18
|
|
21
|
-
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.bindir = 'exe'
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ['lib']
|
22
27
|
|
23
|
-
spec.
|
28
|
+
spec.add_development_dependency 'rake', '~> 12.0'
|
29
|
+
spec.add_development_dependency 'rspec', '~> 3.8'
|
30
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
31
|
+
spec.add_development_dependency 'appraisal', '~> 2.2'
|
32
|
+
spec.add_development_dependency 'coveralls', '~> 0.8'
|
24
33
|
|
25
|
-
spec.
|
34
|
+
spec.add_dependency 'rails', '>= 4.2'
|
26
35
|
end
|
data/gemfiles/rails_5.2.gemfile
CHANGED
@@ -1,49 +1,49 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
flash_rails_messages (1.0.
|
5
|
-
rails (>= 4.
|
4
|
+
flash_rails_messages (1.0.1)
|
5
|
+
rails (>= 4.2)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actioncable (5.2.
|
11
|
-
actionpack (= 5.2.
|
10
|
+
actioncable (5.2.3)
|
11
|
+
actionpack (= 5.2.3)
|
12
12
|
nio4r (~> 2.0)
|
13
13
|
websocket-driver (>= 0.6.1)
|
14
|
-
actionmailer (5.2.
|
15
|
-
actionpack (= 5.2.
|
16
|
-
actionview (= 5.2.
|
17
|
-
activejob (= 5.2.
|
14
|
+
actionmailer (5.2.3)
|
15
|
+
actionpack (= 5.2.3)
|
16
|
+
actionview (= 5.2.3)
|
17
|
+
activejob (= 5.2.3)
|
18
18
|
mail (~> 2.5, >= 2.5.4)
|
19
19
|
rails-dom-testing (~> 2.0)
|
20
|
-
actionpack (5.2.
|
21
|
-
actionview (= 5.2.
|
22
|
-
activesupport (= 5.2.
|
20
|
+
actionpack (5.2.3)
|
21
|
+
actionview (= 5.2.3)
|
22
|
+
activesupport (= 5.2.3)
|
23
23
|
rack (~> 2.0)
|
24
24
|
rack-test (>= 0.6.3)
|
25
25
|
rails-dom-testing (~> 2.0)
|
26
26
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
27
|
-
actionview (5.2.
|
28
|
-
activesupport (= 5.2.
|
27
|
+
actionview (5.2.3)
|
28
|
+
activesupport (= 5.2.3)
|
29
29
|
builder (~> 3.1)
|
30
30
|
erubi (~> 1.4)
|
31
31
|
rails-dom-testing (~> 2.0)
|
32
32
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
33
|
-
activejob (5.2.
|
34
|
-
activesupport (= 5.2.
|
33
|
+
activejob (5.2.3)
|
34
|
+
activesupport (= 5.2.3)
|
35
35
|
globalid (>= 0.3.6)
|
36
|
-
activemodel (5.2.
|
37
|
-
activesupport (= 5.2.
|
38
|
-
activerecord (5.2.
|
39
|
-
activemodel (= 5.2.
|
40
|
-
activesupport (= 5.2.
|
36
|
+
activemodel (5.2.3)
|
37
|
+
activesupport (= 5.2.3)
|
38
|
+
activerecord (5.2.3)
|
39
|
+
activemodel (= 5.2.3)
|
40
|
+
activesupport (= 5.2.3)
|
41
41
|
arel (>= 9.0)
|
42
|
-
activestorage (5.2.
|
43
|
-
actionpack (= 5.2.
|
44
|
-
activerecord (= 5.2.
|
42
|
+
activestorage (5.2.3)
|
43
|
+
actionpack (= 5.2.3)
|
44
|
+
activerecord (= 5.2.3)
|
45
45
|
marcel (~> 0.3.1)
|
46
|
-
activesupport (5.2.
|
46
|
+
activesupport (5.2.3)
|
47
47
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
48
48
|
i18n (>= 0.7, < 2)
|
49
49
|
minitest (~> 5.1)
|
@@ -54,117 +54,112 @@ GEM
|
|
54
54
|
thor (>= 0.14.0)
|
55
55
|
arel (9.0.0)
|
56
56
|
builder (3.2.3)
|
57
|
-
concurrent-ruby (1.
|
58
|
-
coveralls (0.
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
57
|
+
concurrent-ruby (1.1.5)
|
58
|
+
coveralls (0.8.23)
|
59
|
+
json (>= 1.8, < 3)
|
60
|
+
simplecov (~> 0.16.1)
|
61
|
+
term-ansicolor (~> 1.3)
|
62
|
+
thor (>= 0.19.4, < 2.0)
|
63
|
+
tins (~> 1.6)
|
64
64
|
crass (1.0.4)
|
65
65
|
diff-lcs (1.3)
|
66
|
-
docile (1.3.
|
67
|
-
erubi (1.
|
68
|
-
globalid (0.4.
|
66
|
+
docile (1.3.2)
|
67
|
+
erubi (1.8.0)
|
68
|
+
globalid (0.4.2)
|
69
69
|
activesupport (>= 4.2.0)
|
70
|
-
i18n (1.0
|
70
|
+
i18n (1.6.0)
|
71
71
|
concurrent-ruby (~> 1.0)
|
72
|
-
json (2.
|
73
|
-
loofah (2.2.
|
72
|
+
json (2.2.0)
|
73
|
+
loofah (2.2.3)
|
74
74
|
crass (~> 1.0.2)
|
75
75
|
nokogiri (>= 1.5.9)
|
76
|
-
mail (2.7.
|
76
|
+
mail (2.7.1)
|
77
77
|
mini_mime (>= 0.1.1)
|
78
|
-
marcel (0.3.
|
78
|
+
marcel (0.3.3)
|
79
79
|
mimemagic (~> 0.3.2)
|
80
|
-
method_source (0.9.
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
mimemagic (0.3.2)
|
85
|
-
mini_mime (1.0.0)
|
86
|
-
mini_portile2 (2.3.0)
|
80
|
+
method_source (0.9.2)
|
81
|
+
mimemagic (0.3.3)
|
82
|
+
mini_mime (1.0.2)
|
83
|
+
mini_portile2 (2.4.0)
|
87
84
|
minitest (5.11.3)
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
rack (
|
93
|
-
rack-test (1.0.0)
|
85
|
+
nio4r (2.4.0)
|
86
|
+
nokogiri (1.10.4)
|
87
|
+
mini_portile2 (~> 2.4.0)
|
88
|
+
rack (2.0.7)
|
89
|
+
rack-test (1.1.0)
|
94
90
|
rack (>= 1.0, < 3)
|
95
|
-
rails (5.2.
|
96
|
-
actioncable (= 5.2.
|
97
|
-
actionmailer (= 5.2.
|
98
|
-
actionpack (= 5.2.
|
99
|
-
actionview (= 5.2.
|
100
|
-
activejob (= 5.2.
|
101
|
-
activemodel (= 5.2.
|
102
|
-
activerecord (= 5.2.
|
103
|
-
activestorage (= 5.2.
|
104
|
-
activesupport (= 5.2.
|
91
|
+
rails (5.2.3)
|
92
|
+
actioncable (= 5.2.3)
|
93
|
+
actionmailer (= 5.2.3)
|
94
|
+
actionpack (= 5.2.3)
|
95
|
+
actionview (= 5.2.3)
|
96
|
+
activejob (= 5.2.3)
|
97
|
+
activemodel (= 5.2.3)
|
98
|
+
activerecord (= 5.2.3)
|
99
|
+
activestorage (= 5.2.3)
|
100
|
+
activesupport (= 5.2.3)
|
105
101
|
bundler (>= 1.3.0)
|
106
|
-
railties (= 5.2.
|
102
|
+
railties (= 5.2.3)
|
107
103
|
sprockets-rails (>= 2.0.0)
|
108
104
|
rails-dom-testing (2.0.3)
|
109
105
|
activesupport (>= 4.2.0)
|
110
106
|
nokogiri (>= 1.6)
|
111
|
-
rails-html-sanitizer (1.0
|
107
|
+
rails-html-sanitizer (1.2.0)
|
112
108
|
loofah (~> 2.2, >= 2.2.2)
|
113
|
-
railties (5.2.
|
114
|
-
actionpack (= 5.2.
|
115
|
-
activesupport (= 5.2.
|
109
|
+
railties (5.2.3)
|
110
|
+
actionpack (= 5.2.3)
|
111
|
+
activesupport (= 5.2.3)
|
116
112
|
method_source
|
117
113
|
rake (>= 0.8.7)
|
118
|
-
thor (>= 0.
|
119
|
-
rake (12.3.
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
rspec-
|
124
|
-
|
125
|
-
rspec-
|
126
|
-
rspec-
|
127
|
-
rspec-support (~> 3.7.0)
|
128
|
-
rspec-expectations (3.7.0)
|
114
|
+
thor (>= 0.19.0, < 2.0)
|
115
|
+
rake (12.3.3)
|
116
|
+
rspec (3.8.0)
|
117
|
+
rspec-core (~> 3.8.0)
|
118
|
+
rspec-expectations (~> 3.8.0)
|
119
|
+
rspec-mocks (~> 3.8.0)
|
120
|
+
rspec-core (3.8.2)
|
121
|
+
rspec-support (~> 3.8.0)
|
122
|
+
rspec-expectations (3.8.4)
|
129
123
|
diff-lcs (>= 1.2.0, < 2.0)
|
130
|
-
rspec-support (~> 3.
|
131
|
-
rspec-mocks (3.
|
124
|
+
rspec-support (~> 3.8.0)
|
125
|
+
rspec-mocks (3.8.1)
|
132
126
|
diff-lcs (>= 1.2.0, < 2.0)
|
133
|
-
rspec-support (~> 3.
|
134
|
-
rspec-support (3.
|
127
|
+
rspec-support (~> 3.8.0)
|
128
|
+
rspec-support (3.8.2)
|
135
129
|
simplecov (0.16.1)
|
136
130
|
docile (~> 1.1)
|
137
131
|
json (>= 1.8, < 3)
|
138
132
|
simplecov-html (~> 0.10.0)
|
139
133
|
simplecov-html (0.10.2)
|
140
|
-
sprockets (3.7.
|
134
|
+
sprockets (3.7.2)
|
141
135
|
concurrent-ruby (~> 1.0)
|
142
136
|
rack (> 1, < 3)
|
143
137
|
sprockets-rails (3.2.1)
|
144
138
|
actionpack (>= 4.0)
|
145
139
|
activesupport (>= 4.0)
|
146
140
|
sprockets (>= 3.0.0)
|
147
|
-
term-ansicolor (1.
|
148
|
-
tins (~> 0
|
149
|
-
thor (0.
|
141
|
+
term-ansicolor (1.7.1)
|
142
|
+
tins (~> 1.0)
|
143
|
+
thor (0.20.3)
|
150
144
|
thread_safe (0.3.6)
|
151
|
-
tins (
|
145
|
+
tins (1.21.1)
|
152
146
|
tzinfo (1.2.5)
|
153
147
|
thread_safe (~> 0.1)
|
154
|
-
websocket-driver (0.7.
|
148
|
+
websocket-driver (0.7.1)
|
155
149
|
websocket-extensions (>= 0.1.0)
|
156
|
-
websocket-extensions (0.1.
|
150
|
+
websocket-extensions (0.1.4)
|
157
151
|
|
158
152
|
PLATFORMS
|
159
153
|
ruby
|
160
154
|
|
161
155
|
DEPENDENCIES
|
162
|
-
appraisal
|
163
|
-
|
156
|
+
appraisal (~> 2.2)
|
157
|
+
bundler (~> 2.0)
|
158
|
+
coveralls (~> 0.8)
|
164
159
|
flash_rails_messages!
|
165
|
-
rails (~> 5.2
|
166
|
-
|
167
|
-
|
160
|
+
rails (~> 5.2)
|
161
|
+
rake (~> 12.0)
|
162
|
+
rspec (~> 3.8)
|
168
163
|
|
169
164
|
BUNDLED WITH
|
170
|
-
|
165
|
+
2.0.2
|