tabulator-rails 0.1.0 → 0.1.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.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +3 -0
  3. data/README.md +6 -7
  4. data/VERSIONS.md +2 -0
  5. data/lib/tabulator-rails/version.rb +1 -1
  6. data/tabulator-rails.gemspec +0 -1
  7. metadata +2 -107
  8. data/bin/console +0 -14
  9. data/bin/setup +0 -8
  10. data/test-app/.gitignore +0 -23
  11. data/test-app/Gemfile +0 -59
  12. data/test-app/Gemfile.lock +0 -210
  13. data/test-app/README.md +0 -24
  14. data/test-app/Rakefile +0 -6
  15. data/test-app/app/assets/config/manifest.js +0 -3
  16. data/test-app/app/assets/images/.keep +0 -0
  17. data/test-app/app/assets/javascripts/application.js +0 -17
  18. data/test-app/app/assets/javascripts/cable.js +0 -13
  19. data/test-app/app/assets/javascripts/channels/.keep +0 -0
  20. data/test-app/app/assets/javascripts/posts.js +0 -28
  21. data/test-app/app/assets/stylesheets/application.css +0 -16
  22. data/test-app/app/assets/stylesheets/posts.scss +0 -3
  23. data/test-app/app/assets/stylesheets/scaffolds.scss +0 -84
  24. data/test-app/app/channels/application_cable/channel.rb +0 -4
  25. data/test-app/app/channels/application_cable/connection.rb +0 -4
  26. data/test-app/app/controllers/application_controller.rb +0 -3
  27. data/test-app/app/controllers/concerns/.keep +0 -0
  28. data/test-app/app/controllers/posts_controller.rb +0 -3
  29. data/test-app/app/helpers/application_helper.rb +0 -2
  30. data/test-app/app/helpers/posts_helper.rb +0 -2
  31. data/test-app/app/jobs/application_job.rb +0 -2
  32. data/test-app/app/mailers/application_mailer.rb +0 -4
  33. data/test-app/app/models/application_record.rb +0 -3
  34. data/test-app/app/models/concerns/.keep +0 -0
  35. data/test-app/app/models/post.rb +0 -2
  36. data/test-app/app/views/layouts/application.html.erb +0 -14
  37. data/test-app/app/views/layouts/mailer.html.erb +0 -13
  38. data/test-app/app/views/layouts/mailer.text.erb +0 -1
  39. data/test-app/app/views/posts/index.html.erb +0 -3
  40. data/test-app/bin/bundle +0 -3
  41. data/test-app/bin/rails +0 -9
  42. data/test-app/bin/rake +0 -9
  43. data/test-app/bin/setup +0 -38
  44. data/test-app/bin/spring +0 -17
  45. data/test-app/bin/update +0 -29
  46. data/test-app/bin/yarn +0 -11
  47. data/test-app/config.ru +0 -5
  48. data/test-app/config/application.rb +0 -18
  49. data/test-app/config/boot.rb +0 -3
  50. data/test-app/config/cable.yml +0 -10
  51. data/test-app/config/database.yml +0 -25
  52. data/test-app/config/environment.rb +0 -5
  53. data/test-app/config/environments/development.rb +0 -54
  54. data/test-app/config/environments/production.rb +0 -91
  55. data/test-app/config/environments/test.rb +0 -42
  56. data/test-app/config/initializers/application_controller_renderer.rb +0 -8
  57. data/test-app/config/initializers/assets.rb +0 -14
  58. data/test-app/config/initializers/backtrace_silencers.rb +0 -7
  59. data/test-app/config/initializers/cookies_serializer.rb +0 -5
  60. data/test-app/config/initializers/filter_parameter_logging.rb +0 -4
  61. data/test-app/config/initializers/inflections.rb +0 -16
  62. data/test-app/config/initializers/mime_types.rb +0 -4
  63. data/test-app/config/initializers/wrap_parameters.rb +0 -14
  64. data/test-app/config/locales/en.yml +0 -33
  65. data/test-app/config/puma.rb +0 -56
  66. data/test-app/config/routes.rb +0 -6
  67. data/test-app/config/secrets.yml +0 -32
  68. data/test-app/config/spring.rb +0 -6
  69. data/test-app/db/migrate/20180109155755_create_posts.rb +0 -8
  70. data/test-app/db/schema.rb +0 -20
  71. data/test-app/db/seeds.rb +0 -7
  72. data/test-app/lib/assets/.keep +0 -0
  73. data/test-app/lib/tasks/.keep +0 -0
  74. data/test-app/log/.keep +0 -0
  75. data/test-app/package.json +0 -5
  76. data/test-app/public/404.html +0 -67
  77. data/test-app/public/422.html +0 -67
  78. data/test-app/public/500.html +0 -66
  79. data/test-app/public/apple-touch-icon-precomposed.png +0 -0
  80. data/test-app/public/apple-touch-icon.png +0 -0
  81. data/test-app/public/favicon.ico +0 -0
  82. data/test-app/public/robots.txt +0 -1
  83. data/test-app/test/application_system_test_case.rb +0 -5
  84. data/test-app/test/controllers/.keep +0 -0
  85. data/test-app/test/controllers/posts_controller_test.rb +0 -48
  86. data/test-app/test/fixtures/.keep +0 -0
  87. data/test-app/test/fixtures/files/.keep +0 -0
  88. data/test-app/test/fixtures/posts.yml +0 -11
  89. data/test-app/test/helpers/.keep +0 -0
  90. data/test-app/test/integration/.keep +0 -0
  91. data/test-app/test/mailers/.keep +0 -0
  92. data/test-app/test/models/.keep +0 -0
  93. data/test-app/test/models/post_test.rb +0 -7
  94. data/test-app/test/system/.keep +0 -0
  95. data/test-app/test/system/posts_test.rb +0 -9
  96. data/test-app/test/test_helper.rb +0 -9
  97. data/test-app/tmp/.keep +0 -0
  98. data/test-app/vendor/.keep +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91fb197b269fcdccc70691e083da23222c3c1653
4
- data.tar.gz: 92bc567779e3ac66dc0861136165c73152b7499f
3
+ metadata.gz: 0ce02d77017861dca0b48e89de5f680788e3160d
4
+ data.tar.gz: 921d059fa75bdfb5808f9ade0f369d23a1669d7f
5
5
  SHA512:
6
- metadata.gz: eca03332812e125cbb503aec1786936ad99576ab2507c72d412f3b59bc1dacd941694fd7480a085fcd3535b8247d6256a7d4c84e018b73434abb6e1a1a82187b
7
- data.tar.gz: b0325f90092a669935e1862bb20f2be6a05a7e8e4d92fc45a0ccdbb94cdbb792806937e1b43718c170b0d016db1b82bc7cd04b74b634575a1f0b75477d78ee17
6
+ metadata.gz: 498b690ed246ed07a1047542d8e4a7cab7f6f604dd2b59bc471acffd909ccb14ae49e7159c2de7971c44ed16c89fe46c633dd630c2c005b7b06a185ea94fe964
7
+ data.tar.gz: 771a02f54efe79a16bb81b1d1f32821e8f544903c0f085f17673c725dd416f1ef685fcf13170182de1087d39cb9d9bcaec43f5df618a2e179e15f24d247a64ae
data/CHANGELOG.md CHANGED
@@ -1,2 +1,5 @@
1
+ # 0.1.1
2
+ * remove unnecessary files
3
+ * remove unnecessary development dependancy
1
4
  # 0.1.0
2
5
  * initial release
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Tabulator::Rails
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/tabulators-rails.svg)](https://rubygems.org/gems/tabulator-rails)
3
+ [![Gem Version](https://badge.fury.io/rb/tabulator-rails.svg)](https://rubygems.org/gems/tabulator-rails)
4
4
  [![Downloads](https://img.shields.io/gem/dt/tabulator-rails.svg)](https://rubygems.org/gems/tabulator-rails)
5
5
  [![GitHub last commit (branch)](https://img.shields.io/github/last-commit/tanvir002700/tabulator-rails/master.svg)](https://github.com/tanvir002700/tabulator-rails)
6
6
  [![license](https://img.shields.io/github/license/tanvir002700/tabulator-rails.svg)](https://github.com/tanvir002700/tabulator-rails/blob/master/LICENSE)
@@ -39,16 +39,15 @@ And then edit your app/assets/stylesheets/application.css file to look something
39
39
 
40
40
  tabulator-rails is dependant on jQuery, jQuery-UI, so make sure you have it in your Gemfile.
41
41
 
42
+ And to your app/assets/stylesheets/application.css
43
+ ``` css
44
+ *= require tabulator-rails
45
+ ```
42
46
 
43
47
  ## Usage
44
48
 
45
- View [Tabulator](http://tabulator.info/quickstart/3.3) for complete useage information.
46
-
47
- ## Development
48
-
49
- 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.
49
+ View [Tabulator](http://tabulator.info/examples/3.3) for complete useage information.
50
50
 
51
- 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).
52
51
 
53
52
  ## Contributing
54
53
 
data/VERSIONS.md CHANGED
@@ -3,3 +3,5 @@
3
3
  | Gem | Tabulator |
4
4
  |--------|-----------|
5
5
  | 0.1.0 | 3.3.3
6
+ | 0.1.1 | 3.3.3
7
+
@@ -1,5 +1,5 @@
1
1
  module Tabulator
2
2
  module Rails
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
@@ -33,6 +33,5 @@ Gem::Specification.new do |spec|
33
33
 
34
34
  spec.add_development_dependency "bundler", "~> 1.16"
35
35
  spec.add_development_dependency "rake", "~> 10.0"
36
- spec.add_development_dependency "rspec", "~> 3.0"
37
36
  end
38
37
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tabulator-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - tanvir hasan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-01-09 00:00:00.000000000 Z
11
+ date: 2018-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,20 +38,6 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
- - !ruby/object:Gem::Dependency
42
- name: rspec
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '3.0'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '3.0'
55
41
  description: This gem packages the jQuery Tabulator plugin. So you never have to download
56
42
  a custom package through the web interface again.
57
43
  email:
@@ -69,101 +55,10 @@ files:
69
55
  - README.md
70
56
  - Rakefile
71
57
  - VERSIONS.md
72
- - bin/console
73
- - bin/setup
74
58
  - lib/tabulator-rails.rb
75
59
  - lib/tabulator-rails/engine.rb
76
60
  - lib/tabulator-rails/version.rb
77
61
  - tabulator-rails.gemspec
78
- - test-app/.gitignore
79
- - test-app/Gemfile
80
- - test-app/Gemfile.lock
81
- - test-app/README.md
82
- - test-app/Rakefile
83
- - test-app/app/assets/config/manifest.js
84
- - test-app/app/assets/images/.keep
85
- - test-app/app/assets/javascripts/application.js
86
- - test-app/app/assets/javascripts/cable.js
87
- - test-app/app/assets/javascripts/channels/.keep
88
- - test-app/app/assets/javascripts/posts.js
89
- - test-app/app/assets/stylesheets/application.css
90
- - test-app/app/assets/stylesheets/posts.scss
91
- - test-app/app/assets/stylesheets/scaffolds.scss
92
- - test-app/app/channels/application_cable/channel.rb
93
- - test-app/app/channels/application_cable/connection.rb
94
- - test-app/app/controllers/application_controller.rb
95
- - test-app/app/controllers/concerns/.keep
96
- - test-app/app/controllers/posts_controller.rb
97
- - test-app/app/helpers/application_helper.rb
98
- - test-app/app/helpers/posts_helper.rb
99
- - test-app/app/jobs/application_job.rb
100
- - test-app/app/mailers/application_mailer.rb
101
- - test-app/app/models/application_record.rb
102
- - test-app/app/models/concerns/.keep
103
- - test-app/app/models/post.rb
104
- - test-app/app/views/layouts/application.html.erb
105
- - test-app/app/views/layouts/mailer.html.erb
106
- - test-app/app/views/layouts/mailer.text.erb
107
- - test-app/app/views/posts/index.html.erb
108
- - test-app/bin/bundle
109
- - test-app/bin/rails
110
- - test-app/bin/rake
111
- - test-app/bin/setup
112
- - test-app/bin/spring
113
- - test-app/bin/update
114
- - test-app/bin/yarn
115
- - test-app/config.ru
116
- - test-app/config/application.rb
117
- - test-app/config/boot.rb
118
- - test-app/config/cable.yml
119
- - test-app/config/database.yml
120
- - test-app/config/environment.rb
121
- - test-app/config/environments/development.rb
122
- - test-app/config/environments/production.rb
123
- - test-app/config/environments/test.rb
124
- - test-app/config/initializers/application_controller_renderer.rb
125
- - test-app/config/initializers/assets.rb
126
- - test-app/config/initializers/backtrace_silencers.rb
127
- - test-app/config/initializers/cookies_serializer.rb
128
- - test-app/config/initializers/filter_parameter_logging.rb
129
- - test-app/config/initializers/inflections.rb
130
- - test-app/config/initializers/mime_types.rb
131
- - test-app/config/initializers/wrap_parameters.rb
132
- - test-app/config/locales/en.yml
133
- - test-app/config/puma.rb
134
- - test-app/config/routes.rb
135
- - test-app/config/secrets.yml
136
- - test-app/config/spring.rb
137
- - test-app/db/migrate/20180109155755_create_posts.rb
138
- - test-app/db/schema.rb
139
- - test-app/db/seeds.rb
140
- - test-app/lib/assets/.keep
141
- - test-app/lib/tasks/.keep
142
- - test-app/log/.keep
143
- - test-app/package.json
144
- - test-app/public/404.html
145
- - test-app/public/422.html
146
- - test-app/public/500.html
147
- - test-app/public/apple-touch-icon-precomposed.png
148
- - test-app/public/apple-touch-icon.png
149
- - test-app/public/favicon.ico
150
- - test-app/public/robots.txt
151
- - test-app/test/application_system_test_case.rb
152
- - test-app/test/controllers/.keep
153
- - test-app/test/controllers/posts_controller_test.rb
154
- - test-app/test/fixtures/.keep
155
- - test-app/test/fixtures/files/.keep
156
- - test-app/test/fixtures/posts.yml
157
- - test-app/test/helpers/.keep
158
- - test-app/test/integration/.keep
159
- - test-app/test/mailers/.keep
160
- - test-app/test/models/.keep
161
- - test-app/test/models/post_test.rb
162
- - test-app/test/system/.keep
163
- - test-app/test/system/posts_test.rb
164
- - test-app/test/test_helper.rb
165
- - test-app/tmp/.keep
166
- - test-app/vendor/.keep
167
62
  - vendor/assets/javascripts/tabulator.js
168
63
  - vendor/assets/stylesheets/tabulator.css
169
64
  homepage: https://rubygems.org/gems/tabulator-rails
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "tabulator/rails"
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 DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
data/test-app/.gitignore DELETED
@@ -1,23 +0,0 @@
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 the default SQLite database.
11
- /db/*.sqlite3
12
- /db/*.sqlite3-journal
13
-
14
- # Ignore all logfiles and tempfiles.
15
- /log/*
16
- /tmp/*
17
- !/log/.keep
18
- !/tmp/.keep
19
-
20
- /node_modules
21
- /yarn-error.log
22
-
23
- .byebug_history
data/test-app/Gemfile DELETED
@@ -1,59 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- git_source(:github) do |repo_name|
4
- repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
5
- "https://github.com/#{repo_name}.git"
6
- end
7
-
8
-
9
- # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
10
- gem 'rails', '~> 5.1.4'
11
- # Use sqlite3 as the database for Active Record
12
- gem 'sqlite3'
13
- # Use Puma as the app server
14
- gem 'puma', '~> 3.7'
15
- # Use SCSS for stylesheets
16
- gem 'sass-rails', '~> 5.0'
17
- # Use Uglifier as compressor for JavaScript assets
18
- gem 'uglifier', '>= 1.3.0'
19
- # See https://github.com/rails/execjs#readme for more supported runtimes
20
- # gem 'therubyracer', platforms: :ruby
21
-
22
- # Use CoffeeScript for .coffee assets and views
23
- gem 'coffee-rails', '~> 4.2'
24
- # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
25
- gem 'turbolinks', '~> 5'
26
- # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
27
- gem 'jbuilder', '~> 2.5'
28
- gem 'jquery-rails'
29
- gem 'jquery-ui-rails'
30
- gem 'tabulator-rails', :path => '..'
31
-
32
- #
33
- # Use Redis adapter to run Action Cable in production
34
- # gem 'redis', '~> 3.0'
35
- # Use ActiveModel has_secure_password
36
- # gem 'bcrypt', '~> 3.1.7'
37
-
38
- # Use Capistrano for deployment
39
- # gem 'capistrano-rails', group: :development
40
-
41
- group :development, :test do
42
- # Call 'byebug' anywhere in the code to stop execution and get a debugger console
43
- gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
44
- # Adds support for Capybara system testing and selenium driver
45
- gem 'capybara', '~> 2.13'
46
- gem 'selenium-webdriver'
47
- end
48
-
49
- group :development do
50
- # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
51
- gem 'web-console', '>= 3.3.0'
52
- gem 'listen', '>= 3.0.5', '< 3.2'
53
- # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
54
- gem 'spring'
55
- gem 'spring-watcher-listen', '~> 2.0.0'
56
- end
57
-
58
- # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
59
- gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
@@ -1,210 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- tabulator-rails (0.1.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actioncable (5.1.4)
10
- actionpack (= 5.1.4)
11
- nio4r (~> 2.0)
12
- websocket-driver (~> 0.6.1)
13
- actionmailer (5.1.4)
14
- actionpack (= 5.1.4)
15
- actionview (= 5.1.4)
16
- activejob (= 5.1.4)
17
- mail (~> 2.5, >= 2.5.4)
18
- rails-dom-testing (~> 2.0)
19
- actionpack (5.1.4)
20
- actionview (= 5.1.4)
21
- activesupport (= 5.1.4)
22
- rack (~> 2.0)
23
- rack-test (>= 0.6.3)
24
- rails-dom-testing (~> 2.0)
25
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
26
- actionview (5.1.4)
27
- activesupport (= 5.1.4)
28
- builder (~> 3.1)
29
- erubi (~> 1.4)
30
- rails-dom-testing (~> 2.0)
31
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
32
- activejob (5.1.4)
33
- activesupport (= 5.1.4)
34
- globalid (>= 0.3.6)
35
- activemodel (5.1.4)
36
- activesupport (= 5.1.4)
37
- activerecord (5.1.4)
38
- activemodel (= 5.1.4)
39
- activesupport (= 5.1.4)
40
- arel (~> 8.0)
41
- activesupport (5.1.4)
42
- concurrent-ruby (~> 1.0, >= 1.0.2)
43
- i18n (~> 0.7)
44
- minitest (~> 5.1)
45
- tzinfo (~> 1.1)
46
- addressable (2.5.2)
47
- public_suffix (>= 2.0.2, < 4.0)
48
- arel (8.0.0)
49
- bindex (0.5.0)
50
- builder (3.2.3)
51
- byebug (9.1.0)
52
- capybara (2.17.0)
53
- addressable
54
- mini_mime (>= 0.1.3)
55
- nokogiri (>= 1.3.3)
56
- rack (>= 1.0.0)
57
- rack-test (>= 0.5.4)
58
- xpath (>= 2.0, < 4.0)
59
- childprocess (0.8.0)
60
- ffi (~> 1.0, >= 1.0.11)
61
- coffee-rails (4.2.2)
62
- coffee-script (>= 2.2.0)
63
- railties (>= 4.0.0)
64
- coffee-script (2.4.1)
65
- coffee-script-source
66
- execjs
67
- coffee-script-source (1.12.2)
68
- concurrent-ruby (1.0.5)
69
- crass (1.0.3)
70
- erubi (1.7.0)
71
- execjs (2.7.0)
72
- ffi (1.9.18)
73
- globalid (0.4.1)
74
- activesupport (>= 4.2.0)
75
- i18n (0.9.1)
76
- concurrent-ruby (~> 1.0)
77
- jbuilder (2.7.0)
78
- activesupport (>= 4.2.0)
79
- multi_json (>= 1.2)
80
- jquery-rails (4.3.1)
81
- rails-dom-testing (>= 1, < 3)
82
- railties (>= 4.2.0)
83
- thor (>= 0.14, < 2.0)
84
- jquery-ui-rails (6.0.1)
85
- railties (>= 3.2.16)
86
- listen (3.1.5)
87
- rb-fsevent (~> 0.9, >= 0.9.4)
88
- rb-inotify (~> 0.9, >= 0.9.7)
89
- ruby_dep (~> 1.2)
90
- loofah (2.1.1)
91
- crass (~> 1.0.2)
92
- nokogiri (>= 1.5.9)
93
- mail (2.7.0)
94
- mini_mime (>= 0.1.1)
95
- method_source (0.9.0)
96
- mini_mime (1.0.0)
97
- mini_portile2 (2.3.0)
98
- minitest (5.11.1)
99
- multi_json (1.13.0)
100
- nio4r (2.2.0)
101
- nokogiri (1.8.1)
102
- mini_portile2 (~> 2.3.0)
103
- public_suffix (3.0.1)
104
- puma (3.11.0)
105
- rack (2.0.3)
106
- rack-test (0.8.2)
107
- rack (>= 1.0, < 3)
108
- rails (5.1.4)
109
- actioncable (= 5.1.4)
110
- actionmailer (= 5.1.4)
111
- actionpack (= 5.1.4)
112
- actionview (= 5.1.4)
113
- activejob (= 5.1.4)
114
- activemodel (= 5.1.4)
115
- activerecord (= 5.1.4)
116
- activesupport (= 5.1.4)
117
- bundler (>= 1.3.0)
118
- railties (= 5.1.4)
119
- sprockets-rails (>= 2.0.0)
120
- rails-dom-testing (2.0.3)
121
- activesupport (>= 4.2.0)
122
- nokogiri (>= 1.6)
123
- rails-html-sanitizer (1.0.3)
124
- loofah (~> 2.0)
125
- railties (5.1.4)
126
- actionpack (= 5.1.4)
127
- activesupport (= 5.1.4)
128
- method_source
129
- rake (>= 0.8.7)
130
- thor (>= 0.18.1, < 2.0)
131
- rake (12.3.0)
132
- rb-fsevent (0.10.2)
133
- rb-inotify (0.9.10)
134
- ffi (>= 0.5.0, < 2)
135
- ruby_dep (1.5.0)
136
- rubyzip (1.2.1)
137
- sass (3.5.5)
138
- sass-listen (~> 4.0.0)
139
- sass-listen (4.0.0)
140
- rb-fsevent (~> 0.9, >= 0.9.4)
141
- rb-inotify (~> 0.9, >= 0.9.7)
142
- sass-rails (5.0.7)
143
- railties (>= 4.0.0, < 6)
144
- sass (~> 3.1)
145
- sprockets (>= 2.8, < 4.0)
146
- sprockets-rails (>= 2.0, < 4.0)
147
- tilt (>= 1.1, < 3)
148
- selenium-webdriver (3.8.0)
149
- childprocess (~> 0.5)
150
- rubyzip (~> 1.0)
151
- spring (2.0.2)
152
- activesupport (>= 4.2)
153
- spring-watcher-listen (2.0.1)
154
- listen (>= 2.7, < 4.0)
155
- spring (>= 1.2, < 3.0)
156
- sprockets (3.7.1)
157
- concurrent-ruby (~> 1.0)
158
- rack (> 1, < 3)
159
- sprockets-rails (3.2.1)
160
- actionpack (>= 4.0)
161
- activesupport (>= 4.0)
162
- sprockets (>= 3.0.0)
163
- sqlite3 (1.3.13)
164
- thor (0.20.0)
165
- thread_safe (0.3.6)
166
- tilt (2.0.8)
167
- turbolinks (5.1.0)
168
- turbolinks-source (~> 5.1)
169
- turbolinks-source (5.1.0)
170
- tzinfo (1.2.4)
171
- thread_safe (~> 0.1)
172
- uglifier (4.1.3)
173
- execjs (>= 0.3.0, < 3)
174
- web-console (3.5.1)
175
- actionview (>= 5.0)
176
- activemodel (>= 5.0)
177
- bindex (>= 0.4.0)
178
- railties (>= 5.0)
179
- websocket-driver (0.6.5)
180
- websocket-extensions (>= 0.1.0)
181
- websocket-extensions (0.1.3)
182
- xpath (3.0.0)
183
- nokogiri (~> 1.8)
184
-
185
- PLATFORMS
186
- ruby
187
-
188
- DEPENDENCIES
189
- byebug
190
- capybara (~> 2.13)
191
- coffee-rails (~> 4.2)
192
- jbuilder (~> 2.5)
193
- jquery-rails
194
- jquery-ui-rails
195
- listen (>= 3.0.5, < 3.2)
196
- puma (~> 3.7)
197
- rails (~> 5.1.4)
198
- sass-rails (~> 5.0)
199
- selenium-webdriver
200
- spring
201
- spring-watcher-listen (~> 2.0.0)
202
- sqlite3
203
- tabulator-rails!
204
- turbolinks (~> 5)
205
- tzinfo-data
206
- uglifier (>= 1.3.0)
207
- web-console (>= 3.3.0)
208
-
209
- BUNDLED WITH
210
- 1.16.0