gooddata 0.6.24 → 0.6.25

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +54 -0
  3. data/CHANGELOG.md +3 -0
  4. data/DEPENDENCIES.md +155 -154
  5. data/README.md +15 -6
  6. data/Rakefile +5 -3
  7. data/dependency_decisions.yml +2 -0
  8. data/gooddata.gemspec +2 -3
  9. data/lib/gooddata/cli/cli.rb +1 -3
  10. data/lib/gooddata/cli/commands/auth_cmd.rb +16 -7
  11. data/lib/gooddata/cli/commands/project_cmd.rb +16 -178
  12. data/lib/gooddata/cli/shared.rb +46 -44
  13. data/lib/gooddata/commands/auth.rb +4 -0
  14. data/lib/gooddata/commands/project.rb +7 -24
  15. data/lib/gooddata/exceptions/object_migration.rb +4 -0
  16. data/lib/gooddata/exceptions/segment_not_empty.rb +18 -0
  17. data/lib/gooddata/extensions/object.rb +12 -0
  18. data/lib/gooddata/goodzilla/goodzilla.rb +56 -9
  19. data/lib/gooddata/helpers/global_helpers.rb +92 -0
  20. data/lib/gooddata/mixins/md_finders.rb +2 -8
  21. data/lib/gooddata/mixins/md_grantees.rb +42 -0
  22. data/lib/gooddata/mixins/md_id_to_uri.rb +1 -8
  23. data/lib/gooddata/mixins/md_object_id.rb +1 -1
  24. data/lib/gooddata/mixins/md_object_indexer.rb +5 -8
  25. data/lib/gooddata/mixins/md_object_query.rb +2 -2
  26. data/lib/gooddata/mixins/not_group.rb +17 -0
  27. data/lib/gooddata/mixins/rest_getters.rb +2 -2
  28. data/lib/gooddata/mixins/rest_resource.rb +1 -0
  29. data/lib/gooddata/mixins/to_json.rb +11 -0
  30. data/lib/gooddata/mixins/uri_getter.rb +9 -0
  31. data/lib/gooddata/models/blueprint/anchor_field.rb +14 -0
  32. data/lib/gooddata/models/blueprint/project_blueprint.rb +15 -1
  33. data/lib/gooddata/models/blueprint/to_wire.rb +10 -0
  34. data/lib/gooddata/models/client.rb +178 -0
  35. data/lib/gooddata/models/client_synchronization_result.rb +31 -0
  36. data/lib/gooddata/models/client_synchronization_result_details.rb +41 -0
  37. data/lib/gooddata/models/datawarehouse.rb +1 -5
  38. data/lib/gooddata/models/domain.rb +85 -1
  39. data/lib/gooddata/models/execution.rb +0 -2
  40. data/lib/gooddata/models/execution_detail.rb +0 -2
  41. data/lib/gooddata/models/from_wire.rb +10 -0
  42. data/lib/gooddata/models/invitation.rb +1 -1
  43. data/lib/gooddata/models/links.rb +1 -1
  44. data/lib/gooddata/models/membership.rb +10 -6
  45. data/lib/gooddata/models/metadata.rb +98 -11
  46. data/lib/gooddata/models/metadata/attribute.rb +6 -7
  47. data/lib/gooddata/models/metadata/dashboard.rb +41 -75
  48. data/lib/gooddata/models/metadata/dashboard/dashboard_item.rb +20 -4
  49. data/lib/gooddata/models/metadata/dashboard/filter_apply_item.rb +37 -0
  50. data/lib/gooddata/models/metadata/dashboard/filter_item.rb +49 -0
  51. data/lib/gooddata/models/metadata/dashboard/geo_chart_item.rb +56 -0
  52. data/lib/gooddata/models/metadata/dashboard/headline_item.rb +56 -0
  53. data/lib/gooddata/models/metadata/dashboard/iframe_item.rb +46 -0
  54. data/lib/gooddata/models/metadata/dashboard/report_item.rb +49 -8
  55. data/lib/gooddata/models/metadata/dashboard/text_item.rb +55 -0
  56. data/lib/gooddata/models/metadata/dashboard_tab.rb +83 -30
  57. data/lib/gooddata/models/metadata/dataset.rb +0 -2
  58. data/lib/gooddata/models/metadata/dimension.rb +1 -3
  59. data/lib/gooddata/models/metadata/fact.rb +1 -3
  60. data/lib/gooddata/models/metadata/label.rb +1 -3
  61. data/lib/gooddata/models/metadata/metric.rb +11 -42
  62. data/lib/gooddata/models/metadata/report.rb +7 -18
  63. data/lib/gooddata/models/metadata/report_definition.rb +21 -113
  64. data/lib/gooddata/models/metadata/scheduled_mail.rb +274 -0
  65. data/lib/gooddata/models/metadata/scheduled_mail/dashboard_attachment.rb +62 -0
  66. data/lib/gooddata/models/metadata/scheduled_mail/report_attachment.rb +64 -0
  67. data/lib/gooddata/models/metadata/variable.rb +8 -2
  68. data/lib/gooddata/models/model.rb +2 -9
  69. data/lib/gooddata/models/process.rb +7 -29
  70. data/lib/gooddata/models/profile.rb +1 -1
  71. data/lib/gooddata/models/project.rb +131 -167
  72. data/lib/gooddata/models/project_creator.rb +2 -7
  73. data/lib/gooddata/models/project_metadata.rb +2 -10
  74. data/lib/gooddata/models/project_role.rb +4 -10
  75. data/lib/gooddata/models/report_data_result.rb +3 -5
  76. data/lib/gooddata/models/schedule.rb +4 -31
  77. data/lib/gooddata/models/segment.rb +192 -0
  78. data/lib/gooddata/models/user_filters/mandatory_user_filter.rb +2 -2
  79. data/lib/gooddata/models/user_filters/user_filter_builder.rb +1 -1
  80. data/lib/gooddata/models/user_filters/variable_user_filter.rb +11 -0
  81. data/lib/gooddata/models/user_group.rb +241 -0
  82. data/lib/gooddata/rest/connection.rb +81 -16
  83. data/lib/gooddata/rest/object.rb +29 -0
  84. data/lib/gooddata/rest/object_factory.rb +6 -1
  85. data/lib/gooddata/rest/resource.rb +7 -1
  86. data/lib/gooddata/version.rb +1 -1
  87. data/spec/environment/default.rb +19 -16
  88. data/spec/environment/develop.rb +10 -10
  89. data/spec/environment/hotfix.rb +6 -6
  90. data/spec/environment/production.rb +14 -14
  91. data/spec/environment/release.rb +6 -6
  92. data/spec/environment/staging.rb +9 -9
  93. data/spec/environment/staging_3.rb +14 -15
  94. data/spec/integration/blueprint_with_grain_spec.rb +72 -0
  95. data/spec/integration/clients_spec.rb +135 -0
  96. data/spec/integration/date_dim_switch_spec.rb +142 -0
  97. data/spec/integration/full_project_spec.rb +3 -3
  98. data/spec/integration/project_spec.rb +20 -0
  99. data/spec/integration/segments_spec.rb +141 -0
  100. data/spec/integration/user_group_spec.rb +127 -0
  101. data/spec/spec_helper.rb +4 -0
  102. data/spec/unit/models/domain_spec.rb +7 -1
  103. data/spec/unit/models/metric_spec.rb +0 -8
  104. data/spec/unit/models/profile_spec.rb +1 -1
  105. data/spec/unit/models/report_result_data_spec.rb +6 -0
  106. metadata +38 -38
  107. data/lib/gooddata/cli/commands/api_cmd.rb +0 -34
  108. data/lib/gooddata/cli/commands/console_cmd.rb +0 -40
  109. data/lib/gooddata/cli/commands/domain_cmd.rb +0 -46
  110. data/lib/gooddata/cli/commands/process_cmd.rb +0 -145
  111. data/lib/gooddata/cli/commands/projects_cmd.rb +0 -23
  112. data/lib/gooddata/cli/commands/run_ruby_cmd.rb +0 -77
  113. data/lib/gooddata/cli/commands/scaffold_cmd.rb +0 -35
  114. data/lib/gooddata/cli/commands/user_cmd.rb +0 -24
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 30374dd9fc0772222ad087d4c46a0e0cbf67afa7
4
- data.tar.gz: ca952f77f35a66ed185d4397f2316d40e39bdb6f
3
+ metadata.gz: 251de9ca156643db700ec8307dd7858d0f557558
4
+ data.tar.gz: 1202bb213978374571684a8a8024f010b42b9432
5
5
  SHA512:
6
- metadata.gz: eab3feca7ef26f5e9b97bbc6b7878910afa7da4317b5a802327bd383fa767de654cf6466537ff34e7ee3944b76da5f858e6c5e76f8b535c29929ead8bd9e6138
7
- data.tar.gz: 00491d58b885d2b11ae9364e011ec008e91aeb39777e0318619c21a20fb4bf64642f2b689e6ebb23357e1d0a64e214f374c9d342030e5201ebd4fa81a6d8cc05
6
+ metadata.gz: 7f69fe0dfbd568c04489bdb2952846a18e090f2eac175e3ea135c1a5d4593464dccf34f68e2be2ce93de8b16f4fb7f149225a6d45a54fd922f62af88ce224f73
7
+ data.tar.gz: 1b28234c6dd160762633f02e25d989b81bbfeb8465b05b59ee3d49b6be4f0f955fb9c47958906464ede7366c19bdbeb585e753ff446ec5da8bc1768b4f696391
@@ -33,3 +33,57 @@ MethodLength:
33
33
 
34
34
  PerceivedComplexity:
35
35
  Enabled: false
36
+
37
+ Alias:
38
+ Enabled: false
39
+
40
+ Casecmp:
41
+ Enabled: false
42
+
43
+ ConditionalAssignment:
44
+ Enabled: false
45
+
46
+ GuardClause:
47
+ Enabled: false
48
+
49
+ IdenticalConditionalBranches:
50
+ Enabled: false
51
+
52
+ IfInsideElse:
53
+ Enabled: false
54
+
55
+ IneffectiveAccessModifier:
56
+ Enabled: false
57
+
58
+ MultilineMethodCallIndentation:
59
+ Enabled: false
60
+
61
+ MutableConstant:
62
+ Enabled: false
63
+
64
+ RedundantBlockCall:
65
+ Enabled: false
66
+
67
+ RedundantMerge:
68
+ Enabled: false
69
+
70
+ RedundantParentheses:
71
+ Enabled: false
72
+
73
+ StringLiterals:
74
+ Enabled: false
75
+
76
+ SignalException:
77
+ Enabled: false
78
+
79
+ TimesMap:
80
+ Enabled: false
81
+
82
+ UnneededDisable:
83
+ Enabled: false
84
+
85
+ UnneededInterpolation:
86
+ Enabled: false
87
+
88
+ UselessAccessModifier:
89
+ Enabled: false
@@ -1,5 +1,8 @@
1
1
  # GoodData Ruby SDK Changelog
2
2
 
3
+ ## 0.6.24
4
+ - Fixed problem with validElements causing 500
5
+
3
6
  ## 0.6.23
4
7
  - Fixed typo sometimes causing crash of ReportDefinition#replace
5
8
 
@@ -1,14 +1,18 @@
1
1
  # gooddata-ruby
2
2
 
3
- As of August 3, 2015 1:23pm. 85 total
3
+ As of February 22, 2016 1:54pm. 83 total
4
4
 
5
5
  ## Summary
6
- * 67 MIT
7
- * 7 Apache 2.0
8
- * 6 ruby
6
+ * 62 MIT
7
+ * 6 Apache 2.0
8
+ * 4 ruby
9
+ * 3 unknown
9
10
  * 3 BSD
10
- * 1 GPL-2
11
- * 1 unknown
11
+ * 1 2-clause BSDL
12
+ * 1 GPL-2.0, LGPL-2.1, MPL-1.1, New BSD, Simplified BSD
13
+ * 1 GNU GPL v2, MIT, Perl Artistic v2
14
+ * 1 Artistic 2.0, GPL-2, MIT
15
+ * 1 Simplified BSD
12
16
 
13
17
 
14
18
 
@@ -55,7 +59,7 @@ adds support for IRIs and URI templates.
55
59
 
56
60
 
57
61
  <a name="ast"></a>
58
- ### <a href="https://whitequark.github.io/ast/">ast</a> v2.0.0
62
+ ### <a href="https://whitequark.github.io/ast/">ast</a> v2.1.0
59
63
  #### A library for working with Abstract Syntax Trees.
60
64
 
61
65
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -63,7 +67,7 @@ adds support for IRIs and URI templates.
63
67
  A library for working with Abstract Syntax Trees.
64
68
 
65
69
  <a name="astrolabe"></a>
66
- ### <a href="https://github.com/yujinakayama/astrolabe">astrolabe</a> v1.3.0
70
+ ### <a href="https://github.com/yujinakayama/astrolabe">astrolabe</a> v1.3.1
67
71
  #### An object-oriented AST extension for Parser
68
72
 
69
73
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -71,7 +75,7 @@ A library for working with Abstract Syntax Trees.
71
75
  An object-oriented AST extension for Parser
72
76
 
73
77
  <a name="aws-sdk"></a>
74
- ### <a href="http://aws.amazon.com/sdkforruby">aws-sdk</a> v1.64.0
78
+ ### <a href="http://aws.amazon.com/sdkforruby">aws-sdk</a> v1.66.0
75
79
  #### AWS SDK for Ruby V1
76
80
 
77
81
  <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
@@ -81,7 +85,7 @@ Use `aws-sdk-v1` if you want to load v1 and v2 of the Ruby SDK in the same
81
85
  application.
82
86
 
83
87
  <a name="aws-sdk-v1"></a>
84
- ### <a href="http://aws.amazon.com/sdkforruby">aws-sdk-v1</a> v1.64.0
88
+ ### <a href="http://aws.amazon.com/sdkforruby">aws-sdk-v1</a> v1.66.0
85
89
  #### AWS SDK for Ruby V1
86
90
 
87
91
  <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
@@ -91,14 +95,14 @@ Use `aws-sdk-v1` if you want to load v1 and v2 of the Ruby SDK in the same
91
95
  application.
92
96
 
93
97
  <a name="bundler"></a>
94
- ### bundler v1.10.6 (development)
98
+ ### bundler v1.11.2 (development)
95
99
  ####
96
100
 
97
101
  unknown manually approved
98
102
 
99
103
  >
100
104
 
101
- ><cite> 2015-08-03</cite>
105
+ ><cite> 2016-02-22</cite>
102
106
 
103
107
 
104
108
 
@@ -110,19 +114,15 @@ unknown manually approved
110
114
 
111
115
  Fast and easy syntax highlighting for selected languages, written in Ruby. Comes with RedCloth integration and LOC counter.
112
116
 
113
- <a name="colored"></a>
114
- ### colored v
115
- ####
116
-
117
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
118
-
119
-
120
-
121
117
  <a name="colored"></a>
122
118
  ### <a href="http://github.com/defunkt/colored">colored</a> v1.2
123
119
  #### Add some color to your life.
124
120
 
125
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
121
+ unknown manually approved
122
+
123
+ >
124
+
125
+ ><cite> 2016-02-22</cite>
126
126
 
127
127
  >> puts "this is red".red
128
128
 
@@ -137,16 +137,8 @@ Fast and easy syntax highlighting for selected languages, written in Ruby. Comes
137
137
  >> puts Color.red "This is red" # but this part is mostly untested
138
138
 
139
139
 
140
- <a name="coveralls"></a>
141
- ### <a href="https://coveralls.io">coveralls</a> v0.8.2 (development)
142
- #### A Ruby implementation of the Coveralls API.
143
-
144
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
145
-
146
- A Ruby implementation of the Coveralls API.
147
-
148
140
  <a name="crack"></a>
149
- ### <a href="http://github.com/jnunemaker/crack">crack</a> v0.4.2
141
+ ### <a href="http://github.com/jnunemaker/crack">crack</a> v0.4.3
150
142
  #### Really simple JSON and XML parsing, ripped from Merb and Rails.
151
143
 
152
144
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -154,7 +146,7 @@ A Ruby implementation of the Coveralls API.
154
146
  Really simple JSON and XML parsing, ripped from Merb and Rails.
155
147
 
156
148
  <a name="debase"></a>
157
- ### <a href="https://github.com/denofevil/debase">debase</a> v0.1.7 (development)
149
+ ### <a href="https://github.com/denofevil/debase">debase</a> v0.2.1 (development)
158
150
  #### debase is a fast implementation of the standard Ruby debugger debug.rb for Ruby 2.0
159
151
 
160
152
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -166,7 +158,7 @@ Really simple JSON and XML parsing, ripped from Merb and Rails.
166
158
 
167
159
 
168
160
  <a name="debase-ruby_core_source"></a>
169
- ### <a href="http://github.com/os97673/debase-ruby_core_source">debase-ruby_core_source</a> v0.7.9
161
+ ### <a href="http://github.com/os97673/debase-ruby_core_source">debase-ruby_core_source</a> v0.8.1
170
162
  #### Provide Ruby core source files
171
163
 
172
164
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -177,7 +169,7 @@ Provide Ruby core source files for C extensions that need them.
177
169
  ### <a href="http://diff-lcs.rubyforge.org/">diff-lcs</a> v1.2.5
178
170
  #### Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm
179
171
 
180
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
172
+ <a href="http://opensource.org/licenses/mit-license">MIT</a>, Perl Artistic v2, GNU GPL v2 whitelisted
181
173
 
182
174
  Diff::LCS computes the difference between two Enumerable sequences using the
183
175
  McIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities
@@ -192,14 +184,6 @@ Rubinius in 1.9 mode
192
184
  ({rubinius/rubinius#2268}[https://github.com/rubinius/rubinius/issues/2268]).
193
185
  We are happy to report that this issue has been resolved.
194
186
 
195
- <a name="diff-lcs"></a>
196
- ### diff-lcs v
197
- ####
198
-
199
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
200
-
201
-
202
-
203
187
  <a name="docile"></a>
204
188
  ### <a href="https://ms-ati.github.io/docile/">docile</a> v1.1.5
205
189
  #### Docile keeps your Ruby DSLs tame and well-behaved
@@ -208,6 +192,22 @@ We are happy to report that this issue has been resolved.
208
192
 
209
193
  Docile turns any Ruby object into a DSL. Especially useful with the Builder pattern.
210
194
 
195
+ <a name="domain_name"></a>
196
+ ### <a href="https://github.com/knu/ruby-domain_name">domain_name</a> v0.5.25
197
+ #### Domain Name manipulation library for Ruby
198
+
199
+ <a href="http://opensource.org/licenses/bsd-license">Simplified BSD</a>, <a href="http://opensource.org/licenses/BSD-3-Clause">New BSD</a>, MPL-1.1, GPL-2.0, LGPL-2.1 manually approved
200
+
201
+ >
202
+
203
+ ><cite> 2016-02-22</cite>
204
+
205
+ This is a Domain Name manipulation library for Ruby.
206
+
207
+ It can also be used for cookie domain validation based on the Public
208
+ Suffix List.
209
+
210
+
211
211
  <a name="erubis"></a>
212
212
  ### <a href="http://www.kuwata-lab.com/erubis/">erubis</a> v2.7.0
213
213
  #### a fast and extensible eRuby implementation which supports multi-language
@@ -229,7 +229,7 @@ Docile turns any Ruby object into a DSL. Especially useful with the Builder patt
229
229
 
230
230
 
231
231
  <a name="faraday"></a>
232
- ### <a href="https://github.com/lostisland/faraday">faraday</a> v0.9.1
232
+ ### <a href="https://github.com/lostisland/faraday">faraday</a> v0.9.2
233
233
  #### HTTP/REST API client library.
234
234
 
235
235
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -261,7 +261,7 @@ Ruby FFI library
261
261
  STDOUT text formatting
262
262
 
263
263
  <a name="gli"></a>
264
- ### <a href="http://davetron5000.github.com/gli">gli</a> v2.13.1
264
+ ### <a href="http://davetron5000.github.com/gli">gli</a> v2.13.4
265
265
  #### Build command-suite CLI apps that are awesome.
266
266
 
267
267
  <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
@@ -269,7 +269,7 @@ STDOUT text formatting
269
269
  Build command-suite CLI apps that are awesome. Bootstrap your app, add commands, options and documentation while maintaining a well-tested idiomatic command-line app
270
270
 
271
271
  <a name="gooddata"></a>
272
- ### <a href="http://github.com/gooddata/gooddata-ruby">gooddata</a> v0.6.21 (default)
272
+ ### <a href="http://github.com/gooddata/gooddata-ruby">gooddata</a> v0.6.24 (default)
273
273
  #### A convenient Ruby wrapper around the GoodData RESTful API
274
274
 
275
275
  <a href="http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29">BSD</a> whitelisted
@@ -277,7 +277,7 @@ Build command-suite CLI apps that are awesome. Bootstrap your app, add commands
277
277
  Use the GoodData::Client class to integrate GoodData into your own application or use the CLI to work with GoodData directly from the command line.
278
278
 
279
279
  <a name="guard"></a>
280
- ### <a href="http://guardgem.org">guard</a> v2.12.7 (development)
280
+ ### <a href="http://guardgem.org">guard</a> v2.13.0 (development)
281
281
  #### Guard keeps an eye on your file modifications
282
282
 
283
283
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -293,15 +293,23 @@ Guard is a command line tool to easily handle events on file system modification
293
293
  Helps creating valid Guard plugins and testing them
294
294
 
295
295
  <a name="guard-rspec"></a>
296
- ### <a href="https://rubygems.org/gems/guard-rspec">guard-rspec</a> v4.6.0 (development)
296
+ ### <a href="https://rubygems.org/gems/guard-rspec">guard-rspec</a> v4.6.4 (development)
297
297
  #### Guard gem for RSpec
298
298
 
299
299
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
300
300
 
301
301
  Guard::RSpec automatically run your specs (much like autotest).
302
302
 
303
+ <a name="hashdiff"></a>
304
+ ### <a href="https://github.com/liufengyun/hashdiff">hashdiff</a> v0.2.3
305
+ #### HashDiff is a diff lib to compute the smallest difference between two hashes.
306
+
307
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
308
+
309
+ HashDiff is a diff lib to compute the smallest difference between two hashes.
310
+
303
311
  <a name="hashie"></a>
304
- ### <a href="https://github.com/intridea/hashie">hashie</a> v3.4.2
312
+ ### <a href="https://github.com/intridea/hashie">hashie</a> v3.4.3
305
313
  #### Your friendly neighborhood hash library.
306
314
 
307
315
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -309,7 +317,7 @@ Guard::RSpec automatically run your specs (much like autotest).
309
317
  Hashie is a collection of classes and mixins that make hashes more powerful.
310
318
 
311
319
  <a name="highline"></a>
312
- ### <a href="https://github.com/JEG2/highline">highline</a> v1.7.2
320
+ ### <a href="https://github.com/JEG2/highline">highline</a> v1.7.8
313
321
  #### HighLine is a high-level command-line IO library.
314
322
 
315
323
  <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
@@ -320,8 +328,16 @@ crank out anything from simple list selection to complete shells with just
320
328
  minutes of work.
321
329
 
322
330
 
331
+ <a name="http-cookie"></a>
332
+ ### <a href="https://github.com/sparklemotion/http-cookie">http-cookie</a> v1.0.2
333
+ #### A Ruby library to handle HTTP Cookies based on RFC 6265
334
+
335
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
336
+
337
+ HTTP::Cookie is a Ruby library to handle HTTP Cookies based on RFC 6265. It has with security, standards compliance and compatibility in mind, to behave just the same as today's major web browsers. It has builtin support for the legacy cookies.txt and the latest cookies.sqlite formats of Mozilla Firefox, and its modular API makes it easy to add support for a new backend store.
338
+
323
339
  <a name="httparty"></a>
324
- ### <a href="http://jnunemaker.github.com/httparty">httparty</a> v0.13.5
340
+ ### <a href="http://jnunemaker.github.com/httparty">httparty</a> v0.13.7
325
341
  #### Makes http fun! Also, makes consuming restful web services dead easy.
326
342
 
327
343
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -337,7 +353,7 @@ Makes http fun! Also, makes consuming restful web services dead easy.
337
353
  This is a JSON implementation as a Ruby extension in C.
338
354
 
339
355
  <a name="json_pure"></a>
340
- ### <a href="http://flori.github.com/json">json_pure</a> v1.8.2
356
+ ### <a href="http://flori.github.com/json">json_pure</a> v1.8.3
341
357
  #### JSON Implementation for Ruby
342
358
 
343
359
  <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
@@ -357,7 +373,7 @@ This is a JSON implementation in pure Ruby.
357
373
 
358
374
 
359
375
  <a name="listen"></a>
360
- ### <a href="https://github.com/guard/listen">listen</a> v3.0.1
376
+ ### <a href="https://github.com/guard/listen">listen</a> v3.0.5
361
377
  #### Listen to file modifications
362
378
 
363
379
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -381,52 +397,32 @@ A simple, powerful, and very fast logging utility that can be a drop in replacem
381
397
  retrieve the sourcecode for a method
382
398
 
383
399
  <a name="mime-types"></a>
384
- ### mime-types v
385
- ####
386
-
387
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
388
-
389
-
390
-
391
- <a name="mime-types"></a>
392
- ### <a href="https://github.com/mime-types/ruby-mime-types/">mime-types</a> v2.6.1
400
+ ### <a href="https://github.com/mime-types/ruby-mime-types/">mime-types</a> v2.99
393
401
  #### The mime-types library provides a library and registry for information about MIME content type definitions
394
402
 
395
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
403
+ <a href="http://opensource.org/licenses/mit-license">MIT</a>, Artistic 2.0, GPL-2 whitelisted
396
404
 
397
405
  The mime-types library provides a library and registry for information about
398
406
  MIME content type definitions. It can be used to determine defined filename
399
407
  extensions for MIME types, or to use filename extensions to look up the likely
400
408
  MIME type definitions.
401
409
 
402
- MIME content types are used in MIME-compliant communications, as in e-mail or
403
- HTTP traffic, to indicate the type of content which is transmitted. The
404
- mime-types library provides the ability for detailed information about MIME
405
- entities (provided as an enumerable collection of MIME::Type objects) to be
406
- determined and used. There are many types defined by RFCs and vendors, so the
407
- list is long but by definition incomplete; don't hesitate to add additional
408
- type definitions. MIME type definitions found in mime-types are from RFCs, W3C
409
- recommendations, the {IANA Media Types
410
- registry}[https://www.iana.org/assignments/media-types/media-types.xhtml], and
411
- user contributions. It conforms to RFCs 2045 and 2231.
412
-
413
- This is release 2.6 with two new experimental features. The first new feature
414
- is a new default registry storage format that greatly reduces the initial
415
- memory use of the mime-types library. This feature is enabled by requiring
416
- +mime/types/columnar+ instead of +mime/types+ with a small performance cost and
417
- no change in *total* memory use if certain methods are called (see {Columnar
418
- Store}[#columnar-store] for more details). The second new feature is a logger
419
- interface that conforms to the expectations of an ActiveSupport::Logger so that
420
- warnings can be written to an application's log rather than the default
421
- location for +warn+. This interface may be used for other logging purposes in
422
- the future.
423
-
424
- mime-types 2.6 is the last planned version of mime-types 2.x, so deprecation
425
- warnings are no longer cached but provided every time the method is called.
426
- mime-types 2.6 supports Ruby 1.9.2 or later.
427
-
428
- <a name="mini_portile"></a>
429
- ### <a href="http://github.com/flavorjones/mini_portile">mini_portile</a> v0.6.2
410
+ This is release 2.99, the deprecation version of mime-types 2.x, where
411
+ deprecation warnings are noisy and data that has been deprecated is now no
412
+ longer available. The data is both dropped from the data files and is stubbed
413
+ out as empty or +nil+ values as appropriate.
414
+
415
+ mime-types-2.6 was the last version of mime-types 2.x with newly available
416
+ features, and mime-types 2.99 will only receive quarterly updates to the IANA
417
+ registered MIME media types plus any security updates that may be required.
418
+
419
+ If the loss of the deprecated data matters, be sure to set your dependency
420
+ appropriately:
421
+
422
+ gem 'mime-types', '~> 2.6, < 2.99'
423
+
424
+ <a name="mini_portile2"></a>
425
+ ### <a href="http://github.com/flavorjones/mini_portile">mini_portile2</a> v2.0.0
430
426
  #### Simplistic port-like solution for developers
431
427
 
432
428
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -466,7 +462,7 @@ Use with Net::HTTP to do multipart form posts. IO values that have #content_typ
466
462
  Using ENV is like using raw SQL statements in your code. We all know how that ends...
467
463
 
468
464
  <a name="netrc"></a>
469
- ### <a href="https://github.com/geemus/netrc">netrc</a> v0.10.3
465
+ ### <a href="https://github.com/geemus/netrc">netrc</a> v0.11.0
470
466
  #### Library to read and write netrc files.
471
467
 
472
468
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -474,24 +470,27 @@ Using ENV is like using raw SQL statements in your code. We all know how that en
474
470
  This library can read and update netrc files, preserving formatting including comments and whitespace.
475
471
 
476
472
  <a name="nokogiri"></a>
477
- ### <a href="http://nokogiri.org">nokogiri</a> v1.6.6.2
473
+ ### <a href="http://nokogiri.org">nokogiri</a> v1.6.7
478
474
  #### Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser
479
475
 
480
476
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
481
477
 
482
- Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among Nokogiri's
483
- many features is the ability to search documents via XPath or CSS3 selectors.
478
+ Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among
479
+ Nokogiri's many features is the ability to search documents via XPath
480
+ or CSS3 selectors.
484
481
 
485
- XML is like violence - if it doesn’t solve your problems, you are not using
486
- enough of it.
482
+ XML is like violence - if it doesn’t solve your problems, you are not
483
+ using enough of it.
487
484
 
488
485
  <a name="notiffany"></a>
489
- ### notiffany v0.0.6
486
+ ### <a href="https://github.com/guard/notiffany">notiffany</a> v0.0.8
490
487
  #### Notifier library (extracted from Guard project)
491
488
 
492
489
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
493
490
 
494
- Single wrapper for most popular notification libraries
491
+ Wrapper libray for most popular notification
492
+ libraries such as Growl, Libnotify, Notifu
493
+
495
494
 
496
495
  <a name="parseconfig"></a>
497
496
  ### <a href="http://github.com/datafolklabs/ruby-parseconfig/">parseconfig</a> v1.0.6
@@ -502,7 +501,7 @@ Single wrapper for most popular notification libraries
502
501
  ParseConfig provides simple parsing of standard configuration files in the form of 'param = value'. It also supports nested [group] sections.
503
502
 
504
503
  <a name="parser"></a>
505
- ### <a href="https://github.com/whitequark/parser">parser</a> v2.3.0.pre.2
504
+ ### <a href="https://github.com/whitequark/parser">parser</a> v2.2.3.0
506
505
  #### A Ruby parser written in pure Ruby.
507
506
 
508
507
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -510,15 +509,7 @@ ParseConfig provides simple parsing of standard configuration files in the form
510
509
  A Ruby parser written in pure Ruby.
511
510
 
512
511
  <a name="pmap"></a>
513
- ### pmap v
514
- ####
515
-
516
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
517
-
518
-
519
-
520
- <a name="pmap"></a>
521
- ### <a href="https://github.com/bruceadams/pmap">pmap</a> v1.0.2
512
+ ### <a href="https://github.com/bruceadams/pmap">pmap</a> v1.1.1
522
513
  #### Add parallel methods into Enumerable: pmap and peach
523
514
 
524
515
  <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
@@ -534,7 +525,7 @@ Add parallel methods into Enumerable: pmap and peach
534
525
  A few useful extensions to core Ruby classes.
535
526
 
536
527
  <a name="pry"></a>
537
- ### <a href="http://pry.github.com">pry</a> v0.9.12.6
528
+ ### <a href="http://pryrepl.org">pry</a> v0.10.3
538
529
  #### An IRB alternative and runtime developer console
539
530
 
540
531
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -549,19 +540,15 @@ An IRB alternative and runtime developer console
549
540
 
550
541
  Colorize printed text on ANSI terminals
551
542
 
552
- <a name="rake"></a>
553
- ### rake v
554
- ####
555
-
556
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
557
-
558
-
559
-
560
543
  <a name="rake"></a>
561
544
  ### rake v10.4.2 (development)
562
545
  #### This rake is bundled with Ruby
563
546
 
564
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
547
+ unknown manually approved
548
+
549
+ >
550
+
551
+ ><cite> 2016-02-22</cite>
565
552
 
566
553
 
567
554
 
@@ -574,7 +561,7 @@ Colorize printed text on ANSI terminals
574
561
  rake notes task for non-Rails' projects
575
562
 
576
563
  <a name="rb-fsevent"></a>
577
- ### <a href="http://rubygems.org/gems/rb-fsevent">rb-fsevent</a> v0.9.5
564
+ ### <a href="http://rubygems.org/gems/rb-fsevent">rb-fsevent</a> v0.9.6
578
565
  #### Very simple & usable FSEvents API
579
566
 
580
567
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -590,7 +577,7 @@ FSEvents API with Signals catching (without RubyCocoa)
590
577
  A Ruby wrapper for Linux's inotify, using FFI
591
578
 
592
579
  <a name="redcarpet"></a>
593
- ### <a href="http://github.com/vmg/redcarpet">redcarpet</a> v3.3.2 (development)
580
+ ### <a href="http://github.com/vmg/redcarpet">redcarpet</a> v3.3.3 (development)
594
581
  #### Markdown that smells nice
595
582
 
596
583
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -598,7 +585,7 @@ A Ruby wrapper for Linux's inotify, using FFI
598
585
  A fast, safe and extensible Markdown to (X)HTML parser
599
586
 
600
587
  <a name="rest-client"></a>
601
- ### <a href="https://github.com/rest-client/rest-client">rest-client</a> v1.7.3
588
+ ### <a href="https://github.com/rest-client/rest-client">rest-client</a> v1.8.0
602
589
  #### Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.
603
590
 
604
591
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -606,47 +593,55 @@ A fast, safe and extensible Markdown to (X)HTML parser
606
593
  A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.
607
594
 
608
595
  <a name="restforce"></a>
609
- ### <a href="https://github.com/ejholmes/restforce">restforce</a> v1.5.3
610
- #### A lightweight ruby client for the Salesforce REST api.
596
+ ### <a href="https://github.com/ejholmes/restforce">restforce</a> v2.1.2
597
+ #### A lightweight ruby client for the Salesforce REST API.
611
598
 
612
599
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
613
600
 
614
- A lightweight ruby client for the Salesforce REST api.
601
+ A lightweight ruby client for the Salesforce REST API.
615
602
 
616
603
  <a name="rspec"></a>
617
- ### <a href="http://github.com/rspec">rspec</a> v2.99.0 (development)
618
- #### rspec-2.99.0
604
+ ### <a href="http://github.com/rspec">rspec</a> v3.4.0 (development)
605
+ #### rspec-3.4.0
619
606
 
620
607
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
621
608
 
622
609
  BDD for Ruby
623
610
 
624
611
  <a name="rspec-core"></a>
625
- ### <a href="http://github.com/rspec/rspec-core">rspec-core</a> v2.99.2
626
- #### rspec-core-2.99.2
612
+ ### <a href="http://github.com/rspec/rspec-core">rspec-core</a> v3.4.1
613
+ #### rspec-core-3.4.1
627
614
 
628
615
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
629
616
 
630
617
  BDD for Ruby. RSpec runner and example groups.
631
618
 
632
619
  <a name="rspec-expectations"></a>
633
- ### <a href="http://github.com/rspec/rspec-expectations">rspec-expectations</a> v2.99.2
634
- #### rspec-expectations-2.99.2
620
+ ### <a href="http://github.com/rspec/rspec-expectations">rspec-expectations</a> v3.4.0
621
+ #### rspec-expectations-3.4.0
635
622
 
636
623
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
637
624
 
638
- rspec expectations (should[_not] and matchers)
625
+ rspec-expectations provides a simple, readable API to express expected outcomes of a code example.
639
626
 
640
627
  <a name="rspec-mocks"></a>
641
- ### <a href="http://github.com/rspec/rspec-mocks">rspec-mocks</a> v2.99.4
642
- #### rspec-mocks-2.99.4
628
+ ### <a href="http://github.com/rspec/rspec-mocks">rspec-mocks</a> v3.4.0
629
+ #### rspec-mocks-3.4.0
643
630
 
644
631
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
645
632
 
646
633
  RSpec's 'test double' framework, with support for stubbing and mocking
647
634
 
635
+ <a name="rspec-support"></a>
636
+ ### <a href="https://github.com/rspec/rspec-support">rspec-support</a> v3.4.1
637
+ #### rspec-support-3.4.1
638
+
639
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
640
+
641
+ Support utilities for RSpec gems
642
+
648
643
  <a name="rubocop"></a>
649
- ### <a href="http://github.com/bbatsov/rubocop">rubocop</a> v0.32.1 (development)
644
+ ### <a href="http://github.com/bbatsov/rubocop">rubocop</a> v0.35.1 (development)
650
645
  #### Automatic Ruby code style checking tool.
651
646
 
652
647
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -656,7 +651,7 @@ RSpec's 'test double' framework, with support for stubbing and mocking
656
651
 
657
652
 
658
653
  <a name="ruby-debug-ide"></a>
659
- ### <a href="https://github.com/ruby-debug/ruby-debug-ide">ruby-debug-ide</a> v0.4.32 (development)
654
+ ### <a href="https://github.com/ruby-debug/ruby-debug-ide">ruby-debug-ide</a> v0.6.0 (development)
660
655
  #### IDE interface for ruby-debug.
661
656
 
662
657
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -675,19 +670,11 @@ The output can be customized with a flexible formatting system including:
675
670
  percentage, bars of various formats, elapsed time and estimated time remaining.
676
671
 
677
672
 
678
- <a name="rubyzip"></a>
679
- ### rubyzip v
680
- ####
681
-
682
- <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
683
-
684
-
685
-
686
673
  <a name="rubyzip"></a>
687
674
  ### <a href="http://github.com/rubyzip/rubyzip">rubyzip</a> v1.1.7
688
675
  #### rubyzip is a ruby module for reading and writing zip files
689
676
 
690
- <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
677
+ <a href="http://opensource.org/licenses/bsd-license">Simplified BSD</a> whitelisted
691
678
 
692
679
 
693
680
 
@@ -716,7 +703,7 @@ A library for downloading data from Salesforce Bulk API. We only focus on queryi
716
703
  MRI+JRuby compatible command output capturing
717
704
 
718
705
  <a name="simplecov"></a>
719
- ### <a href="http://github.com/colszowka/simplecov">simplecov</a> v0.10.0 (development)
706
+ ### <a href="http://github.com/colszowka/simplecov">simplecov</a> v0.11.1 (development)
720
707
  #### Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites
721
708
 
722
709
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
@@ -739,14 +726,6 @@ Default HTML formatter for SimpleCov code coverage tool for ruby 1.9+
739
726
 
740
727
  A simple DSL for gathering options and parsing the command line
741
728
 
742
- <a name="term-ansicolor"></a>
743
- ### <a href="http://flori.github.com/term-ansicolor">term-ansicolor</a> v1.3.2
744
- #### Ruby library that colors strings using ANSI escape sequences
745
-
746
- GPL-2 whitelisted
747
-
748
- This library uses ANSI escape sequences to control the attributes of terminal output
749
-
750
729
  <a name="terminal-table"></a>
751
730
  ### <a href="https://github.com/tj/terminal-table">terminal-table</a> v1.5.2
752
731
  #### Simple, feature rich ascii table generation library
@@ -772,15 +751,37 @@ Thor is a toolkit for building powerful command-line interfaces.
772
751
  Thread-safe collections and utilities for Ruby
773
752
 
774
753
  <a name="tins"></a>
775
- ### <a href="https://github.com/flori/tins">tins</a> v1.5.4
754
+ ### <a href="https://github.com/flori/tins">tins</a> v1.6.0
776
755
  #### Useful stuff.
777
756
 
778
757
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
779
758
 
780
759
  All the stuff that isn't good/big enough for a real library.
781
760
 
761
+ <a name="unf"></a>
762
+ ### <a href="https://github.com/knu/ruby-unf">unf</a> v0.1.4
763
+ #### A wrapper library to bring Unicode Normalization Form support to Ruby/JRuby
764
+
765
+ 2-clause BSDL manually approved
766
+
767
+ >
768
+
769
+ ><cite> 2016-02-22</cite>
770
+
771
+ This is a wrapper library to bring Unicode Normalization Form support
772
+ to Ruby/JRuby.
773
+
774
+
775
+ <a name="unf_ext"></a>
776
+ ### <a href="https://github.com/knu/ruby-unf_ext">unf_ext</a> v0.0.7.1
777
+ #### Unicode Normalization Form support library for CRuby
778
+
779
+ <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
780
+
781
+ Unicode Normalization Form support library for CRuby
782
+
782
783
  <a name="webmock"></a>
783
- ### <a href="http://github.com/bblimke/webmock">webmock</a> v1.21.0 (development)
784
+ ### <a href="http://github.com/bblimke/webmock">webmock</a> v1.22.3 (development)
784
785
  #### Library for stubbing HTTP requests in Ruby.
785
786
 
786
787
  <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted