torba-rails 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/.ruby-version +1 -0
  4. data/.travis.yml +24 -2
  5. data/CHANGELOG.md +7 -0
  6. data/CONTRIBUTING.md +7 -1
  7. data/README.md +1 -1
  8. data/Rakefile +9 -17
  9. data/lib/torba/rails.rb +7 -3
  10. data/test/3.2/Gemfile +2 -1
  11. data/test/3.2/Torbafile +1 -0
  12. data/test/3.2/app/assets/javascripts/application.js +1 -0
  13. data/test/3.2/app/assets/stylesheets/application.scss +1 -0
  14. data/test/3.2/bin/rails +1 -0
  15. data/test/4.1/Gemfile +2 -1
  16. data/test/4.1/Torbafile +1 -0
  17. data/test/4.1/app/assets/javascripts/application.js +1 -0
  18. data/test/4.1/app/assets/stylesheets/application.scss +1 -0
  19. data/test/4.2/Gemfile +2 -1
  20. data/test/4.2/Torbafile +1 -0
  21. data/test/4.2/app/assets/javascripts/application.js +1 -0
  22. data/test/4.2/app/assets/stylesheets/application.scss +1 -0
  23. data/test/5.0/Gemfile +2 -1
  24. data/test/5.0/Torbafile +1 -0
  25. data/test/5.0/app/assets/javascripts/application.js +1 -0
  26. data/test/5.0/app/assets/stylesheets/application.scss +1 -0
  27. data/test/5.1/.gitignore +14 -0
  28. data/test/5.1/Gemfile +11 -0
  29. data/test/5.1/Rakefile +6 -0
  30. data/test/5.1/Torbafile +1 -0
  31. data/test/5.1/app/assets/config/manifest.js +3 -0
  32. data/test/5.1/app/assets/javascripts/application.js +1 -0
  33. data/test/5.1/app/assets/stylesheets/application.scss +1 -0
  34. data/test/5.1/app/controllers/application_controller.rb +3 -0
  35. data/test/5.1/app/helpers/application_helper.rb +2 -0
  36. data/test/5.1/app/views/layouts/application.html.erb +14 -0
  37. data/test/5.1/bin/rails +4 -0
  38. data/test/5.1/config.ru +5 -0
  39. data/test/5.1/config/application.rb +23 -0
  40. data/test/5.1/config/boot.rb +3 -0
  41. data/test/5.1/config/environment.rb +5 -0
  42. data/test/5.1/config/environments/development.rb +46 -0
  43. data/test/5.1/config/environments/production.rb +79 -0
  44. data/test/5.1/config/environments/test.rb +36 -0
  45. data/test/5.1/config/initializers/application_controller_renderer.rb +8 -0
  46. data/test/5.1/config/initializers/assets.rb +12 -0
  47. data/test/5.1/config/initializers/backtrace_silencers.rb +7 -0
  48. data/test/5.1/config/initializers/cookies_serializer.rb +5 -0
  49. data/test/5.1/config/initializers/filter_parameter_logging.rb +4 -0
  50. data/test/5.1/config/initializers/inflections.rb +16 -0
  51. data/test/5.1/config/initializers/mime_types.rb +4 -0
  52. data/test/5.1/config/initializers/wrap_parameters.rb +9 -0
  53. data/test/5.1/config/locales/en.yml +33 -0
  54. data/test/5.1/config/routes.rb +3 -0
  55. data/test/5.1/config/secrets.yml +32 -0
  56. data/test/acceptance_test.rb +6 -1
  57. data/test/compiled_assets/3.2/{application-406b208e73b83fe37135274c5157c8e3.css → application-%2A.css} +0 -0
  58. data/test/compiled_assets/3.2/application-%2A.js +1 -0
  59. data/test/compiled_assets/3.2/trumbowyg/{icons-0b2826fbd974348c269c2b8017a14314.png → icons-%3F%3F%5B%5E-%5D%2A.png} +0 -0
  60. data/test/compiled_assets/3.2/trumbowyg/{icons-2x-cc69d8bc62651602e75c2f7097cf5187.png → icons-2x-%2A.png} +0 -0
  61. data/test/compiled_assets/4.1/{application-b93806e6555eb26989308c4d06311423.css → application-%2A.css} +0 -0
  62. data/test/compiled_assets/4.1/application-%2A.js +1 -0
  63. data/test/compiled_assets/4.1/trumbowyg/{icons-60fe5a8fdf8b247fe07ca2454df66f80.png → icons-%3F%3F%5B%5E-%5D%2A.png} +0 -0
  64. data/test/compiled_assets/4.1/trumbowyg/{icons-2x-0977e4f2195ed320a8dcc57e194af523.png → icons-2x-%2A.png} +0 -0
  65. data/test/compiled_assets/4.2+/{application-7cdb22c682ee9bf44774492034be6952becd2c75184c101017152af1476b12a8.css → application-%2A.css} +0 -0
  66. data/test/compiled_assets/4.2+/application-%2A.js +1 -0
  67. data/test/compiled_assets/4.2+/trumbowyg/{icons-efc940454e4e764063875def5c909a2f9c8b2c4d2a41c6a98dc41fb111868f1f.png → icons-%3F%3F%5B%5E-%5D%2A.png} +0 -0
  68. data/test/compiled_assets/4.2+/trumbowyg/{icons-2x-39fe92cd396082eb94f0c92103537209ba97ffa3079377bbe55fea857abe5341.png → icons-2x-%2A.png} +0 -0
  69. data/test/environment.rb +6 -0
  70. data/test/rake_injector/lib/rake_injector.rb +6 -0
  71. data/test/rake_injector/rake_injector.gemspec +13 -0
  72. data/test/test_helper.rb +1 -0
  73. data/torba-rails.gemspec +2 -2
  74. metadata +94 -38
  75. data/test/3.2/Gemfile.lock +0 -116
  76. data/test/3.2/Torbafile +0 -8
  77. data/test/3.2/app/assets/javascripts/application.js +0 -2
  78. data/test/3.2/app/assets/stylesheets/application.scss +0 -6
  79. data/test/3.2/bin/rails +0 -6
  80. data/test/4.1/Gemfile.lock +0 -113
  81. data/test/4.1/Torbafile +0 -8
  82. data/test/4.1/app/assets/javascripts/application.js +0 -2
  83. data/test/4.1/app/assets/stylesheets/application.scss +0 -6
  84. data/test/4.2/Gemfile.lock +0 -128
  85. data/test/4.2/Torbafile +0 -8
  86. data/test/4.2/app/assets/javascripts/application.js +0 -2
  87. data/test/4.2/app/assets/stylesheets/application.scss +0 -6
  88. data/test/5.0/Gemfile.lock +0 -138
  89. data/test/5.0/Torbafile +0 -8
  90. data/test/5.0/app/assets/javascripts/application.js +0 -2
  91. data/test/5.0/app/assets/stylesheets/application.scss +0 -6
  92. data/test/compiled_assets/3.2/application-32cc93d3c658f24842cdb4028d7f6a6a.js +0 -1
  93. data/test/compiled_assets/4.1/application-959396ba4d98dd11cf6ac10b43f7fa97.js +0 -1
  94. data/test/compiled_assets/4.2+/application-c7e50f0b91ececdd620e1c86789b65677d9bbe0f35ab4717a9a522e6c89a56f9.js +0 -1
@@ -1,116 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- torba-rails (1.0.0)
5
- railties (>= 3.2)
6
- torba (~> 1.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (3.2.22.2)
12
- actionpack (= 3.2.22.2)
13
- mail (~> 2.5.4)
14
- actionpack (3.2.22.2)
15
- activemodel (= 3.2.22.2)
16
- activesupport (= 3.2.22.2)
17
- builder (~> 3.0.0)
18
- erubis (~> 2.7.0)
19
- journey (~> 1.0.4)
20
- rack (~> 1.4.5)
21
- rack-cache (~> 1.2)
22
- rack-test (~> 0.6.1)
23
- sprockets (~> 2.2.1)
24
- activemodel (3.2.22.2)
25
- activesupport (= 3.2.22.2)
26
- builder (~> 3.0.0)
27
- activerecord (3.2.22.2)
28
- activemodel (= 3.2.22.2)
29
- activesupport (= 3.2.22.2)
30
- arel (~> 3.0.2)
31
- tzinfo (~> 0.3.29)
32
- activeresource (3.2.22.2)
33
- activemodel (= 3.2.22.2)
34
- activesupport (= 3.2.22.2)
35
- activesupport (3.2.22.2)
36
- i18n (~> 0.6, >= 0.6.4)
37
- multi_json (~> 1.0)
38
- arel (3.0.3)
39
- builder (3.0.4)
40
- coffee-rails (3.2.2)
41
- coffee-script (>= 2.2.0)
42
- railties (~> 3.2.0)
43
- coffee-script (2.4.1)
44
- coffee-script-source
45
- execjs
46
- coffee-script-source (1.10.0)
47
- erubis (2.7.0)
48
- execjs (2.6.0)
49
- hike (1.2.3)
50
- i18n (0.7.0)
51
- journey (1.0.4)
52
- json (1.8.3)
53
- mail (2.5.4)
54
- mime-types (~> 1.16)
55
- treetop (~> 1.4.8)
56
- mime-types (1.25.1)
57
- multi_json (1.11.2)
58
- polyglot (0.3.5)
59
- rack (1.4.7)
60
- rack-cache (1.6.1)
61
- rack (>= 0.4)
62
- rack-ssl (1.3.4)
63
- rack
64
- rack-test (0.6.3)
65
- rack (>= 1.0)
66
- rails (3.2.22.2)
67
- actionmailer (= 3.2.22.2)
68
- actionpack (= 3.2.22.2)
69
- activerecord (= 3.2.22.2)
70
- activeresource (= 3.2.22.2)
71
- activesupport (= 3.2.22.2)
72
- bundler (~> 1.0)
73
- railties (= 3.2.22.2)
74
- railties (3.2.22.2)
75
- actionpack (= 3.2.22.2)
76
- activesupport (= 3.2.22.2)
77
- rack-ssl (~> 1.3.2)
78
- rake (>= 0.8.7)
79
- rdoc (~> 3.4)
80
- thor (>= 0.14.6, < 2.0)
81
- rake (11.1.2)
82
- rdoc (3.12.2)
83
- json (~> 1.4)
84
- sass (3.4.22)
85
- sass-rails (3.2.6)
86
- railties (~> 3.2.0)
87
- sass (>= 3.1.10)
88
- tilt (~> 1.3)
89
- sprockets (2.2.3)
90
- hike (~> 1.2)
91
- multi_json (~> 1.0)
92
- rack (~> 1.0)
93
- tilt (~> 1.1, != 1.3.0)
94
- thor (0.19.1)
95
- tilt (1.4.1)
96
- torba (1.0.0)
97
- thor (~> 0.19.1)
98
- treetop (1.4.15)
99
- polyglot
100
- polyglot (>= 0.3.1)
101
- tzinfo (0.3.48)
102
- uglifier (3.0.0)
103
- execjs (>= 0.3.0, < 3)
104
-
105
- PLATFORMS
106
- ruby
107
-
108
- DEPENDENCIES
109
- coffee-rails (~> 3.2.1)
110
- rails (= 3.2.22.2)
111
- sass-rails (~> 3.2.3)
112
- torba-rails!
113
- uglifier (>= 1.0.3)
114
-
115
- BUNDLED WITH
116
- 1.10.6
@@ -1,8 +0,0 @@
1
- gh_release "trumbowyg",
2
- source: "torba-rb/Trumbowyg",
3
- tag: "1.1.6",
4
- import: %w[
5
- dist/trumbowyg.js
6
- dist/ui/trumbowyg.css
7
- dist/ui/images/
8
- ]
@@ -1,2 +0,0 @@
1
- //= require trumbowyg/trumbowyg
2
- //= require_tree .
@@ -1,6 +0,0 @@
1
- /*
2
- *= require_self
3
- *= require_tree .
4
- */
5
-
6
- @import "trumbowyg/trumbowyg";
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
-
4
- APP_PATH = File.expand_path('../../config/application', __FILE__)
5
- require File.expand_path('../../config/boot', __FILE__)
6
- require 'rails/commands'
@@ -1,113 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- torba-rails (1.0.0)
5
- railties (>= 3.2)
6
- torba (~> 1.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.1.15)
12
- actionpack (= 4.1.15)
13
- actionview (= 4.1.15)
14
- mail (~> 2.5, >= 2.5.4)
15
- actionpack (4.1.15)
16
- actionview (= 4.1.15)
17
- activesupport (= 4.1.15)
18
- rack (~> 1.5.2)
19
- rack-test (~> 0.6.2)
20
- actionview (4.1.15)
21
- activesupport (= 4.1.15)
22
- builder (~> 3.1)
23
- erubis (~> 2.7.0)
24
- activemodel (4.1.15)
25
- activesupport (= 4.1.15)
26
- builder (~> 3.1)
27
- activerecord (4.1.15)
28
- activemodel (= 4.1.15)
29
- activesupport (= 4.1.15)
30
- arel (~> 5.0.0)
31
- activesupport (4.1.15)
32
- i18n (~> 0.6, >= 0.6.9)
33
- json (~> 1.7, >= 1.7.7)
34
- minitest (~> 5.1)
35
- thread_safe (~> 0.1)
36
- tzinfo (~> 1.1)
37
- arel (5.0.1.20140414130214)
38
- builder (3.2.2)
39
- coffee-rails (4.0.1)
40
- coffee-script (>= 2.2.0)
41
- railties (>= 4.0.0, < 5.0)
42
- coffee-script (2.4.1)
43
- coffee-script-source
44
- execjs
45
- coffee-script-source (1.10.0)
46
- erubis (2.7.0)
47
- execjs (2.6.0)
48
- hike (1.2.3)
49
- i18n (0.7.0)
50
- json (1.8.3)
51
- mail (2.6.4)
52
- mime-types (>= 1.16, < 4)
53
- mime-types (3.0)
54
- mime-types-data (~> 3.2015)
55
- mime-types-data (3.2016.0221)
56
- minitest (5.8.4)
57
- multi_json (1.11.2)
58
- rack (1.5.5)
59
- rack-test (0.6.3)
60
- rack (>= 1.0)
61
- rails (4.1.15)
62
- actionmailer (= 4.1.15)
63
- actionpack (= 4.1.15)
64
- actionview (= 4.1.15)
65
- activemodel (= 4.1.15)
66
- activerecord (= 4.1.15)
67
- activesupport (= 4.1.15)
68
- bundler (>= 1.3.0, < 2.0)
69
- railties (= 4.1.15)
70
- sprockets-rails (~> 2.0)
71
- railties (4.1.15)
72
- actionpack (= 4.1.15)
73
- activesupport (= 4.1.15)
74
- rake (>= 0.8.7)
75
- thor (>= 0.18.1, < 2.0)
76
- rake (11.1.2)
77
- sass (3.2.19)
78
- sass-rails (4.0.5)
79
- railties (>= 4.0.0, < 5.0)
80
- sass (~> 3.2.2)
81
- sprockets (~> 2.8, < 3.0)
82
- sprockets-rails (~> 2.0)
83
- sprockets (2.12.4)
84
- hike (~> 1.2)
85
- multi_json (~> 1.0)
86
- rack (~> 1.0)
87
- tilt (~> 1.1, != 1.3.0)
88
- sprockets-rails (2.3.3)
89
- actionpack (>= 3.0)
90
- activesupport (>= 3.0)
91
- sprockets (>= 2.8, < 4.0)
92
- thor (0.19.1)
93
- thread_safe (0.3.5)
94
- tilt (1.4.1)
95
- torba (1.0.0)
96
- thor (~> 0.19.1)
97
- tzinfo (1.2.2)
98
- thread_safe (~> 0.1)
99
- uglifier (3.0.0)
100
- execjs (>= 0.3.0, < 3)
101
-
102
- PLATFORMS
103
- ruby
104
-
105
- DEPENDENCIES
106
- coffee-rails (~> 4.0.0)
107
- rails (= 4.1.15)
108
- sass-rails (~> 4.0.3)
109
- torba-rails!
110
- uglifier (>= 1.3.0)
111
-
112
- BUNDLED WITH
113
- 1.10.6
@@ -1,8 +0,0 @@
1
- gh_release "trumbowyg",
2
- source: "torba-rb/Trumbowyg",
3
- tag: "1.1.6",
4
- import: %w[
5
- dist/trumbowyg.js
6
- dist/ui/trumbowyg.css
7
- dist/ui/images/
8
- ]
@@ -1,2 +0,0 @@
1
- //= require trumbowyg/trumbowyg
2
- //= require_tree .
@@ -1,6 +0,0 @@
1
- /*
2
- *= require_self
3
- *= require_tree .
4
- */
5
-
6
- @import "trumbowyg/trumbowyg";
@@ -1,128 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- torba-rails (1.0.0)
5
- railties (>= 3.2)
6
- torba (~> 1.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.2.6)
12
- actionpack (= 4.2.6)
13
- actionview (= 4.2.6)
14
- activejob (= 4.2.6)
15
- mail (~> 2.5, >= 2.5.4)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
- actionpack (4.2.6)
18
- actionview (= 4.2.6)
19
- activesupport (= 4.2.6)
20
- rack (~> 1.6)
21
- rack-test (~> 0.6.2)
22
- rails-dom-testing (~> 1.0, >= 1.0.5)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- actionview (4.2.6)
25
- activesupport (= 4.2.6)
26
- builder (~> 3.1)
27
- erubis (~> 2.7.0)
28
- rails-dom-testing (~> 1.0, >= 1.0.5)
29
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
- activejob (4.2.6)
31
- activesupport (= 4.2.6)
32
- globalid (>= 0.3.0)
33
- activemodel (4.2.6)
34
- activesupport (= 4.2.6)
35
- builder (~> 3.1)
36
- activerecord (4.2.6)
37
- activemodel (= 4.2.6)
38
- activesupport (= 4.2.6)
39
- arel (~> 6.0)
40
- activesupport (4.2.6)
41
- i18n (~> 0.7)
42
- json (~> 1.7, >= 1.7.7)
43
- minitest (~> 5.1)
44
- thread_safe (~> 0.3, >= 0.3.4)
45
- tzinfo (~> 1.1)
46
- arel (6.0.3)
47
- builder (3.2.2)
48
- concurrent-ruby (1.0.1)
49
- erubis (2.7.0)
50
- execjs (2.6.0)
51
- globalid (0.3.6)
52
- activesupport (>= 4.1.0)
53
- i18n (0.7.0)
54
- json (1.8.3)
55
- loofah (2.0.3)
56
- nokogiri (>= 1.5.9)
57
- mail (2.6.4)
58
- mime-types (>= 1.16, < 4)
59
- mime-types (3.0)
60
- mime-types-data (~> 3.2015)
61
- mime-types-data (3.2016.0221)
62
- mini_portile2 (2.0.0)
63
- minitest (5.8.4)
64
- nokogiri (1.6.7.2)
65
- mini_portile2 (~> 2.0.0.rc2)
66
- rack (1.6.4)
67
- rack-test (0.6.3)
68
- rack (>= 1.0)
69
- rails (4.2.6)
70
- actionmailer (= 4.2.6)
71
- actionpack (= 4.2.6)
72
- actionview (= 4.2.6)
73
- activejob (= 4.2.6)
74
- activemodel (= 4.2.6)
75
- activerecord (= 4.2.6)
76
- activesupport (= 4.2.6)
77
- bundler (>= 1.3.0, < 2.0)
78
- railties (= 4.2.6)
79
- sprockets-rails
80
- rails-deprecated_sanitizer (1.0.3)
81
- activesupport (>= 4.2.0.alpha)
82
- rails-dom-testing (1.0.7)
83
- activesupport (>= 4.2.0.beta, < 5.0)
84
- nokogiri (~> 1.6.0)
85
- rails-deprecated_sanitizer (>= 1.0.1)
86
- rails-html-sanitizer (1.0.3)
87
- loofah (~> 2.0)
88
- railties (4.2.6)
89
- actionpack (= 4.2.6)
90
- activesupport (= 4.2.6)
91
- rake (>= 0.8.7)
92
- thor (>= 0.18.1, < 2.0)
93
- rake (11.1.2)
94
- sass (3.4.22)
95
- sass-rails (5.0.4)
96
- railties (>= 4.0.0, < 5.0)
97
- sass (~> 3.1)
98
- sprockets (>= 2.8, < 4.0)
99
- sprockets-rails (>= 2.0, < 4.0)
100
- tilt (>= 1.1, < 3)
101
- sprockets (3.5.2)
102
- concurrent-ruby (~> 1.0)
103
- rack (> 1, < 3)
104
- sprockets-rails (3.0.4)
105
- actionpack (>= 4.0)
106
- activesupport (>= 4.0)
107
- sprockets (>= 3.0.0)
108
- thor (0.19.1)
109
- thread_safe (0.3.5)
110
- tilt (2.0.2)
111
- torba (1.0.0)
112
- thor (~> 0.19.1)
113
- tzinfo (1.2.2)
114
- thread_safe (~> 0.1)
115
- uglifier (3.0.0)
116
- execjs (>= 0.3.0, < 3)
117
-
118
- PLATFORMS
119
- ruby
120
-
121
- DEPENDENCIES
122
- rails (= 4.2.6)
123
- sass-rails (~> 5.0)
124
- torba-rails!
125
- uglifier (>= 1.3.0)
126
-
127
- BUNDLED WITH
128
- 1.10.6
@@ -1,8 +0,0 @@
1
- gh_release "trumbowyg",
2
- source: "torba-rb/Trumbowyg",
3
- tag: "1.1.6",
4
- import: %w[
5
- dist/trumbowyg.js
6
- dist/ui/trumbowyg.css
7
- dist/ui/images/
8
- ]
@@ -1,2 +0,0 @@
1
- //= require trumbowyg/trumbowyg
2
- //= require_tree .
@@ -1,6 +0,0 @@
1
- /*
2
- *= require_self
3
- *= require_tree .
4
- */
5
-
6
- @import "trumbowyg/trumbowyg";
@@ -1,138 +0,0 @@
1
- PATH
2
- remote: ../..
3
- specs:
4
- torba-rails (1.0.0)
5
- railties (>= 3.2)
6
- torba (~> 1.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.0.0.beta3)
12
- actionpack (= 5.0.0.beta3)
13
- nio4r (~> 1.2)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.0.beta3)
16
- actionpack (= 5.0.0.beta3)
17
- actionview (= 5.0.0.beta3)
18
- activejob (= 5.0.0.beta3)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 1.0, >= 1.0.5)
21
- actionpack (5.0.0.beta3)
22
- actionview (= 5.0.0.beta3)
23
- activesupport (= 5.0.0.beta3)
24
- rack (~> 2.x)
25
- rack-test (~> 0.6.3)
26
- rails-dom-testing (~> 1.0, >= 1.0.5)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.0.0.beta3)
29
- activesupport (= 5.0.0.beta3)
30
- builder (~> 3.1)
31
- erubis (~> 2.7.0)
32
- rails-dom-testing (~> 1.0, >= 1.0.5)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
- activejob (5.0.0.beta3)
35
- activesupport (= 5.0.0.beta3)
36
- globalid (>= 0.3.6)
37
- activemodel (5.0.0.beta3)
38
- activesupport (= 5.0.0.beta3)
39
- activerecord (5.0.0.beta3)
40
- activemodel (= 5.0.0.beta3)
41
- activesupport (= 5.0.0.beta3)
42
- arel (~> 7.0)
43
- activesupport (5.0.0.beta3)
44
- concurrent-ruby (~> 1.0)
45
- i18n (~> 0.7)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- arel (7.0.0)
49
- builder (3.2.2)
50
- concurrent-ruby (1.0.1)
51
- erubis (2.7.0)
52
- execjs (2.6.0)
53
- globalid (0.3.6)
54
- activesupport (>= 4.1.0)
55
- i18n (0.7.0)
56
- json (1.8.3)
57
- loofah (2.0.3)
58
- nokogiri (>= 1.5.9)
59
- mail (2.6.4)
60
- mime-types (>= 1.16, < 4)
61
- method_source (0.8.2)
62
- mime-types (3.0)
63
- mime-types-data (~> 3.2015)
64
- mime-types-data (3.2016.0221)
65
- mini_portile2 (2.0.0)
66
- minitest (5.8.4)
67
- nio4r (1.2.1)
68
- nokogiri (1.6.7.2)
69
- mini_portile2 (~> 2.0.0.rc2)
70
- rack (2.0.0.alpha)
71
- json
72
- rack-test (0.6.3)
73
- rack (>= 1.0)
74
- rails (5.0.0.beta3)
75
- actioncable (= 5.0.0.beta3)
76
- actionmailer (= 5.0.0.beta3)
77
- actionpack (= 5.0.0.beta3)
78
- actionview (= 5.0.0.beta3)
79
- activejob (= 5.0.0.beta3)
80
- activemodel (= 5.0.0.beta3)
81
- activerecord (= 5.0.0.beta3)
82
- activesupport (= 5.0.0.beta3)
83
- bundler (>= 1.3.0, < 2.0)
84
- railties (= 5.0.0.beta3)
85
- sprockets-rails (>= 2.0.0)
86
- rails-deprecated_sanitizer (1.0.3)
87
- activesupport (>= 4.2.0.alpha)
88
- rails-dom-testing (1.0.7)
89
- activesupport (>= 4.2.0.beta, < 5.0)
90
- nokogiri (~> 1.6.0)
91
- rails-deprecated_sanitizer (>= 1.0.1)
92
- rails-html-sanitizer (1.0.3)
93
- loofah (~> 2.0)
94
- railties (5.0.0.beta3)
95
- actionpack (= 5.0.0.beta3)
96
- activesupport (= 5.0.0.beta3)
97
- method_source
98
- rake (>= 0.8.7)
99
- thor (>= 0.18.1, < 2.0)
100
- rake (11.1.2)
101
- sass (3.4.22)
102
- sass-rails (5.0.4)
103
- railties (>= 4.0.0, < 5.0)
104
- sass (~> 3.1)
105
- sprockets (>= 2.8, < 4.0)
106
- sprockets-rails (>= 2.0, < 4.0)
107
- tilt (>= 1.1, < 3)
108
- sprockets (3.6.0)
109
- concurrent-ruby (~> 1.0)
110
- rack (> 1, < 3)
111
- sprockets-rails (3.0.4)
112
- actionpack (>= 4.0)
113
- activesupport (>= 4.0)
114
- sprockets (>= 3.0.0)
115
- thor (0.19.1)
116
- thread_safe (0.3.5)
117
- tilt (2.0.2)
118
- torba (1.0.0)
119
- thor (~> 0.19.1)
120
- tzinfo (1.2.2)
121
- thread_safe (~> 0.1)
122
- uglifier (3.0.0)
123
- execjs (>= 0.3.0, < 3)
124
- websocket-driver (0.6.3)
125
- websocket-extensions (>= 0.1.0)
126
- websocket-extensions (0.1.2)
127
-
128
- PLATFORMS
129
- ruby
130
-
131
- DEPENDENCIES
132
- rails (= 5.0.0.beta3)
133
- sass-rails (~> 5.0)
134
- torba-rails!
135
- uglifier (>= 1.3.0)
136
-
137
- BUNDLED WITH
138
- 1.10.6