gooddata 0.6.53 → 0.6.54
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.flayignore +6 -0
- data/.gitignore +1 -0
- data/.pronto.yml +3 -0
- data/.rspec +2 -0
- data/.rubocop.yml +4 -1
- data/CHANGELOG.md +18 -0
- data/CONTRIBUTING.md +14 -1
- data/DEPENDENCIES.md +324 -253
- data/Dockerfile.jruby +5 -7
- data/Dockerfile.ruby +8 -8
- data/Rakefile +24 -0
- data/ci.rake +47 -0
- data/docker-compose.yml +34 -0
- data/gooddata.gemspec +8 -2
- data/lib/gooddata/bricks/middleware/restforce_middleware.rb +0 -3
- data/lib/gooddata/helpers/data_helper.rb +10 -7
- data/lib/gooddata/helpers/global_helpers_params.rb +8 -3
- data/lib/gooddata/lcm/actions/apply_custom_maql.rb +2 -1
- data/lib/gooddata/lcm/actions/associate_clients.rb +10 -1
- data/lib/gooddata/lcm/actions/collect_client_projects.rb +78 -0
- data/lib/gooddata/lcm/actions/collect_clients.rb +20 -6
- data/lib/gooddata/lcm/actions/collect_data_product.rb +62 -0
- data/lib/gooddata/lcm/actions/collect_dynamic_schedule_params.rb +62 -0
- data/lib/gooddata/lcm/actions/{collect_attrs.rb → collect_ldm_objects.rb} +3 -3
- data/lib/gooddata/lcm/actions/collect_meta.rb +6 -3
- data/lib/gooddata/lcm/actions/collect_segment_clients.rb +2 -1
- data/lib/gooddata/lcm/actions/collect_segments.rb +6 -7
- data/lib/gooddata/lcm/actions/collect_tagged_objects.rb +7 -4
- data/lib/gooddata/lcm/actions/create_segment_masters.rb +7 -3
- data/lib/gooddata/lcm/actions/ensure_data_product.rb +53 -0
- data/lib/gooddata/lcm/actions/ensure_technical_users_domain.rb +6 -2
- data/lib/gooddata/lcm/actions/ensure_technical_users_project.rb +30 -18
- data/lib/gooddata/lcm/actions/execute_schedules.rb +128 -0
- data/lib/gooddata/lcm/actions/provision_clients.rb +32 -21
- data/lib/gooddata/lcm/actions/purge_clients.rb +25 -39
- data/lib/gooddata/lcm/actions/rename_existing_client_projects.rb +70 -0
- data/lib/gooddata/lcm/actions/segments_filter.rb +6 -0
- data/lib/gooddata/lcm/actions/synchronize_cas.rb +11 -0
- data/lib/gooddata/lcm/actions/synchronize_clients.rb +2 -1
- data/lib/gooddata/lcm/actions/synchronize_etls_in_segment.rb +34 -15
- data/lib/gooddata/lcm/actions/synchronize_ldm.rb +10 -1
- data/lib/gooddata/lcm/actions/synchronize_new_segments.rb +2 -1
- data/lib/gooddata/lcm/actions/synchronize_processes.rb +4 -7
- data/lib/gooddata/lcm/actions/synchronize_tag_objects.rb +8 -5
- data/lib/gooddata/lcm/actions/synchronize_user_filters.rb +224 -0
- data/lib/gooddata/lcm/actions/synchronize_user_groups.rb +53 -0
- data/lib/gooddata/lcm/actions/synchronize_users.rb +324 -0
- data/lib/gooddata/lcm/dsl/type_dsl.rb +1 -0
- data/lib/gooddata/lcm/helpers/check_helper.rb +4 -0
- data/lib/gooddata/lcm/helpers/tags_helper.rb +4 -3
- data/lib/gooddata/lcm/lcm2.rb +33 -1
- data/lib/gooddata/lcm/types/complex/segment.rb +3 -0
- data/lib/gooddata/lcm/types/complex/update_preference.rb +8 -2
- data/lib/gooddata/lcm/types/special/array.rb +1 -3
- data/lib/gooddata/lcm/types/special/enum.rb +1 -3
- data/lib/gooddata/mixins/md_id_to_uri.rb +0 -1
- data/lib/gooddata/mixins/md_json.rb +2 -2
- data/lib/gooddata/models/blueprint/project_blueprint.rb +15 -0
- data/lib/gooddata/models/blueprint/to_wire.rb +1 -0
- data/lib/gooddata/models/client.rb +21 -9
- data/lib/gooddata/models/data_product.rb +149 -0
- data/lib/gooddata/models/domain.rb +26 -72
- data/lib/gooddata/models/from_wire.rb +2 -0
- data/lib/gooddata/models/metadata/report.rb +9 -3
- data/lib/gooddata/models/metadata/report_definition.rb +2 -2
- data/lib/gooddata/models/model.rb +1 -1
- data/lib/gooddata/models/process.rb +4 -0
- data/lib/gooddata/models/project.rb +58 -35
- data/lib/gooddata/models/project_creator.rb +13 -0
- data/lib/gooddata/models/segment.rb +63 -16
- data/lib/gooddata/models/style_setting.rb +2 -15
- data/lib/gooddata/models/user_group.rb +2 -0
- data/lib/gooddata/rest/connection.rb +32 -9
- data/lib/gooddata/rest/object_factory.rb +0 -25
- data/lib/gooddata/version.rb +1 -1
- data/spec/data/blueprints/invalid_blueprint.json +2 -2
- data/spec/data/blueprints/test_project_model_spec.json +1 -1
- data/spec/data/dynamic_schedule_params_table.csv +7 -0
- data/spec/data/workspace_table.csv +3 -3
- data/spec/environment/staging.rb +3 -3
- data/spec/integration/ads_output_stage_spec.rb +0 -10
- data/spec/integration/clients_spec.rb +1 -1
- data/spec/{unit → integration}/commands/command_projects_spec.rb +0 -0
- data/spec/{unit → integration}/core/connection_spec.rb +0 -0
- data/spec/{unit → integration}/core/logging_spec.rb +0 -0
- data/spec/{unit → integration}/core/project_spec.rb +0 -0
- data/spec/integration/date_dim_switch_spec.rb +13 -0
- data/spec/integration/full_process_schedule_spec.rb +2 -2
- data/spec/integration/helpers_spec.rb +16 -0
- data/spec/integration/lcm_spec.rb +12 -2
- data/spec/integration/mixins/id_to_uri_spec.rb +44 -0
- data/spec/integration/models/data_product_spec.rb +71 -0
- data/spec/{unit → integration}/models/domain_spec.rb +2 -2
- data/spec/{unit → integration}/models/invitation_spec.rb +0 -0
- data/spec/{unit → integration}/models/membership_spec.rb +0 -0
- data/spec/{unit → integration}/models/params_spec.rb +0 -0
- data/spec/{unit → integration}/models/profile_spec.rb +0 -0
- data/spec/{unit → integration}/models/project_role_spec.rb +0 -0
- data/spec/integration/models/project_spec.rb +225 -0
- data/spec/{unit → integration}/models/schedule_spec.rb +0 -0
- data/spec/{unit → integration}/models/unit_project_spec.rb +0 -0
- data/spec/integration/project_spec.rb +40 -5
- data/spec/integration/segments_spec.rb +27 -26
- data/spec/integration/user_filters_spec.rb +1 -1
- data/spec/spec_helper.rb +15 -19
- data/spec/unit/actions/associate_clients_spec.rb +47 -0
- data/spec/unit/actions/collect_client_projects_spec.rb +47 -0
- data/spec/unit/actions/collect_clients_spec.rb +27 -0
- data/spec/unit/actions/collect_data_product_spec.rb +64 -0
- data/spec/unit/actions/collect_dynamic_schedule_params_spec.rb +56 -0
- data/spec/unit/actions/collect_meta_spec.rb +4 -4
- data/spec/unit/actions/collect_segment_clients_spec.rb +44 -3
- data/spec/unit/actions/collect_tagged_objects_spec.rb +20 -4
- data/spec/unit/actions/create_segment_masters_spec.rb +64 -0
- data/spec/unit/actions/ensure_data_product_spec.rb +38 -0
- data/spec/unit/actions/ensure_technical_users_domain_spec.rb +51 -0
- data/spec/unit/actions/ensure_technical_users_project_spec.rb +72 -0
- data/spec/unit/actions/execute_schedules_spec.rb +94 -0
- data/spec/unit/actions/provision_clients_spec.rb +45 -0
- data/spec/unit/actions/purge_clients_spec.rb +47 -0
- data/spec/unit/actions/rename_existing_client_projects_spec.rb +54 -0
- data/spec/unit/actions/segments_filter_spec.rb +46 -0
- data/spec/unit/actions/shared_examples_for_user_actions.rb +10 -0
- data/spec/unit/actions/synchronize_cas_spec.rb +58 -0
- data/spec/unit/actions/synchronize_etls_in_segment_spec.rb +174 -13
- data/spec/unit/actions/synchronize_ldm_spec.rb +57 -0
- data/spec/unit/actions/synchronize_user_filters_spec.rb +142 -0
- data/spec/unit/actions/synchronize_user_groups_spec.rb +49 -0
- data/spec/unit/actions/synchronize_users_spec.rb +76 -0
- data/spec/unit/helpers/data_helper_spec.rb +17 -0
- data/spec/unit/helpers/global_helpers_spec.rb +16 -0
- data/spec/unit/helpers_spec.rb +0 -6
- data/spec/unit/models/blueprint/project_blueprint_spec.rb +21 -4
- data/spec/unit/models/project_creator_spec.rb +16 -0
- data/spec/unit/models/project_spec.rb +66 -197
- metadata +202 -100
- data/PULL_REQUEST_TEMPLATE.md +0 -5
- data/lib/gooddata/bricks/middleware/params_inspect_middleware.rb +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 83f988e424e03c5ef86612b386366b1d30969b414ea4f523a893da381a6ff925
|
4
|
+
data.tar.gz: b4568e0f4741ffeabfa6b52805800f0b95f803550b72bd65532cefc8bc6fc740
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14e02a69965ab34c0975f6030543304bfc10460b948dfdc35158ed5c4d89e2beb899933d921db7b156ed4a7b60e8b9aac5ddd4d12c8ebe8b5add3e7210accd54
|
7
|
+
data.tar.gz: 8ecd6f9d5da4d24de8ddb45004fd86099003ba774a65d25e98195905ff69fe50a8f17fb98637df06e13e15a62a3b10df5f1f3aaaaa8dc12f6c3acdace8f3fda0
|
data/.flayignore
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
spec/unit/actions/ensure_technical_users_domain_spec.rb
|
2
|
+
spec/unit/actions/ensure_technical_users_project_spec.rb
|
3
|
+
spec/unit/actions/synchronize_cas_spec.rb
|
4
|
+
lib/gooddata/lcm/actions/collect_data_product.rb
|
5
|
+
# TMA-652
|
6
|
+
lib/gooddata/lcm/actions/synchronize_user_filters.rb
|
data/.gitignore
CHANGED
data/.pronto.yml
ADDED
data/.rspec
CHANGED
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,22 @@
|
|
1
1
|
# GoodData Ruby SDK Changelog
|
2
|
+
## 0.6.54
|
3
|
+
- Generating changelog automatically from git
|
4
|
+
- Fix resolving dataproduct
|
5
|
+
- TMA-685: User filters and users bricks support data product
|
6
|
+
- TMA-700: Fix executing empty report
|
7
|
+
- TMA-696: Handle status 200 with no content type
|
8
|
+
- TMA-632: Fix result for sync_domain_client_workspaces
|
9
|
+
- TMA-680: Add option include_computed_attributes
|
10
|
+
- mdidtouri spec has correct data types
|
11
|
+
- TMA-686: filtering segments in release brick
|
12
|
+
- TMA-663: synchronize_user_filters does not fail if the client set is empty
|
13
|
+
- TMA-299: Data Product used in bricks
|
14
|
+
- removed unused class params_inspect_middleware
|
15
|
+
- Update list of dependencies
|
16
|
+
- TMA-666: Generate junit-formatted test results
|
17
|
+
- simplecov has to be initialized before any other code
|
18
|
+
- enabling code coverage calculation during tests
|
19
|
+
- TMA-366: Indicate replacement for technical_user
|
2
20
|
|
3
21
|
## 0.6.53
|
4
22
|
- TMA-522 - Rollout: Incorrect CLIENT_ID assigned to client schedule
|
data/CONTRIBUTING.md
CHANGED
@@ -1,4 +1,17 @@
|
|
1
|
-
|
1
|
+
# Contributing
|
2
|
+
|
3
|
+
## Static analysis
|
4
|
+
We use [Pronto](https://github.com/prontolabs/pronto) to detect code smells using static analysis. Comments are automatically created on pull requests when code smells are found.
|
5
|
+
|
6
|
+
#### Running locally
|
7
|
+
`bundle exec pronto run --unstaged -c upstream/develop`
|
8
|
+
|
9
|
+
#### Editor integrations:
|
10
|
+
- [Rubocop](https://rubocop.readthedocs.io/en/latest/integration_with_other_tools/)
|
11
|
+
- [Reek](https://github.com/troessner/reek#editor-integrations)
|
12
|
+
- [Flay](https://github.com/seattlerb/flay)
|
13
|
+
|
14
|
+
## Acceptance criteria
|
2
15
|
|
3
16
|
1. The change is as small as possible. It fixes one specific issue or implements
|
4
17
|
one specific feature. Do not combine things, send separate pull requests if needed.
|
data/DEPENDENCIES.md
CHANGED
@@ -1,26 +1,31 @@
|
|
1
1
|
# gooddata-ruby
|
2
2
|
|
3
|
-
As of
|
3
|
+
As of November 3, 2017 1:34pm. 85 total
|
4
4
|
|
5
5
|
## Summary
|
6
6
|
* 62 MIT
|
7
|
-
*
|
8
|
-
*
|
9
|
-
*
|
10
|
-
*
|
7
|
+
* 11 Apache 2.0
|
8
|
+
* 6 ruby
|
9
|
+
* 2 New BSD
|
10
|
+
* 2 BSD
|
11
11
|
* 1 2-clause BSDL
|
12
|
-
* 1
|
13
|
-
* 1 GNU GPL v2, MIT, Perl Artistic v2
|
14
|
-
* 1 Artistic 2.0, GPL-2, MIT
|
15
|
-
* 1 Simplified BSD
|
12
|
+
* 1 Mozilla Public License 2.0, New BSD, Simplified BSD
|
16
13
|
|
17
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
|
+
|
18
23
|
|
19
24
|
## Items
|
20
25
|
|
21
26
|
|
22
27
|
<a name="ZenTest"></a>
|
23
|
-
### <a href="https://github.com/seattlerb/zentest">ZenTest</a> v4.11.
|
28
|
+
### <a href="https://github.com/seattlerb/zentest">ZenTest</a> v4.11.1 (development)
|
24
29
|
#### ZenTest provides 4 different tools: zentest, unit_diff, autotest, and multiruby
|
25
30
|
|
26
31
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -47,8 +52,20 @@ multiruby runs anything you want on multiple versions of ruby. Great
|
|
47
52
|
for compatibility checking! Use multiruby_setup to manage your
|
48
53
|
installed versions.
|
49
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
|
+
|
50
67
|
<a name="addressable"></a>
|
51
|
-
### <a href="https://github.com/sporkmonger/addressable">addressable</a> v2.
|
68
|
+
### <a href="https://github.com/sporkmonger/addressable">addressable</a> v2.5.0
|
52
69
|
#### URI Implementation
|
53
70
|
|
54
71
|
<a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
|
@@ -59,55 +76,67 @@ adds support for IRIs and URI templates.
|
|
59
76
|
|
60
77
|
|
61
78
|
<a name="ast"></a>
|
62
|
-
### <a href="https://whitequark.github.io/ast/">ast</a> v2.
|
79
|
+
### <a href="https://whitequark.github.io/ast/">ast</a> v2.3.0
|
63
80
|
#### A library for working with Abstract Syntax Trees.
|
64
81
|
|
65
82
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
66
83
|
|
67
84
|
A library for working with Abstract Syntax Trees.
|
68
85
|
|
69
|
-
<a name="
|
70
|
-
### <a href="
|
71
|
-
####
|
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
|
72
89
|
|
73
|
-
<a href="http://
|
90
|
+
<a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
|
74
91
|
|
75
|
-
|
92
|
+
The official AWS SDK for Ruby. Provides both resource oriented interfaces and API clients for AWS services.
|
76
93
|
|
77
|
-
<a name="aws-sdk"></a>
|
78
|
-
### <a href="http://
|
79
|
-
#### AWS SDK for Ruby
|
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
|
80
97
|
|
81
98
|
<a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
|
82
99
|
|
83
|
-
|
84
|
-
Use `aws-sdk-v1` if you want to load v1 and v2 of the Ruby SDK in the same
|
85
|
-
application.
|
100
|
+
Provides API clients for AWS. This gem is part of the official AWS SDK for Ruby.
|
86
101
|
|
87
|
-
<a name="aws-sdk-
|
88
|
-
### <a href="http://
|
89
|
-
#### AWS SDK for Ruby
|
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
|
90
105
|
|
91
106
|
<a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
|
92
107
|
|
93
|
-
|
94
|
-
|
95
|
-
|
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.
|
96
125
|
|
97
126
|
<a name="bundler"></a>
|
98
|
-
### bundler v1.
|
99
|
-
####
|
127
|
+
### <a href="http://bundler.io">bundler</a> v1.15.4 (development)
|
128
|
+
#### The best way to manage your application's dependencies
|
100
129
|
|
101
|
-
|
130
|
+
<a href="http://opensource.org/licenses/mit-license">MIT</a> manually approved
|
102
131
|
|
103
132
|
>
|
104
133
|
|
105
|
-
><cite>
|
106
|
-
|
134
|
+
><cite> 2015-08-03</cite>
|
107
135
|
|
136
|
+
Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably
|
108
137
|
|
109
138
|
<a name="coderay"></a>
|
110
|
-
### <a href="http://coderay.rubychan.de">coderay</a> v1.1.
|
139
|
+
### <a href="http://coderay.rubychan.de">coderay</a> v1.1.1
|
111
140
|
#### Fast syntax highlighting for selected languages.
|
112
141
|
|
113
142
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -115,14 +144,18 @@ unknown manually approved
|
|
115
144
|
Fast and easy syntax highlighting for selected languages, written in Ruby. Comes with RedCloth integration and LOC counter.
|
116
145
|
|
117
146
|
<a name="colored"></a>
|
118
|
-
###
|
119
|
-
####
|
147
|
+
### colored v
|
148
|
+
####
|
120
149
|
|
121
|
-
|
150
|
+
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
122
151
|
|
123
|
-
>
|
124
152
|
|
125
|
-
|
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
|
126
159
|
|
127
160
|
>> puts "this is red".red
|
128
161
|
|
@@ -137,6 +170,16 @@ unknown manually approved
|
|
137
170
|
>> puts Color.red "This is red" # but this part is mostly untested
|
138
171
|
|
139
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
|
+
|
140
183
|
<a name="crack"></a>
|
141
184
|
### <a href="http://github.com/jnunemaker/crack">crack</a> v0.4.3
|
142
185
|
#### Really simple JSON and XML parsing, ripped from Merb and Rails.
|
@@ -145,44 +188,28 @@ unknown manually approved
|
|
145
188
|
|
146
189
|
Really simple JSON and XML parsing, ripped from Merb and Rails.
|
147
190
|
|
148
|
-
<a name="
|
149
|
-
###
|
150
|
-
####
|
191
|
+
<a name="diff-lcs"></a>
|
192
|
+
### diff-lcs v
|
193
|
+
####
|
151
194
|
|
152
195
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
153
196
|
|
154
|
-
debase is a fast implementation of the standard Ruby debugger debug.rb for Ruby 2.0.
|
155
|
-
It is implemented by utilizing a new Ruby TracePoint class. The core component
|
156
|
-
provides support that front-ends can build on. It provides breakpoint
|
157
|
-
handling, bindings for stack frames among other things.
|
158
|
-
|
159
|
-
|
160
|
-
<a name="debase-ruby_core_source"></a>
|
161
|
-
### <a href="http://github.com/os97673/debase-ruby_core_source">debase-ruby_core_source</a> v0.8.1
|
162
|
-
#### Provide Ruby core source files
|
163
197
|
|
164
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
165
|
-
|
166
|
-
Provide Ruby core source files for C extensions that need them.
|
167
198
|
|
168
199
|
<a name="diff-lcs"></a>
|
169
|
-
### <a href="
|
200
|
+
### <a href="https://github.com/halostatue/diff-lcs">diff-lcs</a> v1.3
|
170
201
|
#### Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm
|
171
202
|
|
172
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a
|
203
|
+
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
173
204
|
|
174
205
|
Diff::LCS computes the difference between two Enumerable sequences using the
|
175
206
|
McIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities
|
176
207
|
to create a simple HTML diff output format and a standard diff-like tool.
|
177
208
|
|
178
|
-
This is release 1.
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
Coincident with the release of diff-lcs 1.2.3, we reported an issue with
|
183
|
-
Rubinius in 1.9 mode
|
184
|
-
({rubinius/rubinius#2268}[https://github.com/rubinius/rubinius/issues/2268]).
|
185
|
-
We are happy to report that this issue has been resolved.
|
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.
|
186
213
|
|
187
214
|
<a name="docile"></a>
|
188
215
|
### <a href="https://ms-ati.github.io/docile/">docile</a> v1.1.5
|
@@ -193,14 +220,10 @@ We are happy to report that this issue has been resolved.
|
|
193
220
|
Docile turns any Ruby object into a DSL. Especially useful with the Builder pattern.
|
194
221
|
|
195
222
|
<a name="domain_name"></a>
|
196
|
-
### <a href="https://github.com/knu/ruby-domain_name">domain_name</a> v0.5.
|
223
|
+
### <a href="https://github.com/knu/ruby-domain_name">domain_name</a> v0.5.20170404
|
197
224
|
#### Domain Name manipulation library for Ruby
|
198
225
|
|
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
|
200
|
-
|
201
|
-
>
|
202
|
-
|
203
|
-
><cite> 2016-02-22</cite>
|
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**_
|
204
227
|
|
205
228
|
This is a Domain Name manipulation library for Ruby.
|
206
229
|
|
@@ -229,7 +252,7 @@ Suffix List.
|
|
229
252
|
|
230
253
|
|
231
254
|
<a name="faraday"></a>
|
232
|
-
### <a href="https://github.com/lostisland/faraday">faraday</a> v0.
|
255
|
+
### <a href="https://github.com/lostisland/faraday">faraday</a> v0.13.1
|
233
256
|
#### HTTP/REST API client library.
|
234
257
|
|
235
258
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -237,31 +260,23 @@ Suffix List.
|
|
237
260
|
|
238
261
|
|
239
262
|
<a name="faraday_middleware"></a>
|
240
|
-
### <a href="https://github.com/lostisland/faraday_middleware">faraday_middleware</a> v0.
|
263
|
+
### <a href="https://github.com/lostisland/faraday_middleware">faraday_middleware</a> v0.12.2
|
241
264
|
#### Various middleware for Faraday
|
242
265
|
|
243
266
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
244
267
|
|
245
|
-
|
268
|
+
|
246
269
|
|
247
270
|
<a name="ffi"></a>
|
248
|
-
### <a href="http://wiki.github.com/ffi/ffi">ffi</a> v1.9.
|
271
|
+
### <a href="http://wiki.github.com/ffi/ffi">ffi</a> v1.9.18
|
249
272
|
#### Ruby FFI
|
250
273
|
|
251
|
-
<a href="http://
|
274
|
+
<a href="http://opensource.org/licenses/BSD-3-Clause">New BSD</a> _**unapproved**_
|
252
275
|
|
253
276
|
Ruby FFI library
|
254
277
|
|
255
|
-
<a name="formatador"></a>
|
256
|
-
### <a href="http://github.com/geemus/formatador">formatador</a> v0.2.5
|
257
|
-
#### Ruby STDOUT text formatting
|
258
|
-
|
259
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
260
|
-
|
261
|
-
STDOUT text formatting
|
262
|
-
|
263
278
|
<a name="gli"></a>
|
264
|
-
### <a href="http://davetron5000.github.com/gli">gli</a> v2.
|
279
|
+
### <a href="http://davetron5000.github.com/gli">gli</a> v2.17.0
|
265
280
|
#### Build command-suite CLI apps that are awesome.
|
266
281
|
|
267
282
|
<a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
|
@@ -269,39 +284,33 @@ STDOUT text formatting
|
|
269
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
|
270
285
|
|
271
286
|
<a name="gooddata"></a>
|
272
|
-
### <a href="http://github.com/gooddata/gooddata-ruby">gooddata</a> v0.6.
|
287
|
+
### <a href="http://github.com/gooddata/gooddata-ruby">gooddata</a> v0.6.54 (default)
|
273
288
|
#### A convenient Ruby wrapper around the GoodData RESTful API
|
274
289
|
|
275
290
|
<a href="http://en.wikipedia.org/wiki/BSD_licenses#4-clause_license_.28original_.22BSD_License.22.29">BSD</a> whitelisted
|
276
291
|
|
277
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.
|
278
293
|
|
279
|
-
<a name="
|
280
|
-
### <a href="http://
|
281
|
-
####
|
282
|
-
|
283
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
284
|
-
|
285
|
-
Guard is a command line tool to easily handle events on file system modifications.
|
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
|
286
297
|
|
287
|
-
<a
|
288
|
-
### guard-compat v1.2.1
|
289
|
-
#### Tools for developing Guard compatible plugins
|
298
|
+
<a href="http://opensource.org/licenses/BSD-3-Clause">New BSD</a> _**unapproved**_
|
290
299
|
|
291
|
-
|
300
|
+
Starting with DSS is as easy as require 'jdbc/dss'; Jdbc::DSS.load_driver.
|
301
|
+
Install dss-sequel for a Sequelish wrapper"
|
292
302
|
|
293
|
-
Helps creating valid Guard plugins and testing them
|
294
303
|
|
295
|
-
<a name="
|
296
|
-
###
|
297
|
-
####
|
304
|
+
<a name="gooddata_datawarehouse"></a>
|
305
|
+
### gooddata_datawarehouse v0.0.8
|
306
|
+
#### Convenient work with GoodData's Datawarehouse (ADS)
|
298
307
|
|
299
308
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
300
309
|
|
301
|
-
|
310
|
+
|
302
311
|
|
303
312
|
<a name="hashdiff"></a>
|
304
|
-
### <a href="https://github.com/liufengyun/hashdiff">hashdiff</a> v0.2
|
313
|
+
### <a href="https://github.com/liufengyun/hashdiff">hashdiff</a> v0.3.2
|
305
314
|
#### HashDiff is a diff lib to compute the smallest difference between two hashes.
|
306
315
|
|
307
316
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -309,7 +318,7 @@ Guard::RSpec automatically run your specs (much like autotest).
|
|
309
318
|
HashDiff is a diff lib to compute the smallest difference between two hashes.
|
310
319
|
|
311
320
|
<a name="hashie"></a>
|
312
|
-
### <a href="https://github.com/intridea/hashie">hashie</a> v3.
|
321
|
+
### <a href="https://github.com/intridea/hashie">hashie</a> v3.5.6
|
313
322
|
#### Your friendly neighborhood hash library.
|
314
323
|
|
315
324
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -329,7 +338,7 @@ minutes of work.
|
|
329
338
|
|
330
339
|
|
331
340
|
<a name="http-cookie"></a>
|
332
|
-
### <a href="https://github.com/sparklemotion/http-cookie">http-cookie</a> v1.0.
|
341
|
+
### <a href="https://github.com/sparklemotion/http-cookie">http-cookie</a> v1.0.3
|
333
342
|
#### A Ruby library to handle HTTP Cookies based on RFC 6265
|
334
343
|
|
335
344
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -337,23 +346,39 @@ minutes of work.
|
|
337
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.
|
338
347
|
|
339
348
|
<a name="httparty"></a>
|
340
|
-
### <a href="http://jnunemaker.github.com/httparty">httparty</a> v0.
|
349
|
+
### <a href="http://jnunemaker.github.com/httparty">httparty</a> v0.14.0
|
341
350
|
#### Makes http fun! Also, makes consuming restful web services dead easy.
|
342
351
|
|
343
352
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
344
353
|
|
345
354
|
Makes http fun! Also, makes consuming restful web services dead easy.
|
346
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
|
+
|
347
372
|
<a name="json"></a>
|
348
|
-
### <a href="http://
|
349
|
-
#### JSON
|
373
|
+
### <a href="http://json-jruby.rubyforge.org/">json</a> v1.8.6
|
374
|
+
#### JSON implementation for JRuby
|
350
375
|
|
351
376
|
<a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
|
352
377
|
|
353
|
-
|
378
|
+
A JSON implementation as a JRuby extension.
|
354
379
|
|
355
380
|
<a name="json_pure"></a>
|
356
|
-
### <a href="http://flori.github.com/json">json_pure</a> v1.8.
|
381
|
+
### <a href="http://flori.github.com/json">json_pure</a> v1.8.6
|
357
382
|
#### JSON Implementation for Ruby
|
358
383
|
|
359
384
|
<a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
|
@@ -361,7 +386,7 @@ This is a JSON implementation as a Ruby extension in C.
|
|
361
386
|
This is a JSON implementation in pure Ruby.
|
362
387
|
|
363
388
|
<a name="license_finder"></a>
|
364
|
-
### <a href="https://github.com/pivotal/LicenseFinder">license_finder</a> v2.
|
389
|
+
### <a href="https://github.com/pivotal/LicenseFinder">license_finder</a> v2.1.2 (development)
|
365
390
|
#### Audit the OSS licenses of your application's dependencies.
|
366
391
|
|
367
392
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -372,65 +397,114 @@ This is a JSON implementation in pure Ruby.
|
|
372
397
|
actionable exception report.
|
373
398
|
|
374
399
|
|
375
|
-
<a name="
|
376
|
-
### <a href="
|
377
|
-
####
|
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
|
378
403
|
|
379
404
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
380
405
|
|
381
|
-
|
406
|
+
retrieve the sourcecode for a method
|
382
407
|
|
383
|
-
<a name="
|
384
|
-
###
|
385
|
-
####
|
408
|
+
<a name="mime-types"></a>
|
409
|
+
### mime-types v
|
410
|
+
####
|
386
411
|
|
387
412
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
388
413
|
|
389
|
-
A simple, powerful, and very fast logging utility that can be a drop in replacement for Logger or ActiveSupport::BufferedLogger. Provides support for automatically rolling log files even with multiple processes writing the same log file.
|
390
|
-
|
391
|
-
<a name="method_source"></a>
|
392
|
-
### <a href="http://banisterfiend.wordpress.com">method_source</a> v0.8.2
|
393
|
-
#### retrieve the sourcecode for a method
|
394
|
-
|
395
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
396
414
|
|
397
|
-
retrieve the sourcecode for a method
|
398
415
|
|
399
416
|
<a name="mime-types"></a>
|
400
|
-
### <a href="https://github.com/mime-types/ruby-mime-types/">mime-types</a>
|
417
|
+
### <a href="https://github.com/mime-types/ruby-mime-types/">mime-types</a> v3.1
|
401
418
|
#### The mime-types library provides a library and registry for information about MIME content type definitions
|
402
419
|
|
403
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a
|
420
|
+
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
404
421
|
|
405
422
|
The mime-types library provides a library and registry for information about
|
406
423
|
MIME content type definitions. It can be used to determine defined filename
|
407
424
|
extensions for MIME types, or to use filename extensions to look up the likely
|
408
425
|
MIME type definitions.
|
409
426
|
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
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.
|
414
434
|
|
415
|
-
mime-types-
|
416
|
-
|
417
|
-
|
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
|
418
438
|
|
419
|
-
|
420
|
-
appropriately:
|
439
|
+
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
421
440
|
|
422
|
-
|
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.
|
423
445
|
|
424
|
-
<a name="
|
425
|
-
### <a href="
|
426
|
-
####
|
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
|
427
449
|
|
428
450
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
429
451
|
|
430
|
-
|
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.
|
431
505
|
|
432
506
|
<a name="multi_json"></a>
|
433
|
-
### <a href="http://github.com/intridea/multi_json">multi_json</a> v1.
|
507
|
+
### <a href="http://github.com/intridea/multi_json">multi_json</a> v1.12.2
|
434
508
|
#### A common interface to multiple JSON libraries.
|
435
509
|
|
436
510
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -438,7 +512,7 @@ Simplistic port-like solution for developers. It provides a standard and simplif
|
|
438
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.
|
439
513
|
|
440
514
|
<a name="multi_xml"></a>
|
441
|
-
### <a href="https://github.com/sferik/multi_xml">multi_xml</a> v0.
|
515
|
+
### <a href="https://github.com/sferik/multi_xml">multi_xml</a> v0.6.0
|
442
516
|
#### A generic swappable back-end for XML parsing
|
443
517
|
|
444
518
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -453,14 +527,6 @@ Provides swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML.
|
|
453
527
|
|
454
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.
|
455
529
|
|
456
|
-
<a name="nenv"></a>
|
457
|
-
### <a href="https://github.com/e2/nenv">nenv</a> v0.2.0
|
458
|
-
#### Convenience wrapper for Ruby's ENV
|
459
|
-
|
460
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
461
|
-
|
462
|
-
Using ENV is like using raw SQL statements in your code. We all know how that ends...
|
463
|
-
|
464
530
|
<a name="netrc"></a>
|
465
531
|
### <a href="https://github.com/geemus/netrc">netrc</a> v0.11.0
|
466
532
|
#### Library to read and write netrc files.
|
@@ -469,31 +535,8 @@ Using ENV is like using raw SQL statements in your code. We all know how that en
|
|
469
535
|
|
470
536
|
This library can read and update netrc files, preserving formatting including comments and whitespace.
|
471
537
|
|
472
|
-
<a name="nokogiri"></a>
|
473
|
-
### <a href="http://nokogiri.org">nokogiri</a> v1.6.7
|
474
|
-
#### Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser
|
475
|
-
|
476
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
477
|
-
|
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.
|
481
|
-
|
482
|
-
XML is like violence - if it doesn’t solve your problems, you are not
|
483
|
-
using enough of it.
|
484
|
-
|
485
|
-
<a name="notiffany"></a>
|
486
|
-
### <a href="https://github.com/guard/notiffany">notiffany</a> v0.0.8
|
487
|
-
#### Notifier library (extracted from Guard project)
|
488
|
-
|
489
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
490
|
-
|
491
|
-
Wrapper libray for most popular notification
|
492
|
-
libraries such as Growl, Libnotify, Notifu
|
493
|
-
|
494
|
-
|
495
538
|
<a name="parseconfig"></a>
|
496
|
-
### <a href="http://github.com/datafolklabs/ruby-parseconfig/">parseconfig</a> v1.0.
|
539
|
+
### <a href="http://github.com/datafolklabs/ruby-parseconfig/">parseconfig</a> v1.0.8
|
497
540
|
#### Config File Parser for Standard Unix/Linux Type Config Files
|
498
541
|
|
499
542
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -501,13 +544,21 @@ using enough of it.
|
|
501
544
|
ParseConfig provides simple parsing of standard configuration files in the form of 'param = value'. It also supports nested [group] sections.
|
502
545
|
|
503
546
|
<a name="parser"></a>
|
504
|
-
### <a href="https://github.com/whitequark/parser">parser</a> v2.
|
547
|
+
### <a href="https://github.com/whitequark/parser">parser</a> v2.4.0.0
|
505
548
|
#### A Ruby parser written in pure Ruby.
|
506
549
|
|
507
550
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
508
551
|
|
509
552
|
A Ruby parser written in pure Ruby.
|
510
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
|
+
|
511
562
|
<a name="pmap"></a>
|
512
563
|
### <a href="https://github.com/bruceadams/pmap">pmap</a> v1.1.1
|
513
564
|
#### Add parallel methods into Enumerable: pmap and peach
|
@@ -524,8 +575,24 @@ Add parallel methods into Enumerable: pmap and peach
|
|
524
575
|
|
525
576
|
A few useful extensions to core Ruby classes.
|
526
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
|
+
|
527
594
|
<a name="rainbow"></a>
|
528
|
-
### <a href="https://github.com/sickill/rainbow">rainbow</a> v2.
|
595
|
+
### <a href="https://github.com/sickill/rainbow">rainbow</a> v2.2.1
|
529
596
|
#### Colorize printed text on ANSI terminals
|
530
597
|
|
531
598
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -533,51 +600,52 @@ A few useful extensions to core Ruby classes.
|
|
533
600
|
Colorize printed text on ANSI terminals
|
534
601
|
|
535
602
|
<a name="rake"></a>
|
536
|
-
### rake
|
537
|
-
####
|
538
|
-
|
539
|
-
unknown manually approved
|
540
|
-
|
541
|
-
>
|
603
|
+
### rake v
|
604
|
+
####
|
542
605
|
|
543
|
-
|
606
|
+
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
544
607
|
|
545
608
|
|
546
609
|
|
547
|
-
<a name="rake
|
548
|
-
### <a href="https://github.com/
|
549
|
-
####
|
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
|
550
613
|
|
551
614
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
552
615
|
|
553
|
-
|
616
|
+
Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
|
617
|
+
specified in standard Ruby syntax.
|
554
618
|
|
555
|
-
|
556
|
-
### <a href="http://rubygems.org/gems/rb-fsevent">rb-fsevent</a> v0.9.6
|
557
|
-
#### Very simple & usable FSEvents API
|
619
|
+
Rake has the following features:
|
558
620
|
|
559
|
-
|
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?)
|
560
624
|
|
561
|
-
|
625
|
+
* Users can specify tasks with prerequisites.
|
562
626
|
|
563
|
-
|
564
|
-
### <a href="http://github.com/nex3/rb-inotify">rb-inotify</a> v0.9.5
|
565
|
-
#### A Ruby wrapper for Linux's inotify, using FFI
|
627
|
+
* Rake supports rule patterns to synthesize implicit tasks.
|
566
628
|
|
567
|
-
|
629
|
+
* Flexible FileLists that act like arrays but know about manipulating
|
630
|
+
file names and paths.
|
568
631
|
|
569
|
-
A
|
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.)
|
570
636
|
|
571
|
-
|
572
|
-
|
573
|
-
|
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
|
574
642
|
|
575
643
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
576
644
|
|
577
|
-
|
645
|
+
rake notes task for non-Rails' projects
|
578
646
|
|
579
647
|
<a name="rest-client"></a>
|
580
|
-
### <a href="https://github.com/rest-client/rest-client">rest-client</a>
|
648
|
+
### <a href="https://github.com/rest-client/rest-client">rest-client</a> v2.0.2
|
581
649
|
#### Simple HTTP and REST client for Ruby, inspired by microframework syntax for specifying actions.
|
582
650
|
|
583
651
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -585,7 +653,7 @@ A fast, safe and extensible Markdown to (X)HTML parser
|
|
585
653
|
A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework style of specifying actions: get, put, post, delete.
|
586
654
|
|
587
655
|
<a name="restforce"></a>
|
588
|
-
### <a href="
|
656
|
+
### <a href="http://restforce.org/">restforce</a> v2.5.3
|
589
657
|
#### A lightweight ruby client for the Salesforce REST API.
|
590
658
|
|
591
659
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -593,47 +661,47 @@ A simple HTTP and REST client for Ruby, inspired by the Sinatra microframework s
|
|
593
661
|
A lightweight ruby client for the Salesforce REST API.
|
594
662
|
|
595
663
|
<a name="rspec"></a>
|
596
|
-
### <a href="http://github.com/rspec">rspec</a> v3.
|
597
|
-
#### rspec-3.
|
664
|
+
### <a href="http://github.com/rspec">rspec</a> v3.5.0 (development)
|
665
|
+
#### rspec-3.5.0
|
598
666
|
|
599
667
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
600
668
|
|
601
669
|
BDD for Ruby
|
602
670
|
|
603
671
|
<a name="rspec-core"></a>
|
604
|
-
### <a href="
|
605
|
-
#### rspec-core-3.4
|
672
|
+
### <a href="https://github.com/rspec/rspec-core">rspec-core</a> v3.5.4
|
673
|
+
#### rspec-core-3.5.4
|
606
674
|
|
607
675
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
608
676
|
|
609
677
|
BDD for Ruby. RSpec runner and example groups.
|
610
678
|
|
611
679
|
<a name="rspec-expectations"></a>
|
612
|
-
### <a href="
|
613
|
-
#### rspec-expectations-3.
|
680
|
+
### <a href="https://github.com/rspec/rspec-expectations">rspec-expectations</a> v3.5.0 (development)
|
681
|
+
#### rspec-expectations-3.5.0
|
614
682
|
|
615
683
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
616
684
|
|
617
685
|
rspec-expectations provides a simple, readable API to express expected outcomes of a code example.
|
618
686
|
|
619
687
|
<a name="rspec-mocks"></a>
|
620
|
-
### <a href="
|
621
|
-
#### rspec-mocks-3.
|
688
|
+
### <a href="https://github.com/rspec/rspec-mocks">rspec-mocks</a> v3.5.0
|
689
|
+
#### rspec-mocks-3.5.0
|
622
690
|
|
623
691
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
624
692
|
|
625
693
|
RSpec's 'test double' framework, with support for stubbing and mocking
|
626
694
|
|
627
695
|
<a name="rspec-support"></a>
|
628
|
-
### <a href="https://github.com/rspec/rspec-support">rspec-support</a> v3.
|
629
|
-
#### rspec-support-3.
|
696
|
+
### <a href="https://github.com/rspec/rspec-support">rspec-support</a> v3.5.0
|
697
|
+
#### rspec-support-3.5.0
|
630
698
|
|
631
699
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
632
700
|
|
633
701
|
Support utilities for RSpec gems
|
634
702
|
|
635
703
|
<a name="rubocop"></a>
|
636
|
-
### <a href="http://github.com/bbatsov/rubocop">rubocop</a> v0.
|
704
|
+
### <a href="http://github.com/bbatsov/rubocop">rubocop</a> v0.47.1 (development)
|
637
705
|
#### Automatic Ruby code style checking tool.
|
638
706
|
|
639
707
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -642,17 +710,8 @@ Support utilities for RSpec gems
|
|
642
710
|
Aims to enforce the community-driven Ruby Style Guide.
|
643
711
|
|
644
712
|
|
645
|
-
<a name="ruby-debug-ide"></a>
|
646
|
-
### <a href="https://github.com/ruby-debug/ruby-debug-ide">ruby-debug-ide</a> v0.6.0 (development)
|
647
|
-
#### IDE interface for ruby-debug.
|
648
|
-
|
649
|
-
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
650
|
-
|
651
|
-
An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine.
|
652
|
-
|
653
|
-
|
654
713
|
<a name="ruby-progressbar"></a>
|
655
|
-
### <a href="https://github.com/jfelchner/ruby-progressbar">ruby-progressbar</a> v1.
|
714
|
+
### <a href="https://github.com/jfelchner/ruby-progressbar">ruby-progressbar</a> v1.8.1
|
656
715
|
#### Ruby/ProgressBar is a flexible text progress bar library for Ruby.
|
657
716
|
|
658
717
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -663,10 +722,18 @@ percentage, bars of various formats, elapsed time and estimated time remaining.
|
|
663
722
|
|
664
723
|
|
665
724
|
<a name="rubyzip"></a>
|
666
|
-
###
|
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
|
667
734
|
#### rubyzip is a ruby module for reading and writing zip files
|
668
735
|
|
669
|
-
<a href="http://
|
736
|
+
<a href="http://www.ruby-lang.org/en/LICENSE.txt">ruby</a> whitelisted
|
670
737
|
|
671
738
|
|
672
739
|
|
@@ -686,16 +753,16 @@ Parse YAML safely
|
|
686
753
|
|
687
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.
|
688
755
|
|
689
|
-
<a name="
|
690
|
-
###
|
691
|
-
####
|
756
|
+
<a name="sequel"></a>
|
757
|
+
### <a href="http://sequel.jeremyevans.net">sequel</a> v4.49.0
|
758
|
+
#### The Database Toolkit for Ruby
|
692
759
|
|
693
760
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
694
761
|
|
695
|
-
|
762
|
+
The Database Toolkit for Ruby
|
696
763
|
|
697
764
|
<a name="simplecov"></a>
|
698
|
-
### <a href="http://github.com/colszowka/simplecov">simplecov</a> v0.
|
765
|
+
### <a href="http://github.com/colszowka/simplecov">simplecov</a> v0.13.0 (development)
|
699
766
|
#### Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites
|
700
767
|
|
701
768
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -718,8 +785,16 @@ Default HTML formatter for SimpleCov code coverage tool for ruby 1.9+
|
|
718
785
|
|
719
786
|
A simple DSL for gathering options and parsing the command line
|
720
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
|
+
|
721
796
|
<a name="terminal-table"></a>
|
722
|
-
### <a href="https://github.com/tj/terminal-table">terminal-table</a> v1.
|
797
|
+
### <a href="https://github.com/tj/terminal-table">terminal-table</a> v1.8.0
|
723
798
|
#### Simple, feature rich ascii table generation library
|
724
799
|
|
725
800
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -727,7 +802,7 @@ A simple DSL for gathering options and parsing the command line
|
|
727
802
|
|
728
803
|
|
729
804
|
<a name="thor"></a>
|
730
|
-
### <a href="http://whatisthor.com/">thor</a> v0.19.
|
805
|
+
### <a href="http://whatisthor.com/">thor</a> v0.19.4
|
731
806
|
#### Thor is a toolkit for building powerful command-line interfaces.
|
732
807
|
|
733
808
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -735,45 +810,41 @@ A simple DSL for gathering options and parsing the command line
|
|
735
810
|
Thor is a toolkit for building powerful command-line interfaces.
|
736
811
|
|
737
812
|
<a name="thread_safe"></a>
|
738
|
-
### <a href="https://github.com/ruby-concurrency/thread_safe">thread_safe</a> v0.3.
|
739
|
-
####
|
813
|
+
### <a href="https://github.com/ruby-concurrency/thread_safe">thread_safe</a> v0.3.6
|
814
|
+
#### Thread-safe collections and utilities for Ruby
|
740
815
|
|
741
816
|
<a href="http://www.apache.org/licenses/LICENSE-2.0.txt">Apache 2.0</a> whitelisted
|
742
817
|
|
743
|
-
|
818
|
+
A collection of data structures and utilities to make thread-safe programming in Ruby easier
|
744
819
|
|
745
|
-
<a name="
|
746
|
-
### <a href="
|
747
|
-
####
|
820
|
+
<a name="tzinfo"></a>
|
821
|
+
### <a href="http://tzinfo.github.io">tzinfo</a> v1.2.4
|
822
|
+
#### Daylight savings aware timezone library
|
748
823
|
|
749
824
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
750
825
|
|
751
|
-
|
826
|
+
TZInfo provides daylight savings aware transformations between times in different time zones.
|
752
827
|
|
753
828
|
<a name="unf"></a>
|
754
829
|
### <a href="https://github.com/knu/ruby-unf">unf</a> v0.1.4
|
755
830
|
#### A wrapper library to bring Unicode Normalization Form support to Ruby/JRuby
|
756
831
|
|
757
|
-
2-clause BSDL
|
758
|
-
|
759
|
-
>
|
760
|
-
|
761
|
-
><cite> 2016-02-22</cite>
|
832
|
+
2-clause BSDL _**unapproved**_
|
762
833
|
|
763
834
|
This is a wrapper library to bring Unicode Normalization Form support
|
764
835
|
to Ruby/JRuby.
|
765
836
|
|
766
837
|
|
767
|
-
<a name="
|
768
|
-
### <a href="
|
769
|
-
####
|
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.
|
770
841
|
|
771
842
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
772
843
|
|
773
|
-
Unicode
|
844
|
+
[Unicode 9.0.0] Determines the monospace display width of a string using EastAsianWidth.txt, Unicode general category, and other data.
|
774
845
|
|
775
846
|
<a name="webmock"></a>
|
776
|
-
### <a href="http://github.com/bblimke/webmock">webmock</a> v1.
|
847
|
+
### <a href="http://github.com/bblimke/webmock">webmock</a> v1.24.6 (development)
|
777
848
|
#### Library for stubbing HTTP requests in Ruby.
|
778
849
|
|
779
850
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|
@@ -789,7 +860,7 @@ WebMock allows stubbing HTTP requests and setting expectations on HTTP requests.
|
|
789
860
|
|
790
861
|
|
791
862
|
<a name="yard"></a>
|
792
|
-
### <a href="http://yardoc.org">yard</a> v0.8
|
863
|
+
### <a href="http://yardoc.org">yard</a> v0.9.8 (development)
|
793
864
|
#### Documentation tool for consistent and usable documentation in Ruby.
|
794
865
|
|
795
866
|
<a href="http://opensource.org/licenses/mit-license">MIT</a> whitelisted
|