reports_kits 0.7.5 → 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +6 -0
  3. data/.rubocop.yml +85 -0
  4. data/.travis.yml +21 -0
  5. data/Appraisals +27 -0
  6. data/Gemfile +3 -0
  7. data/MIT-LICENSE +20 -0
  8. data/README.md +35 -0
  9. data/Rakefile +2 -0
  10. data/app/assets/javascripts/reports_kits/application.js +14 -0
  11. data/app/assets/javascripts/reports_kits/lib/_init.js +9 -0
  12. data/app/assets/javascripts/reports_kits/lib/chart.js +73 -0
  13. data/app/assets/javascripts/reports_kits/lib/report.js +135 -0
  14. data/app/assets/javascripts/reports_kits/lib/table.js +87 -0
  15. data/app/assets/javascripts/reports_kits/vendor/chart.js +12269 -0
  16. data/app/assets/javascripts/reports_kits/vendor/daterangepicker.js +1627 -0
  17. data/app/assets/javascripts/reports_kits/vendor/jquery.tablesorter.min.js +4 -0
  18. data/app/assets/javascripts/reports_kits/vendor/moment.js +4040 -0
  19. data/app/assets/javascripts/reports_kits/vendor/select2.full.js +6436 -0
  20. data/app/assets/stylesheets/reports_kits/application.css.scss +3 -0
  21. data/app/assets/stylesheets/reports_kits/reports.css.sass +33 -0
  22. data/app/assets/stylesheets/reports_kits/select2_overrides.css.sass +7 -0
  23. data/app/assets/stylesheets/reports_kits/vendor/daterangepicker.css +269 -0
  24. data/app/assets/stylesheets/reports_kits/vendor/select2-bootstrap.css +721 -0
  25. data/app/assets/stylesheets/reports_kits/vendor/select2.css +484 -0
  26. data/config/initializers/mime_types.rb +1 -0
  27. data/config/routes.rb +10 -0
  28. data/docs/images/demo.gif +0 -0
  29. data/docs/images/users_by_created_at.png +0 -0
  30. data/gemfiles/mysql.gemfile +7 -0
  31. data/gemfiles/mysql.gemfile.lock +167 -0
  32. data/gemfiles/postgresql.gemfile +7 -0
  33. data/gemfiles/postgresql.gemfile.lock +165 -0
  34. data/gemfiles/postgresql_rails_5.1.4.gemfile +8 -0
  35. data/gemfiles/postgresql_rails_5.1.4.gemfile.lock +168 -0
  36. data/gemfiles/rails_4_mysql.gemfile +8 -0
  37. data/gemfiles/rails_4_mysql.gemfile.lock +165 -0
  38. data/gemfiles/rails_4_postgresql.gemfile +8 -0
  39. data/gemfiles/rails_4_postgresql.gemfile.lock +163 -0
  40. data/gemfiles/rails_5.1.4_postgresql.gemfile +8 -0
  41. data/gemfiles/rails_5.1.4_postgresql.gemfile.lock +169 -0
  42. data/gemfiles/rails_5_mysql.gemfile +8 -0
  43. data/gemfiles/rails_5_mysql.gemfile.lock +171 -0
  44. data/gemfiles/rails_5_postgresql.gemfile +8 -0
  45. data/gemfiles/rails_5_postgresql.gemfile.lock +169 -0
  46. data/lib/reports_kits/base_controller.rb +17 -0
  47. data/lib/reports_kits/cache.rb +37 -0
  48. data/lib/reports_kits/configuration.rb +50 -0
  49. data/lib/reports_kits/engine.rb +21 -0
  50. data/lib/reports_kits/entity.rb +3 -0
  51. data/lib/reports_kits/filters_controller.rb +11 -0
  52. data/lib/reports_kits/form_builder.rb +66 -0
  53. data/lib/reports_kits/helper.rb +24 -0
  54. data/lib/reports_kits/model.rb +16 -0
  55. data/lib/reports_kits/model_configuration.rb +28 -0
  56. data/lib/reports_kits/normalized_params.rb +16 -0
  57. data/lib/reports_kits/order.rb +33 -0
  58. data/lib/reports_kits/relative_time.rb +42 -0
  59. data/lib/reports_kits/report_builder.rb +88 -0
  60. data/lib/reports_kits/reports/abstract_series.rb +9 -0
  61. data/lib/reports_kits/reports/adapters/mysql.rb +26 -0
  62. data/lib/reports_kits/reports/adapters/postgresql.rb +26 -0
  63. data/lib/reports_kits/reports/composite_series.rb +48 -0
  64. data/lib/reports_kits/reports/contextual_filter.rb +19 -0
  65. data/lib/reports_kits/reports/data/add_table_aggregations.rb +105 -0
  66. data/lib/reports_kits/reports/data/aggregate_composite.rb +97 -0
  67. data/lib/reports_kits/reports/data/aggregate_one_dimension.rb +39 -0
  68. data/lib/reports_kits/reports/data/aggregate_two_dimensions.rb +39 -0
  69. data/lib/reports_kits/reports/data/chart_data_for_data_method.rb +62 -0
  70. data/lib/reports_kits/reports/data/chart_options.rb +155 -0
  71. data/lib/reports_kits/reports/data/format_one_dimension.rb +140 -0
  72. data/lib/reports_kits/reports/data/format_table.rb +63 -0
  73. data/lib/reports_kits/reports/data/format_two_dimensions.rb +143 -0
  74. data/lib/reports_kits/reports/data/generate.rb +156 -0
  75. data/lib/reports_kits/reports/data/generate_for_properties.rb +97 -0
  76. data/lib/reports_kits/reports/data/normalize_properties.rb +62 -0
  77. data/lib/reports_kits/reports/data/populate_one_dimension.rb +54 -0
  78. data/lib/reports_kits/reports/data/populate_two_dimensions.rb +104 -0
  79. data/lib/reports_kits/reports/data/utils.rb +178 -0
  80. data/lib/reports_kits/reports/dimension.rb +27 -0
  81. data/lib/reports_kits/reports/dimension_with_series.rb +144 -0
  82. data/lib/reports_kits/reports/filter.rb +29 -0
  83. data/lib/reports_kits/reports/filter_types/base.rb +48 -0
  84. data/lib/reports_kits/reports/filter_types/boolean.rb +47 -0
  85. data/lib/reports_kits/reports/filter_types/datetime.rb +51 -0
  86. data/lib/reports_kits/reports/filter_types/number.rb +30 -0
  87. data/lib/reports_kits/reports/filter_types/records.rb +26 -0
  88. data/lib/reports_kits/reports/filter_types/string.rb +38 -0
  89. data/lib/reports_kits/reports/filter_with_series.rb +97 -0
  90. data/lib/reports_kits/reports/generate_autocomplete_method_results.rb +29 -0
  91. data/lib/reports_kits/reports/generate_autocomplete_results.rb +57 -0
  92. data/lib/reports_kits/reports/inferrable_configuration.rb +116 -0
  93. data/lib/reports_kits/reports/model_settings.rb +30 -0
  94. data/lib/reports_kits/reports/properties.rb +10 -0
  95. data/lib/reports_kits/reports/properties_to_filter.rb +40 -0
  96. data/lib/reports_kits/reports/series.rb +121 -0
  97. data/lib/reports_kits/reports_controller.rb +65 -0
  98. data/lib/reports_kits/utils.rb +11 -0
  99. data/lib/reports_kits/value.rb +3 -0
  100. data/lib/reports_kits/version.rb +3 -0
  101. data/lib/reports_kits.rb +79 -0
  102. data/reports_kits.gemspec +26 -0
  103. data/spec/factories/issue_factory.rb +4 -0
  104. data/spec/factories/issues_label_factory.rb +4 -0
  105. data/spec/factories/label_factory.rb +4 -0
  106. data/spec/factories/pro_repo_factory.rb +5 -0
  107. data/spec/factories/repo_factory.rb +5 -0
  108. data/spec/factories/tag_factory.rb +4 -0
  109. data/spec/fixtures/generate_inputs.yml +254 -0
  110. data/spec/fixtures/generate_outputs.yml +1216 -0
  111. data/spec/reports_kit/form_builder_spec.rb +26 -0
  112. data/spec/reports_kit/relative_time_spec.rb +29 -0
  113. data/spec/reports_kit/reports/data/generate/contextual_filters_spec.rb +60 -0
  114. data/spec/reports_kit/reports/data/generate_spec.rb +1371 -0
  115. data/spec/reports_kit/reports/data/normalize_properties_spec.rb +196 -0
  116. data/spec/reports_kit/reports/dimension_with_series_spec.rb +67 -0
  117. data/spec/reports_kit/reports/filter_with_series_spec.rb +39 -0
  118. data/spec/reports_kit/reports/generate_autocomplete_results_spec.rb +69 -0
  119. data/spec/spec_helper.rb +77 -0
  120. data/spec/support/config.rb +41 -0
  121. data/spec/support/example_data_methods.rb +25 -0
  122. data/spec/support/factory_girl.rb +5 -0
  123. data/spec/support/helpers.rb +25 -0
  124. data/spec/support/models/issue.rb +14 -0
  125. data/spec/support/models/issues_label.rb +4 -0
  126. data/spec/support/models/label.rb +5 -0
  127. data/spec/support/models/pro/repo.rb +5 -0
  128. data/spec/support/models/pro/special_issue.rb +4 -0
  129. data/spec/support/models/repo.rb +13 -0
  130. data/spec/support/models/tag.rb +4 -0
  131. data/spec/support/schema.rb +39 -0
  132. metadata +134 -4
@@ -0,0 +1,165 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ reports_kit (0.3.2)
5
+ rails (>= 3)
6
+ spreadsheet (>= 1.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.1.2)
12
+ actionpack (= 5.1.2)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.1.2)
16
+ actionpack (= 5.1.2)
17
+ actionview (= 5.1.2)
18
+ activejob (= 5.1.2)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.1.2)
22
+ actionview (= 5.1.2)
23
+ activesupport (= 5.1.2)
24
+ rack (~> 2.0)
25
+ rack-test (~> 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.1.2)
29
+ activesupport (= 5.1.2)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.1.2)
35
+ activesupport (= 5.1.2)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.1.2)
38
+ activesupport (= 5.1.2)
39
+ activerecord (5.1.2)
40
+ activemodel (= 5.1.2)
41
+ activesupport (= 5.1.2)
42
+ arel (~> 8.0)
43
+ activesupport (5.1.2)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (~> 0.7)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ appraisal (2.2.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (8.0.0)
53
+ builder (3.2.3)
54
+ byebug (2.7.0)
55
+ columnize (~> 0.3)
56
+ debugger-linecache (~> 1.2)
57
+ coderay (1.1.1)
58
+ columnize (0.9.0)
59
+ concurrent-ruby (1.0.5)
60
+ database_cleaner (1.6.1)
61
+ debugger-linecache (1.2.0)
62
+ diff-lcs (1.3)
63
+ erubi (1.6.1)
64
+ factory_girl (4.8.0)
65
+ activesupport (>= 3.0.0)
66
+ globalid (0.4.0)
67
+ activesupport (>= 4.2.0)
68
+ i18n (0.8.4)
69
+ loofah (2.0.3)
70
+ nokogiri (>= 1.5.9)
71
+ mail (2.6.6)
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.2.0)
78
+ minitest (5.10.2)
79
+ nio4r (2.1.0)
80
+ nokogiri (1.8.0)
81
+ mini_portile2 (~> 2.2.0)
82
+ pg (0.21.0)
83
+ pry (0.10.4)
84
+ coderay (~> 1.1.0)
85
+ method_source (~> 0.8.1)
86
+ slop (~> 3.4)
87
+ pry-byebug (1.3.3)
88
+ byebug (~> 2.7)
89
+ pry (~> 0.10)
90
+ rack (2.0.3)
91
+ rack-test (0.6.3)
92
+ rack (>= 1.0)
93
+ rails (5.1.2)
94
+ actioncable (= 5.1.2)
95
+ actionmailer (= 5.1.2)
96
+ actionpack (= 5.1.2)
97
+ actionview (= 5.1.2)
98
+ activejob (= 5.1.2)
99
+ activemodel (= 5.1.2)
100
+ activerecord (= 5.1.2)
101
+ activesupport (= 5.1.2)
102
+ bundler (>= 1.3.0, < 2.0)
103
+ railties (= 5.1.2)
104
+ sprockets-rails (>= 2.0.0)
105
+ rails-dom-testing (2.0.3)
106
+ activesupport (>= 4.2.0)
107
+ nokogiri (>= 1.6)
108
+ rails-html-sanitizer (1.0.3)
109
+ loofah (~> 2.0)
110
+ railties (5.1.2)
111
+ actionpack (= 5.1.2)
112
+ activesupport (= 5.1.2)
113
+ method_source
114
+ rake (>= 0.8.7)
115
+ thor (>= 0.18.1, < 2.0)
116
+ rake (12.0.0)
117
+ rspec (3.6.0)
118
+ rspec-core (~> 3.6.0)
119
+ rspec-expectations (~> 3.6.0)
120
+ rspec-mocks (~> 3.6.0)
121
+ rspec-core (3.6.0)
122
+ rspec-support (~> 3.6.0)
123
+ rspec-expectations (3.6.0)
124
+ diff-lcs (>= 1.2.0, < 2.0)
125
+ rspec-support (~> 3.6.0)
126
+ rspec-mocks (3.6.0)
127
+ diff-lcs (>= 1.2.0, < 2.0)
128
+ rspec-support (~> 3.6.0)
129
+ rspec-support (3.6.0)
130
+ ruby-ole (1.2.12.1)
131
+ slop (3.6.0)
132
+ spreadsheet (1.1.4)
133
+ ruby-ole (>= 1.0)
134
+ sprockets (3.7.1)
135
+ concurrent-ruby (~> 1.0)
136
+ rack (> 1, < 3)
137
+ sprockets-rails (3.2.1)
138
+ actionpack (>= 4.0)
139
+ activesupport (>= 4.0)
140
+ sprockets (>= 3.0.0)
141
+ thor (0.19.4)
142
+ thread_safe (0.3.6)
143
+ timecop (0.9.0)
144
+ tzinfo (1.2.3)
145
+ thread_safe (~> 0.1)
146
+ websocket-driver (0.6.5)
147
+ websocket-extensions (>= 0.1.0)
148
+ websocket-extensions (0.1.2)
149
+
150
+ PLATFORMS
151
+ ruby
152
+
153
+ DEPENDENCIES
154
+ appraisal
155
+ database_cleaner (~> 1)
156
+ factory_girl (~> 4)
157
+ pg
158
+ pry (~> 0)
159
+ pry-byebug (~> 1)
160
+ reports_kit!
161
+ rspec (~> 3)
162
+ timecop (~> 0)
163
+
164
+ BUNDLED WITH
165
+ 1.15.4
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "pg"
6
+ gem "rails", "5.1.4"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,168 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ reports_kit (0.3.2)
5
+ rails (>= 3)
6
+ spreadsheet (>= 1.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.1.4)
12
+ actionpack (= 5.1.4)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.1.4)
16
+ actionpack (= 5.1.4)
17
+ actionview (= 5.1.4)
18
+ activejob (= 5.1.4)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.1.4)
22
+ actionview (= 5.1.4)
23
+ activesupport (= 5.1.4)
24
+ rack (~> 2.0)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.1.4)
29
+ activesupport (= 5.1.4)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.1.4)
35
+ activesupport (= 5.1.4)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.1.4)
38
+ activesupport (= 5.1.4)
39
+ activerecord (5.1.4)
40
+ activemodel (= 5.1.4)
41
+ activesupport (= 5.1.4)
42
+ arel (~> 8.0)
43
+ activesupport (5.1.4)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (~> 0.7)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ appraisal (2.2.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (8.0.0)
53
+ builder (3.2.3)
54
+ byebug (2.7.0)
55
+ columnize (~> 0.3)
56
+ debugger-linecache (~> 1.2)
57
+ coderay (1.1.1)
58
+ columnize (0.9.0)
59
+ concurrent-ruby (1.0.5)
60
+ crass (1.0.2)
61
+ database_cleaner (1.6.1)
62
+ debugger-linecache (1.2.0)
63
+ diff-lcs (1.3)
64
+ erubi (1.7.0)
65
+ factory_girl (4.8.0)
66
+ activesupport (>= 3.0.0)
67
+ globalid (0.4.0)
68
+ activesupport (>= 4.2.0)
69
+ i18n (0.8.6)
70
+ loofah (2.1.1)
71
+ crass (~> 1.0.2)
72
+ nokogiri (>= 1.5.9)
73
+ mail (2.6.6)
74
+ mime-types (>= 1.16, < 4)
75
+ method_source (0.8.2)
76
+ mime-types (3.1)
77
+ mime-types-data (~> 3.2015)
78
+ mime-types-data (3.2016.0521)
79
+ mini_portile2 (2.3.0)
80
+ minitest (5.10.3)
81
+ nio4r (2.1.0)
82
+ nokogiri (1.8.1)
83
+ mini_portile2 (~> 2.3.0)
84
+ pg (0.21.0)
85
+ pry (0.10.4)
86
+ coderay (~> 1.1.0)
87
+ method_source (~> 0.8.1)
88
+ slop (~> 3.4)
89
+ pry-byebug (1.3.3)
90
+ byebug (~> 2.7)
91
+ pry (~> 0.10)
92
+ rack (2.0.3)
93
+ rack-test (0.7.0)
94
+ rack (>= 1.0, < 3)
95
+ rails (5.1.4)
96
+ actioncable (= 5.1.4)
97
+ actionmailer (= 5.1.4)
98
+ actionpack (= 5.1.4)
99
+ actionview (= 5.1.4)
100
+ activejob (= 5.1.4)
101
+ activemodel (= 5.1.4)
102
+ activerecord (= 5.1.4)
103
+ activesupport (= 5.1.4)
104
+ bundler (>= 1.3.0)
105
+ railties (= 5.1.4)
106
+ sprockets-rails (>= 2.0.0)
107
+ rails-dom-testing (2.0.3)
108
+ activesupport (>= 4.2.0)
109
+ nokogiri (>= 1.6)
110
+ rails-html-sanitizer (1.0.3)
111
+ loofah (~> 2.0)
112
+ railties (5.1.4)
113
+ actionpack (= 5.1.4)
114
+ activesupport (= 5.1.4)
115
+ method_source
116
+ rake (>= 0.8.7)
117
+ thor (>= 0.18.1, < 2.0)
118
+ rake (12.1.0)
119
+ rspec (3.6.0)
120
+ rspec-core (~> 3.6.0)
121
+ rspec-expectations (~> 3.6.0)
122
+ rspec-mocks (~> 3.6.0)
123
+ rspec-core (3.6.0)
124
+ rspec-support (~> 3.6.0)
125
+ rspec-expectations (3.6.0)
126
+ diff-lcs (>= 1.2.0, < 2.0)
127
+ rspec-support (~> 3.6.0)
128
+ rspec-mocks (3.6.0)
129
+ diff-lcs (>= 1.2.0, < 2.0)
130
+ rspec-support (~> 3.6.0)
131
+ rspec-support (3.6.0)
132
+ ruby-ole (1.2.12.1)
133
+ slop (3.6.0)
134
+ spreadsheet (1.1.4)
135
+ ruby-ole (>= 1.0)
136
+ sprockets (3.7.1)
137
+ concurrent-ruby (~> 1.0)
138
+ rack (> 1, < 3)
139
+ sprockets-rails (3.2.1)
140
+ actionpack (>= 4.0)
141
+ activesupport (>= 4.0)
142
+ sprockets (>= 3.0.0)
143
+ thor (0.20.0)
144
+ thread_safe (0.3.6)
145
+ timecop (0.9.0)
146
+ tzinfo (1.2.3)
147
+ thread_safe (~> 0.1)
148
+ websocket-driver (0.6.5)
149
+ websocket-extensions (>= 0.1.0)
150
+ websocket-extensions (0.1.2)
151
+
152
+ PLATFORMS
153
+ ruby
154
+
155
+ DEPENDENCIES
156
+ appraisal
157
+ database_cleaner (~> 1)
158
+ factory_girl (~> 4)
159
+ pg
160
+ pry (~> 0)
161
+ pry-byebug (~> 1)
162
+ rails (= 5.1.4)
163
+ reports_kit!
164
+ rspec (~> 3)
165
+ timecop (~> 0)
166
+
167
+ BUNDLED WITH
168
+ 1.15.4
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "mysql2"
6
+ gem "rails", "4.2.10"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,165 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ reports_kit (0.7.1)
5
+ rails (>= 3)
6
+ spreadsheet (>= 1.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.10)
12
+ actionpack (= 4.2.10)
13
+ actionview (= 4.2.10)
14
+ activejob (= 4.2.10)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.10)
18
+ actionview (= 4.2.10)
19
+ activesupport (= 4.2.10)
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.10)
25
+ activesupport (= 4.2.10)
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.3)
30
+ activejob (4.2.10)
31
+ activesupport (= 4.2.10)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.10)
34
+ activesupport (= 4.2.10)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.10)
37
+ activemodel (= 4.2.10)
38
+ activesupport (= 4.2.10)
39
+ arel (~> 6.0)
40
+ activesupport (4.2.10)
41
+ i18n (~> 0.7)
42
+ minitest (~> 5.1)
43
+ thread_safe (~> 0.3, >= 0.3.4)
44
+ tzinfo (~> 1.1)
45
+ appraisal (2.2.0)
46
+ bundler
47
+ rake
48
+ thor (>= 0.14.0)
49
+ arel (6.0.4)
50
+ builder (3.2.3)
51
+ byebug (2.7.0)
52
+ columnize (~> 0.3)
53
+ debugger-linecache (~> 1.2)
54
+ coderay (1.1.2)
55
+ columnize (0.9.0)
56
+ concurrent-ruby (1.0.5)
57
+ crass (1.0.2)
58
+ database_cleaner (1.6.1)
59
+ debugger-linecache (1.2.0)
60
+ diff-lcs (1.3)
61
+ erubis (2.7.0)
62
+ factory_girl (4.8.1)
63
+ activesupport (>= 3.0.0)
64
+ globalid (0.4.0)
65
+ activesupport (>= 4.2.0)
66
+ groupdate (3.2.0)
67
+ activesupport (>= 3)
68
+ i18n (0.8.6)
69
+ loofah (2.1.1)
70
+ crass (~> 1.0.2)
71
+ nokogiri (>= 1.5.9)
72
+ mail (2.6.6)
73
+ mime-types (>= 1.16, < 4)
74
+ method_source (0.9.0)
75
+ mime-types (3.1)
76
+ mime-types-data (~> 3.2015)
77
+ mime-types-data (3.2016.0521)
78
+ mini_portile2 (2.3.0)
79
+ minitest (5.10.3)
80
+ mysql2 (0.4.9)
81
+ nokogiri (1.8.1)
82
+ mini_portile2 (~> 2.3.0)
83
+ pg (0.21.0)
84
+ pry (0.11.1)
85
+ coderay (~> 1.1.0)
86
+ method_source (~> 0.9.0)
87
+ pry-byebug (1.3.3)
88
+ byebug (~> 2.7)
89
+ pry (~> 0.10)
90
+ rack (1.6.8)
91
+ rack-test (0.6.3)
92
+ rack (>= 1.0)
93
+ rails (4.2.10)
94
+ actionmailer (= 4.2.10)
95
+ actionpack (= 4.2.10)
96
+ actionview (= 4.2.10)
97
+ activejob (= 4.2.10)
98
+ activemodel (= 4.2.10)
99
+ activerecord (= 4.2.10)
100
+ activesupport (= 4.2.10)
101
+ bundler (>= 1.3.0, < 2.0)
102
+ railties (= 4.2.10)
103
+ sprockets-rails
104
+ rails-deprecated_sanitizer (1.0.3)
105
+ activesupport (>= 4.2.0.alpha)
106
+ rails-dom-testing (1.0.8)
107
+ activesupport (>= 4.2.0.beta, < 5.0)
108
+ nokogiri (~> 1.6)
109
+ rails-deprecated_sanitizer (>= 1.0.1)
110
+ rails-html-sanitizer (1.0.3)
111
+ loofah (~> 2.0)
112
+ railties (4.2.10)
113
+ actionpack (= 4.2.10)
114
+ activesupport (= 4.2.10)
115
+ rake (>= 0.8.7)
116
+ thor (>= 0.18.1, < 2.0)
117
+ rake (12.1.0)
118
+ rspec (3.6.0)
119
+ rspec-core (~> 3.6.0)
120
+ rspec-expectations (~> 3.6.0)
121
+ rspec-mocks (~> 3.6.0)
122
+ rspec-core (3.6.0)
123
+ rspec-support (~> 3.6.0)
124
+ rspec-expectations (3.6.0)
125
+ diff-lcs (>= 1.2.0, < 2.0)
126
+ rspec-support (~> 3.6.0)
127
+ rspec-mocks (3.6.0)
128
+ diff-lcs (>= 1.2.0, < 2.0)
129
+ rspec-support (~> 3.6.0)
130
+ rspec-support (3.6.0)
131
+ ruby-ole (1.2.12.1)
132
+ spreadsheet (1.1.7)
133
+ ruby-ole (>= 1.0)
134
+ sprockets (3.7.1)
135
+ concurrent-ruby (~> 1.0)
136
+ rack (> 1, < 3)
137
+ sprockets-rails (3.2.1)
138
+ actionpack (>= 4.0)
139
+ activesupport (>= 4.0)
140
+ sprockets (>= 3.0.0)
141
+ thor (0.20.0)
142
+ thread_safe (0.3.6)
143
+ timecop (0.9.1)
144
+ tzinfo (1.2.3)
145
+ thread_safe (~> 0.1)
146
+
147
+ PLATFORMS
148
+ ruby
149
+
150
+ DEPENDENCIES
151
+ appraisal
152
+ database_cleaner (~> 1)
153
+ factory_girl (~> 4)
154
+ groupdate (~> 3)
155
+ mysql2
156
+ pg (>= 0.15)
157
+ pry (~> 0)
158
+ pry-byebug (~> 1)
159
+ rails (= 4.2.10)
160
+ reports_kit!
161
+ rspec (~> 3)
162
+ timecop (~> 0)
163
+
164
+ BUNDLED WITH
165
+ 1.16.1
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "pg"
6
+ gem "rails", "4.2.10"
7
+
8
+ gemspec :path => "../"
@@ -0,0 +1,163 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ reports_kit (0.7.1)
5
+ rails (>= 3)
6
+ spreadsheet (>= 1.1)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actionmailer (4.2.10)
12
+ actionpack (= 4.2.10)
13
+ actionview (= 4.2.10)
14
+ activejob (= 4.2.10)
15
+ mail (~> 2.5, >= 2.5.4)
16
+ rails-dom-testing (~> 1.0, >= 1.0.5)
17
+ actionpack (4.2.10)
18
+ actionview (= 4.2.10)
19
+ activesupport (= 4.2.10)
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.10)
25
+ activesupport (= 4.2.10)
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.3)
30
+ activejob (4.2.10)
31
+ activesupport (= 4.2.10)
32
+ globalid (>= 0.3.0)
33
+ activemodel (4.2.10)
34
+ activesupport (= 4.2.10)
35
+ builder (~> 3.1)
36
+ activerecord (4.2.10)
37
+ activemodel (= 4.2.10)
38
+ activesupport (= 4.2.10)
39
+ arel (~> 6.0)
40
+ activesupport (4.2.10)
41
+ i18n (~> 0.7)
42
+ minitest (~> 5.1)
43
+ thread_safe (~> 0.3, >= 0.3.4)
44
+ tzinfo (~> 1.1)
45
+ appraisal (2.2.0)
46
+ bundler
47
+ rake
48
+ thor (>= 0.14.0)
49
+ arel (6.0.4)
50
+ builder (3.2.3)
51
+ byebug (2.7.0)
52
+ columnize (~> 0.3)
53
+ debugger-linecache (~> 1.2)
54
+ coderay (1.1.2)
55
+ columnize (0.9.0)
56
+ concurrent-ruby (1.0.5)
57
+ crass (1.0.2)
58
+ database_cleaner (1.6.1)
59
+ debugger-linecache (1.2.0)
60
+ diff-lcs (1.3)
61
+ erubis (2.7.0)
62
+ factory_girl (4.8.1)
63
+ activesupport (>= 3.0.0)
64
+ globalid (0.4.0)
65
+ activesupport (>= 4.2.0)
66
+ groupdate (3.2.0)
67
+ activesupport (>= 3)
68
+ i18n (0.8.6)
69
+ loofah (2.1.1)
70
+ crass (~> 1.0.2)
71
+ nokogiri (>= 1.5.9)
72
+ mail (2.6.6)
73
+ mime-types (>= 1.16, < 4)
74
+ method_source (0.9.0)
75
+ mime-types (3.1)
76
+ mime-types-data (~> 3.2015)
77
+ mime-types-data (3.2016.0521)
78
+ mini_portile2 (2.3.0)
79
+ minitest (5.10.3)
80
+ nokogiri (1.8.1)
81
+ mini_portile2 (~> 2.3.0)
82
+ pg (0.21.0)
83
+ pry (0.11.1)
84
+ coderay (~> 1.1.0)
85
+ method_source (~> 0.9.0)
86
+ pry-byebug (1.3.3)
87
+ byebug (~> 2.7)
88
+ pry (~> 0.10)
89
+ rack (1.6.8)
90
+ rack-test (0.6.3)
91
+ rack (>= 1.0)
92
+ rails (4.2.10)
93
+ actionmailer (= 4.2.10)
94
+ actionpack (= 4.2.10)
95
+ actionview (= 4.2.10)
96
+ activejob (= 4.2.10)
97
+ activemodel (= 4.2.10)
98
+ activerecord (= 4.2.10)
99
+ activesupport (= 4.2.10)
100
+ bundler (>= 1.3.0, < 2.0)
101
+ railties (= 4.2.10)
102
+ sprockets-rails
103
+ rails-deprecated_sanitizer (1.0.3)
104
+ activesupport (>= 4.2.0.alpha)
105
+ rails-dom-testing (1.0.8)
106
+ activesupport (>= 4.2.0.beta, < 5.0)
107
+ nokogiri (~> 1.6)
108
+ rails-deprecated_sanitizer (>= 1.0.1)
109
+ rails-html-sanitizer (1.0.3)
110
+ loofah (~> 2.0)
111
+ railties (4.2.10)
112
+ actionpack (= 4.2.10)
113
+ activesupport (= 4.2.10)
114
+ rake (>= 0.8.7)
115
+ thor (>= 0.18.1, < 2.0)
116
+ rake (12.1.0)
117
+ rspec (3.6.0)
118
+ rspec-core (~> 3.6.0)
119
+ rspec-expectations (~> 3.6.0)
120
+ rspec-mocks (~> 3.6.0)
121
+ rspec-core (3.6.0)
122
+ rspec-support (~> 3.6.0)
123
+ rspec-expectations (3.6.0)
124
+ diff-lcs (>= 1.2.0, < 2.0)
125
+ rspec-support (~> 3.6.0)
126
+ rspec-mocks (3.6.0)
127
+ diff-lcs (>= 1.2.0, < 2.0)
128
+ rspec-support (~> 3.6.0)
129
+ rspec-support (3.6.0)
130
+ ruby-ole (1.2.12.1)
131
+ spreadsheet (1.1.7)
132
+ ruby-ole (>= 1.0)
133
+ sprockets (3.7.1)
134
+ concurrent-ruby (~> 1.0)
135
+ rack (> 1, < 3)
136
+ sprockets-rails (3.2.1)
137
+ actionpack (>= 4.0)
138
+ activesupport (>= 4.0)
139
+ sprockets (>= 3.0.0)
140
+ thor (0.20.0)
141
+ thread_safe (0.3.6)
142
+ timecop (0.9.1)
143
+ tzinfo (1.2.3)
144
+ thread_safe (~> 0.1)
145
+
146
+ PLATFORMS
147
+ ruby
148
+
149
+ DEPENDENCIES
150
+ appraisal
151
+ database_cleaner (~> 1)
152
+ factory_girl (~> 4)
153
+ groupdate (~> 3)
154
+ pg
155
+ pry (~> 0)
156
+ pry-byebug (~> 1)
157
+ rails (= 4.2.10)
158
+ reports_kit!
159
+ rspec (~> 3)
160
+ timecop (~> 0)
161
+
162
+ BUNDLED WITH
163
+ 1.16.1
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "pg"
6
+ gem "rails", "5.1.4"
7
+
8
+ gemspec :path => "../"