zoku 0.0.1
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 +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/zoku +5 -0
- data/lib/zoku.rb +6 -0
- data/lib/zoku/cli.rb +60 -0
- data/lib/zoku/commands/new.rb +54 -0
- data/lib/zoku/common.rb +17 -0
- data/lib/zoku/templates/base/.gitignore +17 -0
- data/lib/zoku/templates/base/Dockerfile +15 -0
- data/lib/zoku/templates/base/Gemfile +50 -0
- data/lib/zoku/templates/base/Gemfile.lock +174 -0
- data/lib/zoku/templates/base/README.md +24 -0
- data/lib/zoku/templates/base/Rakefile +6 -0
- data/lib/zoku/templates/base/app/assets/config/manifest.js +3 -0
- data/lib/zoku/templates/base/app/assets/images/.keep +0 -0
- data/lib/zoku/templates/base/app/assets/javascripts/application.js +16 -0
- data/lib/zoku/templates/base/app/assets/javascripts/cable.js +13 -0
- data/lib/zoku/templates/base/app/assets/javascripts/channels/.keep +0 -0
- data/lib/zoku/templates/base/app/assets/javascripts/static_pages.coffee +3 -0
- data/lib/zoku/templates/base/app/assets/stylesheets/application.css +15 -0
- data/lib/zoku/templates/base/app/assets/stylesheets/static_pages.scss +3 -0
- data/lib/zoku/templates/base/app/channels/application_cable/channel.rb +4 -0
- data/lib/zoku/templates/base/app/channels/application_cable/connection.rb +4 -0
- data/lib/zoku/templates/base/app/controllers/application_controller.rb +3 -0
- data/lib/zoku/templates/base/app/controllers/concerns/.keep +0 -0
- data/lib/zoku/templates/base/app/controllers/static_pages_controller.rb +4 -0
- data/lib/zoku/templates/base/app/helpers/application_helper.rb +2 -0
- data/lib/zoku/templates/base/app/helpers/static_pages_helper.rb +2 -0
- data/lib/zoku/templates/base/app/jobs/application_job.rb +2 -0
- data/lib/zoku/templates/base/app/mailers/application_mailer.rb +4 -0
- data/lib/zoku/templates/base/app/models/application_record.rb +3 -0
- data/lib/zoku/templates/base/app/models/concerns/.keep +0 -0
- data/lib/zoku/templates/base/app/views/layouts/application.haml +11 -0
- data/lib/zoku/templates/base/app/views/layouts/mailer.html.erb +13 -0
- data/lib/zoku/templates/base/app/views/layouts/mailer.text.erb +1 -0
- data/lib/zoku/templates/base/app/views/static_pages/index.haml +1 -0
- data/lib/zoku/templates/base/bin/bundle +3 -0
- data/lib/zoku/templates/base/bin/rails +4 -0
- data/lib/zoku/templates/base/bin/rake +4 -0
- data/lib/zoku/templates/base/bin/setup +34 -0
- data/lib/zoku/templates/base/bin/update +29 -0
- data/lib/zoku/templates/base/config.ru +5 -0
- data/lib/zoku/templates/base/config/application.rb +15 -0
- data/lib/zoku/templates/base/config/boot.rb +3 -0
- data/lib/zoku/templates/base/config/cable.yml +9 -0
- data/lib/zoku/templates/base/config/database.yml +88 -0
- data/lib/zoku/templates/base/config/environment.rb +5 -0
- data/lib/zoku/templates/base/config/environments/development.rb +54 -0
- data/lib/zoku/templates/base/config/environments/production.rb +86 -0
- data/lib/zoku/templates/base/config/environments/test.rb +42 -0
- data/lib/zoku/templates/base/config/initializers/application_controller_renderer.rb +6 -0
- data/lib/zoku/templates/base/config/initializers/assets.rb +11 -0
- data/lib/zoku/templates/base/config/initializers/backtrace_silencers.rb +7 -0
- data/lib/zoku/templates/base/config/initializers/cookies_serializer.rb +5 -0
- data/lib/zoku/templates/base/config/initializers/filter_parameter_logging.rb +4 -0
- data/lib/zoku/templates/base/config/initializers/inflections.rb +16 -0
- data/lib/zoku/templates/base/config/initializers/mime_types.rb +4 -0
- data/lib/zoku/templates/base/config/initializers/new_framework_defaults.rb +24 -0
- data/lib/zoku/templates/base/config/initializers/session_store.rb +3 -0
- data/lib/zoku/templates/base/config/initializers/wrap_parameters.rb +14 -0
- data/lib/zoku/templates/base/config/locales/en.yml +23 -0
- data/lib/zoku/templates/base/config/puma.rb +47 -0
- data/lib/zoku/templates/base/config/routes.rb +3 -0
- data/lib/zoku/templates/base/config/secrets.yml +22 -0
- data/lib/zoku/templates/base/config/spring.rb +6 -0
- data/lib/zoku/templates/base/db/seeds.rb +7 -0
- data/lib/zoku/templates/base/docker-compose.yml +24 -0
- data/lib/zoku/templates/base/lib/assets/.keep +0 -0
- data/lib/zoku/templates/base/lib/tasks/.keep +0 -0
- data/lib/zoku/templates/base/log/.keep +0 -0
- data/lib/zoku/templates/base/public/404.html +67 -0
- data/lib/zoku/templates/base/public/422.html +67 -0
- data/lib/zoku/templates/base/public/500.html +66 -0
- data/lib/zoku/templates/base/public/apple-touch-icon-precomposed.png +0 -0
- data/lib/zoku/templates/base/public/apple-touch-icon.png +0 -0
- data/lib/zoku/templates/base/public/favicon.ico +0 -0
- data/lib/zoku/templates/base/public/robots.txt +5 -0
- data/lib/zoku/templates/base/test/controllers/.keep +0 -0
- data/lib/zoku/templates/base/test/controllers/static_pages_controller_test.rb +9 -0
- data/lib/zoku/templates/base/test/fixtures/.keep +0 -0
- data/lib/zoku/templates/base/test/fixtures/files/.keep +0 -0
- data/lib/zoku/templates/base/test/helpers/.keep +0 -0
- data/lib/zoku/templates/base/test/integration/.keep +0 -0
- data/lib/zoku/templates/base/test/mailers/.keep +0 -0
- data/lib/zoku/templates/base/test/models/.keep +0 -0
- data/lib/zoku/templates/base/test/test_helper.rb +10 -0
- data/lib/zoku/templates/base/tmp/.keep +0 -0
- data/lib/zoku/templates/base/vendor/assets/javascripts/.keep +0 -0
- data/lib/zoku/templates/base/vendor/assets/stylesheets/.keep +0 -0
- data/lib/zoku/util.rb +14 -0
- data/lib/zoku/version.rb +3 -0
- data/zoku.gemspec +41 -0
- metadata +230 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: bbd72d83a3418467d264e9226d8bba3ff68949c9
|
|
4
|
+
data.tar.gz: c3cd7844fd87dd145dc92b2a1687e356c2af3281
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: e6715f6f0601504d09a8e2488e20475ba18bb5304cf0229645d0ebad2188b574c68f804535182423c9c4fcc4b03df014dfe1090e3b18d75f9d43eb43d2ae4969
|
|
7
|
+
data.tar.gz: 9cf6bb91a177944ac35575c4ffb332a389c10ef892101dbd5e1682d056d2edf7da87a79aa378054f76865a3d5636b543e9d1ade9c0eccbc12f35695332000a18
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017 DivXZero
|
|
4
|
+
|
|
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:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
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
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Zoku
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/zoku`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'zoku'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install zoku
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
TODO: Write usage instructions here
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
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.
|
|
30
|
+
|
|
31
|
+
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).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/DivXZero/zoku.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
41
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "zoku"
|
|
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
data/bin/zoku
ADDED
data/lib/zoku.rb
ADDED
data/lib/zoku/cli.rb
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
require 'zoku/commands/new'
|
|
2
|
+
|
|
3
|
+
$thor_runner = nil
|
|
4
|
+
|
|
5
|
+
module Zoku
|
|
6
|
+
class Generator < Thor
|
|
7
|
+
|
|
8
|
+
# Prints the currently installed Zoku version
|
|
9
|
+
#
|
|
10
|
+
desc "version", "Print Zoku Version"
|
|
11
|
+
long_desc "Print out the currently installed Zoku gem version"
|
|
12
|
+
def version
|
|
13
|
+
puts "Zoku #{Zoku::VERSION}"
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
# Generates a new rails project and performs the opinionated setup steps
|
|
17
|
+
#
|
|
18
|
+
desc "new PROJECT", "Generate a new rails project"
|
|
19
|
+
long_desc <<-NEW_PROJECT
|
|
20
|
+
`new PROJECT` will generate a new opinionated rails project
|
|
21
|
+
NEW_PROJECT
|
|
22
|
+
option :build
|
|
23
|
+
option :run
|
|
24
|
+
def new(target_path)
|
|
25
|
+
Commands::New.new(target_path).init
|
|
26
|
+
if options[:build]
|
|
27
|
+
puts `docker-compose build`
|
|
28
|
+
puts `docker-compose run web bundle exec rake db:create db:migrate db:seed`
|
|
29
|
+
puts `docker-compose up` if options[:run]
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# Initializes a new or existing project
|
|
34
|
+
#
|
|
35
|
+
desc "init [PATH]", "Initialize a new project"
|
|
36
|
+
long_desc "meh"
|
|
37
|
+
def init(path)
|
|
38
|
+
puts path
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# Checks to see if the internet is still down
|
|
42
|
+
#
|
|
43
|
+
# @option packets [Integer] :packets packet count to test with
|
|
44
|
+
# @return [String] a string containing the current status
|
|
45
|
+
desc "check", "Check to see if the internet is still down"
|
|
46
|
+
long_desc "sigh"
|
|
47
|
+
option :packets
|
|
48
|
+
def check
|
|
49
|
+
puts 'Checking to see if you are online...'
|
|
50
|
+
count = options[:packets] ? options[:packets] : 2
|
|
51
|
+
result = (`ping 8.8.8.8 -c #{count} | grep transmitted`).to_s
|
|
52
|
+
if result.include?('100.0% packet loss')
|
|
53
|
+
puts 'womp womp'
|
|
54
|
+
else
|
|
55
|
+
puts 'hooray, it looks like you may be online!'
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
end
|
|
60
|
+
end
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
require 'zoku/common'
|
|
2
|
+
require 'zoku/util'
|
|
3
|
+
|
|
4
|
+
module Zoku
|
|
5
|
+
module Commands
|
|
6
|
+
class New < Common
|
|
7
|
+
def initialize(target_path = '')
|
|
8
|
+
super
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def init
|
|
12
|
+
create_project
|
|
13
|
+
customize_project
|
|
14
|
+
#{}`git init --quiet && git add -A && \
|
|
15
|
+
#git commit -m \"Project setup with Zoku :paw_prints:\" --quiet`
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
private
|
|
19
|
+
|
|
20
|
+
def create_project
|
|
21
|
+
FileUtils.mkdir @target_path
|
|
22
|
+
FileUtils.cd(@target_path)
|
|
23
|
+
FileUtils.copy_entry "#{base_path}/templates/base", '.'
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def customize_project
|
|
27
|
+
replacements = set_replacements
|
|
28
|
+
|
|
29
|
+
Dir.glob("./**/*", File::FNM_DOTMATCH) do |file|
|
|
30
|
+
next if file == '.' || file == '..' || File.directory?(file)
|
|
31
|
+
|
|
32
|
+
text = File.read(file)
|
|
33
|
+
|
|
34
|
+
replacements.each do |key, value|
|
|
35
|
+
text.gsub!(key.to_s, value)
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
File.open(file, 'w') { |f| f.puts text }
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def set_replacements
|
|
43
|
+
project_name = @target_path.to_s.dup
|
|
44
|
+
|
|
45
|
+
{
|
|
46
|
+
'zoku_base' => Util.underscore(project_name),
|
|
47
|
+
'ZokuBase' => Util.classify(project_name),
|
|
48
|
+
'VERSION' => VERSION
|
|
49
|
+
}
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
end
|
data/lib/zoku/common.rb
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
require 'thor'
|
|
2
|
+
|
|
3
|
+
module Zoku
|
|
4
|
+
class Common
|
|
5
|
+
include Thor::Base
|
|
6
|
+
include Thor::Shell
|
|
7
|
+
include Thor::Actions
|
|
8
|
+
|
|
9
|
+
def initialize(target_path = '')
|
|
10
|
+
@target_path = target_path
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def base_path
|
|
14
|
+
File.join(File.expand_path(File.dirname(__FILE__)))
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
2
|
+
#
|
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
|
5
|
+
# git config --global core.excludesfile '~/.gitignore_global'
|
|
6
|
+
|
|
7
|
+
# Ignore bundler config.
|
|
8
|
+
/.bundle
|
|
9
|
+
|
|
10
|
+
# Ignore all logfiles and tempfiles.
|
|
11
|
+
/log/*
|
|
12
|
+
/tmp/*
|
|
13
|
+
!/log/.keep
|
|
14
|
+
!/tmp/.keep
|
|
15
|
+
|
|
16
|
+
# Ignore Byebug command history file.
|
|
17
|
+
.byebug_history
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
FROM ruby:2.3.3
|
|
2
|
+
|
|
3
|
+
ENV APP_PATH /zoku_base
|
|
4
|
+
|
|
5
|
+
MAINTAINER Nicholaus Brabant <nicholaus.brabant@gmail.com>
|
|
6
|
+
|
|
7
|
+
RUN apt-get update -qq && apt-get install -y \
|
|
8
|
+
build-essential \
|
|
9
|
+
nodejs \
|
|
10
|
+
libpq-dev
|
|
11
|
+
|
|
12
|
+
RUN mkdir $APP_PATH
|
|
13
|
+
WORKDIR $APP_PATH
|
|
14
|
+
ADD . .
|
|
15
|
+
RUN bundle install
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
5
|
+
gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
|
|
6
|
+
# Use postgresql as the database for Active Record
|
|
7
|
+
gem 'pg', '~> 0.18'
|
|
8
|
+
# Use Puma as the app server
|
|
9
|
+
gem 'puma', '~> 3.0'
|
|
10
|
+
# Use SCSS for stylesheets
|
|
11
|
+
gem 'sass-rails', '~> 5.0'
|
|
12
|
+
# Use Uglifier as compressor for JavaScript assets
|
|
13
|
+
gem 'uglifier', '>= 1.3.0'
|
|
14
|
+
# Use CoffeeScript for .coffee assets and views
|
|
15
|
+
gem 'coffee-rails', '~> 4.2'
|
|
16
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
|
17
|
+
# gem 'therubyracer', platforms: :ruby
|
|
18
|
+
|
|
19
|
+
# Use jquery as the JavaScript library
|
|
20
|
+
gem 'jquery-rails'
|
|
21
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
|
22
|
+
gem 'turbolinks', '~> 5'
|
|
23
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
24
|
+
gem 'jbuilder', '~> 2.5'
|
|
25
|
+
# Use Redis adapter to run Action Cable in production
|
|
26
|
+
# gem 'redis', '~> 3.0'
|
|
27
|
+
# Use ActiveModel has_secure_password
|
|
28
|
+
# gem 'bcrypt', '~> 3.1.7'
|
|
29
|
+
|
|
30
|
+
# Use Capistrano for deployment
|
|
31
|
+
# gem 'capistrano-rails', group: :development
|
|
32
|
+
|
|
33
|
+
gem 'haml', '~> 4.0', '>= 4.0.7'
|
|
34
|
+
|
|
35
|
+
group :development, :test do
|
|
36
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
37
|
+
gem 'byebug', platform: :mri
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
group :development do
|
|
41
|
+
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
|
|
42
|
+
gem 'web-console'
|
|
43
|
+
gem 'listen', '~> 3.0.5'
|
|
44
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
45
|
+
gem 'spring'
|
|
46
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
50
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
GEM
|
|
2
|
+
remote: https://rubygems.org/
|
|
3
|
+
specs:
|
|
4
|
+
actioncable (5.0.1)
|
|
5
|
+
actionpack (= 5.0.1)
|
|
6
|
+
nio4r (~> 1.2)
|
|
7
|
+
websocket-driver (~> 0.6.1)
|
|
8
|
+
actionmailer (5.0.1)
|
|
9
|
+
actionpack (= 5.0.1)
|
|
10
|
+
actionview (= 5.0.1)
|
|
11
|
+
activejob (= 5.0.1)
|
|
12
|
+
mail (~> 2.5, >= 2.5.4)
|
|
13
|
+
rails-dom-testing (~> 2.0)
|
|
14
|
+
actionpack (5.0.1)
|
|
15
|
+
actionview (= 5.0.1)
|
|
16
|
+
activesupport (= 5.0.1)
|
|
17
|
+
rack (~> 2.0)
|
|
18
|
+
rack-test (~> 0.6.3)
|
|
19
|
+
rails-dom-testing (~> 2.0)
|
|
20
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
21
|
+
actionview (5.0.1)
|
|
22
|
+
activesupport (= 5.0.1)
|
|
23
|
+
builder (~> 3.1)
|
|
24
|
+
erubis (~> 2.7.0)
|
|
25
|
+
rails-dom-testing (~> 2.0)
|
|
26
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
27
|
+
activejob (5.0.1)
|
|
28
|
+
activesupport (= 5.0.1)
|
|
29
|
+
globalid (>= 0.3.6)
|
|
30
|
+
activemodel (5.0.1)
|
|
31
|
+
activesupport (= 5.0.1)
|
|
32
|
+
activerecord (5.0.1)
|
|
33
|
+
activemodel (= 5.0.1)
|
|
34
|
+
activesupport (= 5.0.1)
|
|
35
|
+
arel (~> 7.0)
|
|
36
|
+
activesupport (5.0.1)
|
|
37
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
38
|
+
i18n (~> 0.7)
|
|
39
|
+
minitest (~> 5.1)
|
|
40
|
+
tzinfo (~> 1.1)
|
|
41
|
+
arel (7.1.4)
|
|
42
|
+
builder (3.2.3)
|
|
43
|
+
byebug (9.0.6)
|
|
44
|
+
coffee-rails (4.2.1)
|
|
45
|
+
coffee-script (>= 2.2.0)
|
|
46
|
+
railties (>= 4.0.0, < 5.2.x)
|
|
47
|
+
coffee-script (2.4.1)
|
|
48
|
+
coffee-script-source
|
|
49
|
+
execjs
|
|
50
|
+
coffee-script-source (1.12.2)
|
|
51
|
+
concurrent-ruby (1.0.4)
|
|
52
|
+
debug_inspector (0.0.2)
|
|
53
|
+
erubis (2.7.0)
|
|
54
|
+
execjs (2.7.0)
|
|
55
|
+
ffi (1.9.17)
|
|
56
|
+
globalid (0.3.7)
|
|
57
|
+
activesupport (>= 4.1.0)
|
|
58
|
+
i18n (0.8.0)
|
|
59
|
+
jbuilder (2.6.1)
|
|
60
|
+
activesupport (>= 3.0.0, < 5.1)
|
|
61
|
+
multi_json (~> 1.2)
|
|
62
|
+
jquery-rails (4.2.2)
|
|
63
|
+
rails-dom-testing (>= 1, < 3)
|
|
64
|
+
railties (>= 4.2.0)
|
|
65
|
+
thor (>= 0.14, < 2.0)
|
|
66
|
+
listen (3.0.8)
|
|
67
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
68
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
69
|
+
loofah (2.0.3)
|
|
70
|
+
nokogiri (>= 1.5.9)
|
|
71
|
+
mail (2.6.4)
|
|
72
|
+
mime-types (>= 1.16, < 4)
|
|
73
|
+
method_source (0.8.2)
|
|
74
|
+
mime-types (3.1)
|
|
75
|
+
mime-types-data (~> 3.2015)
|
|
76
|
+
mime-types-data (3.2016.0521)
|
|
77
|
+
mini_portile2 (2.1.0)
|
|
78
|
+
minitest (5.10.1)
|
|
79
|
+
multi_json (1.12.1)
|
|
80
|
+
nio4r (1.2.1)
|
|
81
|
+
nokogiri (1.7.0.1)
|
|
82
|
+
mini_portile2 (~> 2.1.0)
|
|
83
|
+
pg (0.19.0)
|
|
84
|
+
puma (3.7.0)
|
|
85
|
+
rack (2.0.1)
|
|
86
|
+
rack-test (0.6.3)
|
|
87
|
+
rack (>= 1.0)
|
|
88
|
+
rails (5.0.1)
|
|
89
|
+
actioncable (= 5.0.1)
|
|
90
|
+
actionmailer (= 5.0.1)
|
|
91
|
+
actionpack (= 5.0.1)
|
|
92
|
+
actionview (= 5.0.1)
|
|
93
|
+
activejob (= 5.0.1)
|
|
94
|
+
activemodel (= 5.0.1)
|
|
95
|
+
activerecord (= 5.0.1)
|
|
96
|
+
activesupport (= 5.0.1)
|
|
97
|
+
bundler (>= 1.3.0, < 2.0)
|
|
98
|
+
railties (= 5.0.1)
|
|
99
|
+
sprockets-rails (>= 2.0.0)
|
|
100
|
+
rails-dom-testing (2.0.2)
|
|
101
|
+
activesupport (>= 4.2.0, < 6.0)
|
|
102
|
+
nokogiri (~> 1.6)
|
|
103
|
+
rails-html-sanitizer (1.0.3)
|
|
104
|
+
loofah (~> 2.0)
|
|
105
|
+
railties (5.0.1)
|
|
106
|
+
actionpack (= 5.0.1)
|
|
107
|
+
activesupport (= 5.0.1)
|
|
108
|
+
method_source
|
|
109
|
+
rake (>= 0.8.7)
|
|
110
|
+
thor (>= 0.18.1, < 2.0)
|
|
111
|
+
rake (12.0.0)
|
|
112
|
+
rb-fsevent (0.9.8)
|
|
113
|
+
rb-inotify (0.9.8)
|
|
114
|
+
ffi (>= 0.5.0)
|
|
115
|
+
sass (3.4.23)
|
|
116
|
+
sass-rails (5.0.6)
|
|
117
|
+
railties (>= 4.0.0, < 6)
|
|
118
|
+
sass (~> 3.1)
|
|
119
|
+
sprockets (>= 2.8, < 4.0)
|
|
120
|
+
sprockets-rails (>= 2.0, < 4.0)
|
|
121
|
+
tilt (>= 1.1, < 3)
|
|
122
|
+
spring (2.0.1)
|
|
123
|
+
activesupport (>= 4.2)
|
|
124
|
+
spring-watcher-listen (2.0.1)
|
|
125
|
+
listen (>= 2.7, < 4.0)
|
|
126
|
+
spring (>= 1.2, < 3.0)
|
|
127
|
+
sprockets (3.7.1)
|
|
128
|
+
concurrent-ruby (~> 1.0)
|
|
129
|
+
rack (> 1, < 3)
|
|
130
|
+
sprockets-rails (3.2.0)
|
|
131
|
+
actionpack (>= 4.0)
|
|
132
|
+
activesupport (>= 4.0)
|
|
133
|
+
sprockets (>= 3.0.0)
|
|
134
|
+
thor (0.19.4)
|
|
135
|
+
thread_safe (0.3.5)
|
|
136
|
+
tilt (2.0.6)
|
|
137
|
+
turbolinks (5.0.1)
|
|
138
|
+
turbolinks-source (~> 5)
|
|
139
|
+
turbolinks-source (5.0.0)
|
|
140
|
+
tzinfo (1.2.2)
|
|
141
|
+
thread_safe (~> 0.1)
|
|
142
|
+
uglifier (3.0.4)
|
|
143
|
+
execjs (>= 0.3.0, < 3)
|
|
144
|
+
web-console (3.4.0)
|
|
145
|
+
actionview (>= 5.0)
|
|
146
|
+
activemodel (>= 5.0)
|
|
147
|
+
debug_inspector
|
|
148
|
+
railties (>= 5.0)
|
|
149
|
+
websocket-driver (0.6.5)
|
|
150
|
+
websocket-extensions (>= 0.1.0)
|
|
151
|
+
websocket-extensions (0.1.2)
|
|
152
|
+
|
|
153
|
+
PLATFORMS
|
|
154
|
+
ruby
|
|
155
|
+
|
|
156
|
+
DEPENDENCIES
|
|
157
|
+
byebug
|
|
158
|
+
coffee-rails (~> 4.2)
|
|
159
|
+
jbuilder (~> 2.5)
|
|
160
|
+
jquery-rails
|
|
161
|
+
listen (~> 3.0.5)
|
|
162
|
+
pg (~> 0.18)
|
|
163
|
+
puma (~> 3.0)
|
|
164
|
+
rails (~> 5.0.0, >= 5.0.0.1)
|
|
165
|
+
sass-rails (~> 5.0)
|
|
166
|
+
spring
|
|
167
|
+
spring-watcher-listen (~> 2.0.0)
|
|
168
|
+
turbolinks (~> 5)
|
|
169
|
+
tzinfo-data
|
|
170
|
+
uglifier (>= 1.3.0)
|
|
171
|
+
web-console
|
|
172
|
+
|
|
173
|
+
BUNDLED WITH
|
|
174
|
+
1.14.3
|