fedux_org-stdlib 0.11.17 → 0.11.18

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8742a7b06bb21fe7fa399d2137b7dec34056fe36
4
- data.tar.gz: 7f80ae9e5946c685d20c3cdf85db6e6baa24dc95
3
+ metadata.gz: 86a4abc2674a0d71c05aed9ae096b8de28d754b5
4
+ data.tar.gz: a4eff717478548ba3911ad9dc419732704b10ac4
5
5
  SHA512:
6
- metadata.gz: 28304969f96db46469251afdd86a81c40fffa4ee26676f3b265e4fc82210a8a3e2e83879544721ac4d2ffc39efbde8778f56aec4b234ca8519017676d9cb6053
7
- data.tar.gz: 100639f659d5b538fa6be31c3b856f6e0dcb5007b663edb4c2ce3fd42498c7862f4bb40e0ea26fd9728c1a6eba194825ebdebcca4e21dace34d06b2f69aa68fb
6
+ metadata.gz: 8bba2b0af0a1d147fad7368d05ec0d0095e5ee2b61063b3aec3c23eb906b8e4936c98d8e35371c1ec03e1e63caea1353957fed8ac85bb83baa384ba39e3f5923
7
+ data.tar.gz: 68b0cf4ecf4d78a48f7fbd31f26df38740d8585fd585711ac94ed55a285740f66b4df1e422e63e975351773e877f8519a2fe165bbf72f42de417887806fb6047
@@ -0,0 +1 @@
1
+ rakefiles/default.rake
@@ -5,7 +5,7 @@ require 'fedux_org_stdlib/process_environment'
5
5
  require 'fedux_org_stdlib/core_ext/array/list'
6
6
  require 'fedux_org_stdlib/core_ext/hash/list'
7
7
  require 'fedux_org_stdlib/logging/logger'
8
- require_library %w(json psych active_support/core_ext/hash/reverse_merge active_support/core_ext/hash/keys active_support/core_ext/string/inflections set active_support/core_ext/hash/slice active_support/core_ext/object/blank active_support/core_ext/hash/keys)
8
+ require_library %w(json psych active_support/core_ext/hash active_support/core_ext/hash/keys active_support/core_ext/string/inflections set active_support/core_ext/hash/slice active_support/core_ext/object/blank active_support/core_ext/hash/keys)
9
9
 
10
10
  module FeduxOrgStdlib
11
11
  # This class makes a config file available as an object. The config file
@@ -10,7 +10,7 @@ module FeduxOrgStdlib
10
10
 
11
11
  @patterns = %i(overlapping_rings xes mosaic_squares concentric_circles diamonds tessellation triangles squares)
12
12
 
13
- # see http://pln.jonas.me/xterm-colors for examples
13
+ # see http://jonasjacek.github.io/colors/ for examples
14
14
  @colors = %w(#080808 #121212 #1c1c1c #262626 #303030 #3a3a3a #444444 #4e4e4e
15
15
  #585858 #626262 #6c6c6c #767676 #808080 #8a8a8a #949494 #9e9e9e
16
16
  #a8a8a8 b2b2b2 #bcbcbc #c6c6c6 #d0d0d0 #dadada #e4e4e4
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
  # FeduxOrgStdlib
3
3
  module FeduxOrgStdlib
4
- VERSION = '0.11.17'
4
+ VERSION = '0.11.18'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fedux_org-stdlib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.17
4
+ version: 0.11.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Meyer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-19 00:00:00.000000000 Z
11
+ date: 2016-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -262,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
262
262
  version: '0'
263
263
  requirements: []
264
264
  rubyforge_project:
265
- rubygems_version: 2.4.5
265
+ rubygems_version: 2.6.3
266
266
  signing_key:
267
267
  specification_version: 4
268
268
  summary: Collection of useful libraries. It maybe depend on external libraries.
data/Rakefile DELETED
@@ -1,27 +0,0 @@
1
- #!/usr/bin/env rake
2
-
3
- $LOAD_PATH << File.expand_path('../lib', __FILE__)
4
-
5
- require 'fedux_org_stdlib/rake_tasks'
6
- require 'fedux_org_stdlib/rake_tasks/webserver'
7
-
8
- desc 'Show help for rake'
9
- task :default do
10
- sh 'bundle exec rake -T'
11
- end
12
-
13
- desc 'Run test suite'
14
- task test: ['test:rubocop', 'test:rspec']
15
-
16
- namespace :test do
17
- desc 'Test with coveralls'
18
- task coveralls: ['test', 'coveralls:push']
19
-
20
- require 'rubocop/rake_task'
21
- RuboCop::RakeTask.new
22
-
23
- desc 'Run rspec'
24
- task :rspec do
25
- sh 'bundle exec rspec'
26
- end
27
- end