gooddata 2.1.15-java → 2.1.16-java

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gooddata might be problematic. Click here for more details.

@@ -40,20 +40,22 @@ module GoodData
40
40
  if id == :all
41
41
  tenants_uri = base_uri(domain, data_product)
42
42
  tenants_uri += "?segment=#{CGI.escape(segment.segment_id)}" if segment
43
- Enumerator.new do |y|
44
- loop do
45
- res = client.get tenants_uri
46
- res['clients']['paging']['next']
47
- res['clients']['items'].each do |i|
48
- p = i['client']['project']
49
- tenant = client.create(GoodData::Client, i.merge('domain' => domain))
50
- tenant.project = p
51
- y << tenant
52
- end
53
- url = res['clients']['paging']['next']
54
- break unless url
43
+
44
+ all_clients = []
45
+ loop do
46
+ res = client.get tenants_uri
47
+ res['clients']['paging']['next']
48
+ res['clients']['items'].each do |i|
49
+ p = i['client']['project']
50
+ tenant = client.create(GoodData::Client, i.merge('domain' => domain))
51
+ tenant.project = p
52
+ all_clients << tenant
55
53
  end
54
+ url = res['clients']['paging']['next']
55
+ break unless url
56
56
  end
57
+
58
+ all_clients
57
59
  else
58
60
  id = id.respond_to?(:client_id) ? id.client_id : id
59
61
  tenant_uri = base_uri(domain, data_product)
@@ -18,6 +18,7 @@ module GoodData
18
18
  GENERIC = 'generic'
19
19
  S3 = 's3'
20
20
  ADS = 'ads'
21
+ ERROR_MESSAGE_NO_SCHEMA = 'Data source schema has to be provided'
21
22
 
22
23
  class << self
23
24
  # Get all data sources or get a specify data source from data source identify
@@ -270,6 +271,7 @@ module GoodData
270
271
  @json
271
272
  end
272
273
 
274
+ # Abstract function
273
275
  def validate
274
276
  end
275
277
  end
@@ -347,7 +349,7 @@ module GoodData
347
349
  def validate
348
350
  fail 'Data source url has to be provided' if url.nil? || url.blank?
349
351
  fail 'Data source database has to be provided' if database.nil? || database.blank?
350
- fail 'Data source schema has to be provided' if schema.nil? || schema.blank?
352
+ fail ERROR_MESSAGE_NO_SCHEMA if schema.nil? || schema.blank?
351
353
  fail 'Data source warehouse has to be provided' if warehouse.nil? || warehouse.blank?
352
354
  fail 'Data source username has to be provided' if user_name.nil? || user_name.blank?
353
355
  end
@@ -466,7 +468,7 @@ module GoodData
466
468
  def validate
467
469
  fail 'Data source url has to be provided' if url.nil? || url.blank?
468
470
  fail 'Data source database has to be provided' if database.nil? || database.blank?
469
- fail 'Data source schema has to be provided' if schema.nil? || schema.blank?
471
+ fail ERROR_MESSAGE_NO_SCHEMA if schema.nil? || schema.blank?
470
472
 
471
473
  if basic_authentication
472
474
  fail 'Data source username has to be provided' if user_name.nil? || user_name.blank?
@@ -532,7 +534,7 @@ module GoodData
532
534
  def validate
533
535
  fail 'Data source client email has to be provided' if client_email.nil? || client_email.blank?
534
536
  fail 'Data source project has to be provided' if project.nil? || project.blank?
535
- fail 'Data source schema has to be provided' if schema.nil? || schema.blank?
537
+ fail ERROR_MESSAGE_NO_SCHEMA if schema.nil? || schema.blank?
536
538
  end
537
539
  end
538
540
 
@@ -1,6 +1,6 @@
1
1
  # encoding: UTF-8
2
2
  #
3
- # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved.
3
+ # Copyright (c) 2010-2021 GoodData Corporation. All rights reserved.
4
4
  # This source code is licensed under the BSD-style license found in the
5
5
  # LICENSE file in the root directory of this source tree.
6
6
 
@@ -37,7 +37,8 @@ require_relative 'metadata/scheduled_mail/report_attachment'
37
37
 
38
38
  module GoodData
39
39
  class Project < Rest::Resource
40
- USERSPROJECTS_PATH = '/gdc/account/profile/%s/projects'
40
+ USER_ACCOUNT_PATH = '/gdc/account/profile/'
41
+ USERSPROJECTS_PATH = USER_ACCOUNT_PATH + '%s/projects'
41
42
  PROJECTS_PATH = '/gdc/projects'
42
43
  PROJECT_PATH = '/gdc/projects/%s'
43
44
  SLIS_PATH = '/ldm/singleloadinterface'
@@ -1737,7 +1738,7 @@ module GoodData
1737
1738
  end
1738
1739
  end
1739
1740
  diff_results = diff_results.map do |u|
1740
- u[:login_uri] = "/gdc/account/profile/" + u[:login]
1741
+ u[:login_uri] = USER_ACCOUNT_PATH + u[:login]
1741
1742
  u
1742
1743
  end
1743
1744
  return diff_results if options[:dry_run]
@@ -1973,17 +1974,17 @@ module GoodData
1973
1974
 
1974
1975
  def resolve_roles(login, desired_roles, options = {})
1975
1976
  user = if login.is_a?(String) && login.include?('@')
1976
- '/gdc/account/profile/' + login
1977
+ USER_ACCOUNT_PATH + login
1977
1978
  elsif login.is_a?(String)
1978
1979
  login
1979
1980
  elsif login.is_a?(Hash) && login[:login]
1980
- '/gdc/account/profile/' + login[:login]
1981
+ USER_ACCOUNT_PATH + login[:login]
1981
1982
  elsif login.is_a?(Hash) && login[:uri]
1982
1983
  login[:uri]
1983
1984
  elsif login.respond_to?(:uri) && login.uri
1984
1985
  login.uri
1985
1986
  elsif login.respond_to?(:login) && login.login
1986
- '/gdc/account/profile/' + login.login
1987
+ USER_ACCOUNT_PATH + login.login
1987
1988
  else
1988
1989
  fail "Unsupported user specification #{login}"
1989
1990
  end
@@ -1,6 +1,6 @@
1
1
  # encoding: UTF-8
2
2
  #
3
- # Copyright (c) 2010-2017 GoodData Corporation. All rights reserved.
3
+ # Copyright (c) 2010-2021 GoodData Corporation. All rights reserved.
4
4
  # This source code is licensed under the BSD-style license found in the
5
5
  # LICENSE file in the root directory of this source tree.
6
6
 
@@ -26,6 +26,8 @@ module GoodData
26
26
  class Connection
27
27
  include MonitorMixin
28
28
 
29
+ HTTPS_PROTOCOL = 'https://'
30
+ HTTP_PROTOCOL = 'http://'
29
31
  DEFAULT_URL = 'https://secure.gooddata.com'
30
32
  LOGIN_PATH = '/gdc/account/login'
31
33
  TOKEN_PATH = '/gdc/account/token'
@@ -712,12 +714,12 @@ ERR
712
714
 
713
715
  def fix_server_url(server)
714
716
  server = server.chomp('/')
715
- if server.start_with? 'http://'
716
- server = server.sub 'http://', 'https://'
717
+ if server.start_with? HTTP_PROTOCOL
718
+ server = server.sub HTTP_PROTOCOL, HTTPS_PROTOCOL
717
719
  GoodData.logger.warn 'You specified the HTTP protocol in your server string. It has been autofixed to HTTPS.'
718
720
  end
719
721
 
720
- server = 'https://' + server unless server.start_with? 'https://'
722
+ server = HTTPS_PROTOCOL + server unless server.start_with? HTTPS_PROTOCOL
721
723
  server
722
724
  end
723
725
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gooddata
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.15
4
+ version: 2.1.16
5
5
  platform: java
6
6
  authors:
7
7
  - Pavel Kolesnikov
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2021-02-02 00:00:00.000000000 Z
17
+ date: 2021-04-08 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  requirement: !ruby/object:Gem::Requirement
@@ -246,20 +246,6 @@ dependencies:
246
246
  - - "~>"
247
247
  - !ruby/object:Gem::Version
248
248
  version: '1.1'
249
- - !ruby/object:Gem::Dependency
250
- requirement: !ruby/object:Gem::Requirement
251
- requirements:
252
- - - "~>"
253
- - !ruby/object:Gem::Version
254
- version: '2.7'
255
- name: erubis
256
- prerelease: false
257
- type: :runtime
258
- version_requirements: !ruby/object:Gem::Requirement
259
- requirements:
260
- - - "~>"
261
- - !ruby/object:Gem::Version
262
- version: '2.7'
263
249
  - !ruby/object:Gem::Dependency
264
250
  requirement: !ruby/object:Gem::Requirement
265
251
  requirements:
@@ -526,12 +512,12 @@ files:
526
512
  - ".pronto.yml"
527
513
  - ".rspec"
528
514
  - ".rubocop.yml"
515
+ - ".sonar.settings"
529
516
  - ".travis.yml"
530
517
  - ".yardopts"
531
518
  - CHANGELOG.md
532
519
  - CLI.md
533
520
  - CONTRIBUTING.md
534
- - DEPENDENCIES.md
535
521
  - Dockerfile
536
522
  - Dockerfile.jruby
537
523
  - Dockerfile.ruby
@@ -541,6 +527,8 @@ files:
541
527
  - Jenkinsfile-chart
542
528
  - LICENSE
543
529
  - LICENSE.rb
530
+ - LICENSE_FOR_RUBY_SDK_COMPONENT.txt
531
+ - NOTICES.txt
544
532
  - README.md
545
533
  - RELEASING.md
546
534
  - Rakefile
@@ -561,6 +549,7 @@ files:
561
549
  - bin/users.sh
562
550
  - ci.rake
563
551
  - ci/bigquery/pom.xml
552
+ - ci/postgresql/pom.xml
564
553
  - ci/redshift/pom.xml
565
554
  - ci/snowflake/pom.xml
566
555
  - data/2008.crt
@@ -623,9 +612,11 @@ files:
623
612
  - lib/gooddata/client.rb
624
613
  - lib/gooddata/cloud_resources/bigquery/bigquery_client.rb
625
614
  - lib/gooddata/cloud_resources/bigquery/drivers/.gitkeepme
626
- - lib/gooddata/cloud_resources/cloud_resouce_factory.rb
627
615
  - lib/gooddata/cloud_resources/cloud_resource_client.rb
616
+ - lib/gooddata/cloud_resources/cloud_resource_factory.rb
628
617
  - lib/gooddata/cloud_resources/cloud_resources.rb
618
+ - lib/gooddata/cloud_resources/postgresql/drivers/.gitkeepme
619
+ - lib/gooddata/cloud_resources/postgresql/postgresql_client.rb
629
620
  - lib/gooddata/cloud_resources/redshift/drivers/log4j.properties
630
621
  - lib/gooddata/cloud_resources/redshift/redshift_client.rb
631
622
  - lib/gooddata/cloud_resources/snowflake/drivers/.gitkeepme
@@ -931,7 +922,7 @@ files:
931
922
  - yard-server.sh
932
923
  homepage: http://github.com/gooddata/gooddata-ruby
933
924
  licenses:
934
- - BSD
925
+ - BSD-3-Clause
935
926
  metadata: {}
936
927
  post_install_message:
937
928
  rdoc_options: []
data/DEPENDENCIES.md DELETED
@@ -1,880 +0,0 @@
1
- # gooddata-ruby
2
-
3
- As of November 3, 2017 1:34pm. 85 total
4
-
5
- ## Summary
6
- * 62 MIT
7
- * 11 Apache 2.0
8
- * 6 ruby
9
- * 2 New BSD
10
- * 2 BSD
11
- * 1 2-clause BSDL
12
- * 1 Mozilla Public License 2.0, New BSD, Simplified BSD
13
-
14
-
15
- ## Action
16
- 4 *unapproved*
17
-
18
- * <a href="#unf">unf</a> (2-clause BSDL)
19
- * <a href="#domain_name">domain_name</a> (Mozilla Public License 2.0, New BSD, Simplified BSD)
20
- * <a href="#ffi">ffi</a> (New BSD)
21
- * <a href="#gooddata-dss-jdbc">gooddata-dss-jdbc</a> (New BSD)
22
-
23
-
24
- ## Items
25
-
26
-
27
- <a name="ZenTest"></a>
28
- ### <a href="https://github.com/seattlerb/zentest">ZenTest</a> v4.11.1 (development)
29
- #### ZenTest provides 4 different tools: zentest, unit_diff, autotest, and multiruby
30
-
31
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
32
-
33
- ZenTest provides 4 different tools: zentest, unit_diff, autotest, and
34
- multiruby.
35
-
36
- zentest scans your target and unit-test code and writes your missing
37
- code based on simple naming rules, enabling XP at a much quicker pace.
38
- zentest only works with Ruby and Minitest or Test::Unit. There is
39
- enough evidence to show that this is still proving useful to users, so
40
- it stays.
41
-
42
- unit_diff is a command-line filter to diff expected results from
43
- actual results and allow you to quickly see exactly what is wrong.
44
- Do note that minitest 2.2+ provides an enhanced assert_equal obviating
45
- the need for unit_diff
46
-
47
- autotest is a continous testing facility meant to be used during
48
- development. As soon as you save a file, autotest will run the
49
- corresponding dependent tests.
50
-
51
- multiruby runs anything you want on multiple versions of ruby. Great
52
- for compatibility checking! Use multiruby_setup to manage your
53
- installed versions.
54
-
55
- *NOTE:* The next major release of zentest will not include autotest
56
- (use minitest-autotest instead) and multiruby will use rbenv /
57
- ruby-build for version management.
58
-
59
- <a name="activesupport"></a>
60
- ### <a href="http://www.rubyonrails.org">activesupport</a> v4.2.10 (development)
61
- #### A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.
62
-
63
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
64
-
65
- A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.
66
-
67
- <a name="addressable"></a>
68
- ### <a href="https://github.com/sporkmonger/addressable">addressable</a> v2.5.0
69
- #### URI Implementation
70
-
71
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
72
-
73
- Addressable is a replacement for the URI implementation that is part of
74
- Ruby's standard library. It more closely conforms to the relevant RFCs and
75
- adds support for IRIs and URI templates.
76
-
77
-
78
- <a name="ast"></a>
79
- ### <a href="https://whitequark.github.io/ast/">ast</a> v2.3.0
80
- #### A library for working with Abstract Syntax Trees.
81
-
82
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
83
-
84
- A library for working with Abstract Syntax Trees.
85
-
86
- <a name="aws-sdk"></a>
87
- ### <a href="http://github.com/aws/aws-sdk-ruby">aws-sdk</a> v2.10.76
88
- #### AWS SDK for Ruby
89
-
90
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
91
-
92
- The official AWS SDK for Ruby. Provides both resource oriented interfaces and API clients for AWS services.
93
-
94
- <a name="aws-sdk-core"></a>
95
- ### <a href="http://github.com/aws/aws-sdk-ruby">aws-sdk-core</a> v2.10.76
96
- #### AWS SDK for Ruby - Core
97
-
98
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
99
-
100
- Provides API clients for AWS. This gem is part of the official AWS SDK for Ruby.
101
-
102
- <a name="aws-sdk-resources"></a>
103
- ### <a href="http://github.com/aws/aws-sdk-ruby">aws-sdk-resources</a> v2.10.76
104
- #### AWS SDK for Ruby - Resources
105
-
106
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
107
-
108
- Provides resource oriented interfaces and other higher-level abstractions for many AWS services. This gem is part of the official AWS SDK for Ruby.
109
-
110
- <a name="aws-sigv4"></a>
111
- ### <a href="http://github.com/aws/aws-sdk-ruby">aws-sigv4</a> v1.0.2
112
- #### AWS Signature Version 4 library.
113
-
114
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
115
-
116
- Amazon Web Services Signature Version 4 signing ligrary. Generates sigv4 signature for HTTP requests.
117
-
118
- <a name="backports"></a>
119
- ### <a href="http://github.com/marcandre/backports">backports</a> v3.10.3
120
- #### Backports of Ruby features for older Ruby.
121
-
122
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
123
-
124
- Essential backports that enable many of the nice features of Ruby 1.8.7 up to 2.1.0 for earlier versions.
125
-
126
- <a name="bundler"></a>
127
- ### <a href="http://bundler.io">bundler</a> v1.15.4 (development)
128
- #### The best way to manage your application's dependencies
129
-
130
- <a href="http://opensource.org/licenses/mit-license">MIT</a> manually approved
131
-
132
- >
133
-
134
- ><cite> 2015-08-03</cite>
135
-
136
- Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably
137
-
138
- <a name="coderay"></a>
139
- ### <a href="http://coderay.rubychan.de">coderay</a> v1.1.1
140
- #### Fast syntax highlighting for selected languages.
141
-
142
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
143
-
144
- Fast and easy syntax highlighting for selected languages, written in Ruby. Comes with RedCloth integration and LOC counter.
145
-
146
- <a name="colored"></a>
147
- ### colored v
148
- ####
149
-
150
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
151
-
152
-
153
-
154
- <a name="colored"></a>
155
- ### <a href="http://github.com/defunkt/colored">colored</a> v1.2
156
- #### Add some color to your life.
157
-
158
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
159
-
160
- >> puts "this is red".red
161
-
162
- >> puts "this is red with a blue background (read: ugly)".red_on_blue
163
-
164
- >> puts "this is red with an underline".red.underline
165
-
166
- >> puts "this is really bold and really blue".bold.blue
167
-
168
- >> logger.debug "hey this is broken!".red_on_yellow # in rails
169
-
170
- >> puts Color.red "This is red" # but this part is mostly untested
171
-
172
-
173
- <a name="concurrent-ruby"></a>
174
- ### <a href="http://www.concurrent-ruby.com">concurrent-ruby</a> v1.0.5
175
- #### Modern concurrency tools for Ruby. Inspired by Erlang, Clojure, Scala, Haskell, F#, C#, Java, and classic concurrency patterns.
176
-
177
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
178
-
179
- Modern concurrency tools including agents, futures, promises, thread pools, actors, supervisors, and more.
180
- Inspired by Erlang, Clojure, Go, JavaScript, actors, and classic concurrency patterns.
181
-
182
-
183
- <a name="crack"></a>
184
- ### <a href="http://github.com/jnunemaker/crack">crack</a> v0.4.3
185
- #### Really simple JSON and XML parsing, ripped from Merb and Rails.
186
-
187
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
188
-
189
- Really simple JSON and XML parsing, ripped from Merb and Rails.
190
-
191
- <a name="diff-lcs"></a>
192
- ### diff-lcs v
193
- ####
194
-
195
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
196
-
197
-
198
-
199
- <a name="diff-lcs"></a>
200
- ### <a href="https://github.com/halostatue/diff-lcs">diff-lcs</a> v1.3
201
- #### Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm
202
-
203
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
204
-
205
- Diff::LCS computes the difference between two Enumerable sequences using the
206
- McIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities
207
- to create a simple HTML diff output format and a standard diff-like tool.
208
-
209
- This is release 1.3, providing a tentative fix to a long-standing issue related
210
- to incorrect detection of a patch direction. Also modernizes the gem
211
- infrastructure, testing infrastructure, and provides a warning-free experience
212
- to Ruby 2.4 users.
213
-
214
- <a name="docile"></a>
215
- ### <a href="https://ms-ati.github.io/docile/">docile</a> v1.1.5
216
- #### Docile keeps your Ruby DSLs tame and well-behaved
217
-
218
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
219
-
220
- Docile turns any Ruby object into a DSL. Especially useful with the Builder pattern.
221
-
222
- <a name="domain_name"></a>
223
- ### <a href="https://github.com/knu/ruby-domain_name">domain_name</a> v0.5.20170404
224
- #### Domain Name manipulation library for Ruby
225
-
226
- <a href="http://opensource.org/licenses/bsd-license">Simplified BSD</a>, <a href="http://opensource.org/licenses/BSD-3-Clause">New BSD</a>, <a href="https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt">Mozilla Public License 2.0</a> _**unapproved**_
227
-
228
- This is a Domain Name manipulation library for Ruby.
229
-
230
- It can also be used for cookie domain validation based on the Public
231
- Suffix List.
232
-
233
-
234
- <a name="erubis"></a>
235
- ### <a href="http://www.kuwata-lab.com/erubis/">erubis</a> v2.7.0
236
- #### a fast and extensible eRuby implementation which supports multi-language
237
-
238
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
239
-
240
- Erubis is an implementation of eRuby and has the following features:
241
-
242
- * Very fast, almost three times faster than ERB and about 10% faster than eruby.
243
- * Multi-language support (Ruby/PHP/C/Java/Scheme/Perl/Javascript)
244
- * Auto escaping support
245
- * Auto trimming spaces around '<% %>'
246
- * Embedded pattern changeable (default '<% %>')
247
- * Enable to handle Processing Instructions (PI) as embedded pattern (ex. '<?rb ... ?>')
248
- * Context object available and easy to combine eRuby template with YAML datafile
249
- * Print statement available
250
- * Easy to extend and customize in subclass
251
- * Ruby on Rails support
252
-
253
-
254
- <a name="faraday"></a>
255
- ### <a href="https://github.com/lostisland/faraday">faraday</a> v0.13.1
256
- #### HTTP/REST API client library.
257
-
258
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
259
-
260
-
261
-
262
- <a name="faraday_middleware"></a>
263
- ### <a href="https://github.com/lostisland/faraday_middleware">faraday_middleware</a> v0.12.2
264
- #### Various middleware for Faraday
265
-
266
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
267
-
268
-
269
-
270
- <a name="ffi"></a>
271
- ### <a href="http://wiki.github.com/ffi/ffi">ffi</a> v1.9.18
272
- #### Ruby FFI
273
-
274
- <a href="http://opensource.org/licenses/BSD-3-Clause">New BSD</a> _**unapproved**_
275
-
276
- Ruby FFI library
277
-
278
- <a name="gli"></a>
279
- ### <a href="http://davetron5000.github.com/gli">gli</a> v2.17.0
280
- #### Build command-suite CLI apps that are awesome.
281
-
282
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
283
-
284
- 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
285
-
286
- <a name="gooddata"></a>
287
- ### <a href="http://github.com/gooddata/gooddata-ruby">gooddata</a> v0.6.54 (default)
288
- #### A convenient Ruby wrapper around the GoodData RESTful API
289
-
290
- <a href="http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29">BSD</a> whitelisted
291
-
292
- 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.
293
-
294
- <a name="gooddata-dss-jdbc"></a>
295
- ### <a href="http://github.com/gooddata/gooddata-dss-ruby">gooddata-dss-jdbc</a> v0.1.12
296
- #### A minimal Ruby wrapper of the GoodData DSS JDBC driver
297
-
298
- <a href="http://opensource.org/licenses/BSD-3-Clause">New BSD</a> _**unapproved**_
299
-
300
- Starting with DSS is as easy as require 'jdbc/dss'; Jdbc::DSS.load_driver.
301
- Install dss-sequel for a Sequelish wrapper"
302
-
303
-
304
- <a name="gooddata_datawarehouse"></a>
305
- ### gooddata_datawarehouse v0.0.8
306
- #### Convenient work with GoodData's Datawarehouse (ADS)
307
-
308
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
309
-
310
-
311
-
312
- <a name="hashdiff"></a>
313
- ### <a href="https://github.com/liufengyun/hashdiff">hashdiff</a> v0.3.2
314
- #### HashDiff is a diff lib to compute the smallest difference between two hashes.
315
-
316
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
317
-
318
- HashDiff is a diff lib to compute the smallest difference between two hashes.
319
-
320
- <a name="hashie"></a>
321
- ### <a href="https://github.com/intridea/hashie">hashie</a> v3.5.6
322
- #### Your friendly neighborhood hash library.
323
-
324
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
325
-
326
- Hashie is a collection of classes and mixins that make hashes more powerful.
327
-
328
- <a name="highline"></a>
329
- ### <a href="https://github.com/JEG2/highline">highline</a> v1.7.8
330
- #### HighLine is a high-level command-line IO library.
331
-
332
- <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
333
-
334
- A high-level IO library that provides validation, type conversion, and more for
335
- command-line interfaces. HighLine also includes a complete menu system that can
336
- crank out anything from simple list selection to complete shells with just
337
- minutes of work.
338
-
339
-
340
- <a name="http-cookie"></a>
341
- ### <a href="https://github.com/sparklemotion/http-cookie">http-cookie</a> v1.0.3
342
- #### A Ruby library to handle HTTP Cookies based on RFC 6265
343
-
344
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
345
-
346
- 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.
347
-
348
- <a name="httparty"></a>
349
- ### <a href="http://jnunemaker.github.com/httparty">httparty</a> v0.14.0
350
- #### Makes http fun! Also, makes consuming restful web services dead easy.
351
-
352
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
353
-
354
- Makes http fun! Also, makes consuming restful web services dead easy.
355
-
356
- <a name="i18n"></a>
357
- ### <a href="http://github.com/svenfuchs/i18n">i18n</a> v0.9.0
358
- #### New wave Internationalization support for Ruby
359
-
360
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
361
-
362
- New wave Internationalization support for Ruby.
363
-
364
- <a name="jmespath"></a>
365
- ### <a href="http://github.com/trevorrowe/jmespath.rb">jmespath</a> v1.3.1
366
- #### JMESPath - Ruby Edition
367
-
368
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
369
-
370
- Implements JMESPath for Ruby
371
-
372
- <a name="json"></a>
373
- ### <a href="http://json-jruby.rubyforge.org/">json</a> v1.8.6
374
- #### JSON implementation for JRuby
375
-
376
- <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
377
-
378
- A JSON implementation as a JRuby extension.
379
-
380
- <a name="json_pure"></a>
381
- ### <a href="http://flori.github.com/json">json_pure</a> v1.8.6
382
- #### JSON Implementation for Ruby
383
-
384
- <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
385
-
386
- This is a JSON implementation in pure Ruby.
387
-
388
- <a name="license_finder"></a>
389
- ### <a href="https://github.com/pivotal/LicenseFinder">license_finder</a> v2.1.2 (development)
390
- #### Audit the OSS licenses of your application's dependencies.
391
-
392
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
393
-
394
- LicenseFinder works with your package managers to find
395
- dependencies, detect the licenses of the packages in them, compare
396
- those licenses against a user-defined whitelist, and give you an
397
- actionable exception report.
398
-
399
-
400
- <a name="method_source"></a>
401
- ### <a href="http://banisterfiend.wordpress.com">method_source</a> v0.8.2
402
- #### retrieve the sourcecode for a method
403
-
404
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
405
-
406
- retrieve the sourcecode for a method
407
-
408
- <a name="mime-types"></a>
409
- ### mime-types v
410
- ####
411
-
412
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
413
-
414
-
415
-
416
- <a name="mime-types"></a>
417
- ### <a href="https://github.com/mime-types/ruby-mime-types/">mime-types</a> v3.1
418
- #### The mime-types library provides a library and registry for information about MIME content type definitions
419
-
420
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
421
-
422
- The mime-types library provides a library and registry for information about
423
- MIME content type definitions. It can be used to determine defined filename
424
- extensions for MIME types, or to use filename extensions to look up the likely
425
- MIME type definitions.
426
-
427
- Version 3.0 is a major release that requires Ruby 2.0 compatibility and removes
428
- deprecated functions. The columnar registry format introduced in 2.6 has been
429
- made the primary format; the registry data has been extracted from this library
430
- and put into {mime-types-data}[https://github.com/mime-types/mime-types-data].
431
- Additionally, mime-types is now licensed exclusively under the MIT licence and
432
- there is a code of conduct in effect. There are a number of other smaller
433
- changes described in the History file.
434
-
435
- <a name="mime-types-data"></a>
436
- ### <a href="https://github.com/mime-types/mime-types-data/">mime-types-data</a> v3.2016.0521
437
- #### mime-types-data provides a registry for information about MIME media type definitions
438
-
439
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
440
-
441
- mime-types-data provides a registry for information about MIME media type
442
- definitions. It can be used with the Ruby mime-types library or other software
443
- to determine defined filename extensions for MIME types, or to use filename
444
- extensions to look up the likely MIME type definitions.
445
-
446
- <a name="minitest"></a>
447
- ### <a href="https://github.com/seattlerb/minitest">minitest</a> v5.10.3
448
- #### minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking
449
-
450
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
451
-
452
- minitest provides a complete suite of testing facilities supporting
453
- TDD, BDD, mocking, and benchmarking.
454
-
455
- "I had a class with Jim Weirich on testing last week and we were
456
- allowed to choose our testing frameworks. Kirk Haines and I were
457
- paired up and we cracked open the code for a few test
458
- frameworks...
459
-
460
- I MUST say that minitest is *very* readable / understandable
461
- compared to the 'other two' options we looked at. Nicely done and
462
- thank you for helping us keep our mental sanity."
463
-
464
- -- Wayne E. Seguin
465
-
466
- minitest/test is a small and incredibly fast unit testing framework.
467
- It provides a rich set of assertions to make your tests clean and
468
- readable.
469
-
470
- minitest/spec is a functionally complete spec engine. It hooks onto
471
- minitest/test and seamlessly bridges test assertions over to spec
472
- expectations.
473
-
474
- minitest/benchmark is an awesome way to assert the performance of your
475
- algorithms in a repeatable manner. Now you can assert that your newb
476
- co-worker doesn't replace your linear algorithm with an exponential
477
- one!
478
-
479
- minitest/mock by Steven Baker, is a beautifully tiny mock (and stub)
480
- object framework.
481
-
482
- minitest/pride shows pride in testing and adds coloring to your test
483
- output. I guess it is an example of how to write IO pipes too. :P
484
-
485
- minitest/test is meant to have a clean implementation for language
486
- implementors that need a minimal set of methods to bootstrap a working
487
- test suite. For example, there is no magic involved for test-case
488
- discovery.
489
-
490
- "Again, I can't praise enough the idea of a testing/specing
491
- framework that I can actually read in full in one sitting!"
492
-
493
- -- Piotr Szotkowski
494
-
495
- Comparing to rspec:
496
-
497
- rspec is a testing DSL. minitest is ruby.
498
-
499
- -- Adam Hawkins, "Bow Before MiniTest"
500
-
501
- minitest doesn't reinvent anything that ruby already provides, like:
502
- classes, modules, inheritance, methods. This means you only have to
503
- learn ruby to use minitest and all of your regular OO practices like
504
- extract-method refactorings still apply.
505
-
506
- <a name="multi_json"></a>
507
- ### <a href="http://github.com/intridea/multi_json">multi_json</a> v1.12.2
508
- #### A common interface to multiple JSON libraries.
509
-
510
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
511
-
512
- A common interface to multiple JSON libraries, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, NSJSONSerialization, gson.rb, JrJackson, and OkJson.
513
-
514
- <a name="multi_xml"></a>
515
- ### <a href="https://github.com/sferik/multi_xml">multi_xml</a> v0.6.0
516
- #### A generic swappable back-end for XML parsing
517
-
518
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
519
-
520
- Provides swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML.
521
-
522
- <a name="multipart-post"></a>
523
- ### <a href="https://github.com/nicksieger/multipart-post">multipart-post</a> v2.0.0
524
- #### A multipart form post accessory for Net::HTTP.
525
-
526
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
527
-
528
- Use with Net::HTTP to do multipart form posts. IO values that have #content_type, #original_filename, and #local_path will be posted as a binary file.
529
-
530
- <a name="netrc"></a>
531
- ### <a href="https://github.com/geemus/netrc">netrc</a> v0.11.0
532
- #### Library to read and write netrc files.
533
-
534
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
535
-
536
- This library can read and update netrc files, preserving formatting including comments and whitespace.
537
-
538
- <a name="parseconfig"></a>
539
- ### <a href="http://github.com/datafolklabs/ruby-parseconfig/">parseconfig</a> v1.0.8
540
- #### Config File Parser for Standard Unix/Linux Type Config Files
541
-
542
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
543
-
544
- ParseConfig provides simple parsing of standard configuration files in the form of 'param = value'. It also supports nested [group] sections.
545
-
546
- <a name="parser"></a>
547
- ### <a href="https://github.com/whitequark/parser">parser</a> v2.4.0.0
548
- #### A Ruby parser written in pure Ruby.
549
-
550
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
551
-
552
- A Ruby parser written in pure Ruby.
553
-
554
- <a name="pmap"></a>
555
- ### pmap v
556
- ####
557
-
558
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
559
-
560
-
561
-
562
- <a name="pmap"></a>
563
- ### <a href="https://github.com/bruceadams/pmap">pmap</a> v1.1.1
564
- #### Add parallel methods into Enumerable: pmap and peach
565
-
566
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
567
-
568
- Add parallel methods into Enumerable: pmap and peach
569
-
570
- <a name="powerpack"></a>
571
- ### <a href="https://github.com/bbatsov/powerpack">powerpack</a> v0.1.1
572
- #### A few useful extensions to core Ruby classes.
573
-
574
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
575
-
576
- A few useful extensions to core Ruby classes.
577
-
578
- <a name="pry"></a>
579
- ### <a href="http://pryrepl.org">pry</a> v0.10.4 (development)
580
- #### An IRB alternative and runtime developer console
581
-
582
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
583
-
584
- An IRB alternative and runtime developer console
585
-
586
- <a name="public_suffix"></a>
587
- ### <a href="https://simonecarletti.com/code/publicsuffix-ruby">public_suffix</a> v2.0.5
588
- #### Domain name parser based on the Public Suffix List.
589
-
590
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
591
-
592
- PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains.
593
-
594
- <a name="rainbow"></a>
595
- ### <a href="https://github.com/sickill/rainbow">rainbow</a> v2.2.1
596
- #### Colorize printed text on ANSI terminals
597
-
598
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
599
-
600
- Colorize printed text on ANSI terminals
601
-
602
- <a name="rake"></a>
603
- ### rake v
604
- ####
605
-
606
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
607
-
608
-
609
-
610
- <a name="rake"></a>
611
- ### <a href="https://github.com/ruby/rake">rake</a> v11.3.0 (development)
612
- #### Rake is a Make-like program implemented in Ruby
613
-
614
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
615
-
616
- Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
617
- specified in standard Ruby syntax.
618
-
619
- Rake has the following features:
620
-
621
- * Rakefiles (rake's version of Makefiles) are completely defined in
622
- standard Ruby syntax. No XML files to edit. No quirky Makefile
623
- syntax to worry about (is that a tab or a space?)
624
-
625
- * Users can specify tasks with prerequisites.
626
-
627
- * Rake supports rule patterns to synthesize implicit tasks.
628
-
629
- * Flexible FileLists that act like arrays but know about manipulating
630
- file names and paths.
631
-
632
- * A library of prepackaged tasks to make building rakefiles easier. For example,
633
- tasks for building tarballs and publishing to FTP or SSH sites. (Formerly
634
- tasks for building RDoc and Gems were included in rake but they're now
635
- available in RDoc and RubyGems respectively.)
636
-
637
- * Supports parallel execution of tasks.
638
-
639
- <a name="rake-notes"></a>
640
- ### <a href="https://github.com/fgrehm/rake-notes">rake-notes</a> v0.2.0 (development)
641
- #### rake notes task for non-Rails' projects
642
-
643
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
644
-
645
- rake notes task for non-Rails' projects
646
-
647
- <a name="rest-client"></a>
648
- ### <a href="https://github.com/rest-client/rest-client">rest-client</a> v2.0.2
649
- #### Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.
650
-
651
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
652
-
653
- A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.
654
-
655
- <a name="restforce"></a>
656
- ### <a href="http://restforce.org/">restforce</a> v2.5.3
657
- #### A lightweight ruby client for the Salesforce REST API.
658
-
659
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
660
-
661
- A lightweight ruby client for the Salesforce REST API.
662
-
663
- <a name="rspec"></a>
664
- ### <a href="http://github.com/rspec">rspec</a> v3.5.0 (development)
665
- #### rspec-3.5.0
666
-
667
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
668
-
669
- BDD for Ruby
670
-
671
- <a name="rspec-core"></a>
672
- ### <a href="https://github.com/rspec/rspec-core">rspec-core</a> v3.5.4
673
- #### rspec-core-3.5.4
674
-
675
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
676
-
677
- BDD for Ruby. RSpec runner and example groups.
678
-
679
- <a name="rspec-expectations"></a>
680
- ### <a href="https://github.com/rspec/rspec-expectations">rspec-expectations</a> v3.5.0 (development)
681
- #### rspec-expectations-3.5.0
682
-
683
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
684
-
685
- rspec-expectations provides a simple, readable API to express expected outcomes of a code example.
686
-
687
- <a name="rspec-mocks"></a>
688
- ### <a href="https://github.com/rspec/rspec-mocks">rspec-mocks</a> v3.5.0
689
- #### rspec-mocks-3.5.0
690
-
691
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
692
-
693
- RSpec's 'test double' framework, with support for stubbing and mocking
694
-
695
- <a name="rspec-support"></a>
696
- ### <a href="https://github.com/rspec/rspec-support">rspec-support</a> v3.5.0
697
- #### rspec-support-3.5.0
698
-
699
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
700
-
701
- Support utilities for RSpec gems
702
-
703
- <a name="rubocop"></a>
704
- ### <a href="http://github.com/bbatsov/rubocop">rubocop</a> v0.47.1 (development)
705
- #### Automatic Ruby code style checking tool.
706
-
707
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
708
-
709
- Automatic Ruby code style checking tool.
710
- Aims to enforce the community-driven Ruby Style Guide.
711
-
712
-
713
- <a name="ruby-progressbar"></a>
714
- ### <a href="https://github.com/jfelchner/ruby-progressbar">ruby-progressbar</a> v1.8.1
715
- #### Ruby/ProgressBar is a flexible text progress bar library for Ruby.
716
-
717
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
718
-
719
- Ruby/ProgressBar is an extremely flexible text progress bar library for Ruby.
720
- The output can be customized with a flexible formatting system including:
721
- percentage, bars of various formats, elapsed time and estimated time remaining.
722
-
723
-
724
- <a name="rubyzip"></a>
725
- ### rubyzip v
726
- ####
727
-
728
- <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
729
-
730
-
731
-
732
- <a name="rubyzip"></a>
733
- ### <a href="http://github.com/rubyzip/rubyzip">rubyzip</a> v1.2.1
734
- #### rubyzip is a ruby module for reading and writing zip files
735
-
736
- <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
737
-
738
-
739
-
740
- <a name="safe_yaml"></a>
741
- ### <a href="https://github.com/dtao/safe_yaml">safe_yaml</a> v1.0.4
742
- #### SameYAML provides an alternative implementation of YAML.load suitable for accepting user input in Ruby applications.
743
-
744
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
745
-
746
- Parse YAML safely
747
-
748
- <a name="salesforce_bulk_query"></a>
749
- ### <a href="https://github.com/cvengros/salesforce_bulk_query">salesforce_bulk_query</a> v0.2.0
750
- #### Downloading data from Salesforce Bulk API made easy and scalable.
751
-
752
- <a href="http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29">BSD</a> whitelisted
753
-
754
- A library for downloading data from Salesforce Bulk API. We only focus on querying, other operations of the API aren't supported. Designed to handle a lot of data.
755
-
756
- <a name="sequel"></a>
757
- ### <a href="http://sequel.jeremyevans.net">sequel</a> v4.49.0
758
- #### The Database Toolkit for Ruby
759
-
760
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
761
-
762
- The Database Toolkit for Ruby
763
-
764
- <a name="simplecov"></a>
765
- ### <a href="http://github.com/colszowka/simplecov">simplecov</a> v0.13.0 (development)
766
- #### Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites
767
-
768
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
769
-
770
- Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites
771
-
772
- <a name="simplecov-html"></a>
773
- ### <a href="https://github.com/colszowka/simplecov-html">simplecov-html</a> v0.10.0
774
- #### Default HTML formatter for SimpleCov code coverage tool for ruby 1.9+
775
-
776
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
777
-
778
- Default HTML formatter for SimpleCov code coverage tool for ruby 1.9+
779
-
780
- <a name="slop"></a>
781
- ### <a href="http://github.com/leejarvis/slop">slop</a> v3.6.0
782
- #### Simple Lightweight Option Parsing
783
-
784
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
785
-
786
- A simple DSL for gathering options and parsing the command line
787
-
788
- <a name="spoon"></a>
789
- ### spoon v0.0.6
790
- #### Spoon is an FFI binding of the posix_spawn function (and Windows equivalent), providing fork+exec functionality in a single shot.
791
-
792
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
793
-
794
- Spoon is an FFI binding of the posix_spawn function (and Windows equivalent), providing fork+exec functionality in a single shot.
795
-
796
- <a name="terminal-table"></a>
797
- ### <a href="https://github.com/tj/terminal-table">terminal-table</a> v1.8.0
798
- #### Simple, feature rich ascii table generation library
799
-
800
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
801
-
802
-
803
-
804
- <a name="thor"></a>
805
- ### <a href="http://whatisthor.com/">thor</a> v0.19.4
806
- #### Thor is a toolkit for building powerful command-line interfaces.
807
-
808
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
809
-
810
- Thor is a toolkit for building powerful command-line interfaces.
811
-
812
- <a name="thread_safe"></a>
813
- ### <a href="https://github.com/ruby-concurrency/thread_safe">thread_safe</a> v0.3.6
814
- #### Thread-safe collections and utilities for Ruby
815
-
816
- <a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
817
-
818
- A collection of data structures and utilities to make thread-safe programming in Ruby easier
819
-
820
- <a name="tzinfo"></a>
821
- ### <a href="http://tzinfo.github.io">tzinfo</a> v1.2.4
822
- #### Daylight savings aware timezone library
823
-
824
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
825
-
826
- TZInfo provides daylight savings aware transformations between times in different time zones.
827
-
828
- <a name="unf"></a>
829
- ### <a href="https://github.com/knu/ruby-unf">unf</a> v0.1.4
830
- #### A wrapper library to bring Unicode Normalization Form support to Ruby/JRuby
831
-
832
- 2-clause BSDL _**unapproved**_
833
-
834
- This is a wrapper library to bring Unicode Normalization Form support
835
- to Ruby/JRuby.
836
-
837
-
838
- <a name="unicode-display_width"></a>
839
- ### <a href="http://github.com/janlelis/unicode-display_width">unicode-display_width</a> v1.1.3
840
- #### Determines the monospace display width of a string in Ruby.
841
-
842
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
843
-
844
- [Unicode 9.0.0] Determines the monospace display width of a string using EastAsianWidth.txt, Unicode general category, and other data.
845
-
846
- <a name="webmock"></a>
847
- ### <a href="http://github.com/bblimke/webmock">webmock</a> v1.24.6 (development)
848
- #### Library for stubbing HTTP requests in Ruby.
849
-
850
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
851
-
852
- WebMock allows stubbing HTTP requests and setting expectations on HTTP requests.
853
-
854
- <a name="xml-simple"></a>
855
- ### <a href="https://github.com/maik/xml-simple">xml-simple</a> v1.1.5
856
- #### A simple API for XML processing.
857
-
858
- <a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
859
-
860
-
861
-
862
- <a name="yard"></a>
863
- ### <a href="http://yardoc.org">yard</a> v0.9.8 (development)
864
- #### Documentation tool for consistent and usable documentation in Ruby.
865
-
866
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
867
-
868
- YARD is a documentation generation tool for the Ruby programming language.
869
- It enables the user to generate consistent, usable documentation that can be
870
- exported to a number of formats very easily, and also supports extending for
871
- custom Ruby constructs such as custom class level definitions.
872
-
873
-
874
- <a name="yard-rspec"></a>
875
- ### <a href="http://yardoc.org">yard-rspec</a> v0.1 (development)
876
- #### YARD plugin to list RSpec specifications inside documentation
877
-
878
- <a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
879
-
880
-