force_bind_rbx 1.0.0 → 1.1.0

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: f97fb960b19a2e64b5a9032d72fce82a69ad8d87
4
- data.tar.gz: e89867aec1962a226d5cc5d3dfbd40c2fcaf8aab
3
+ metadata.gz: 321347501cbdcb37fb1e98baa8d6d06fd33f8798
4
+ data.tar.gz: 3c7b623e8ca2a8b6ac6df21d53567cfa734b40d5
5
5
  SHA512:
6
- metadata.gz: 906303bdedfa104f15b21761fbcd045c9f18ccb666e81bf891cf912057f82ff4f9ec5fc491c48d3efddbd2af66cdf1b04ffaff11ffb070bdf40e734340c6809c
7
- data.tar.gz: 6947b774a859ab0256022bdfa4f6bba8fb5994e25cbe2c4da584c82cf7ecfbd5d2917e40c2e2395180e2f4b31284cbac23e5fe5b2fd5bb208c59c37ed5dd6f1b
6
+ metadata.gz: 5aefc48d5d0889115a24a2eb3de3d147ae3dc5c9cc1d72f1c3f8ca9009581fbacb815aeb5b961bead5fbd1e0e054a93b11ec5741728db8621a57bc7dea5fd9e9
7
+ data.tar.gz: 7c33e18de41f995ba1b81ba509f72c9f61ac265a29255cbeb2509a017a3e26032c3502d6a27d77f50aeb70c9b246aba97cca863ea503869449c47110f326d244
data/Gemfile CHANGED
@@ -7,19 +7,4 @@
7
7
 
8
8
  source 'https://rubygems.org'
9
9
 
10
- gemspec path: __dir__
11
-
12
- group :development do
13
- gem 'rake', require: false
14
-
15
- # lint
16
- gem 'rubocop', '>= 0.36.0', require: false
17
-
18
- # test
19
- gem 'minitest', require: false
20
- gem 'simplecov', require: false
21
-
22
- # doc
23
- gem 'yard', require: false
24
- gem 'kramdown', require: false
25
- end
10
+ gemspec
data/Rakefile CHANGED
@@ -5,14 +5,8 @@
5
5
  # License, v. 2.0. If a copy of the MPL was not distributed with this
6
6
  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
7
 
8
- require 'rubygems'
9
8
  require 'bundler'
10
9
 
11
10
  Bundler.setup(:default, :development)
12
11
 
13
- require 'bundler/gem_tasks'
14
-
15
- Dir.glob('tasks/*.rake').each { |task| import task }
16
-
17
- task default: %i(rubocop test)
18
- task ci: 'test:coverage'
12
+ require 'rideliner/tasks'
@@ -7,7 +7,7 @@
7
7
 
8
8
  Gem::Specification.new do |spec|
9
9
  spec.name = 'force_bind_rbx'
10
- spec.version = '1.0.0'
10
+ spec.version = '1.1.0'
11
11
  spec.authors = ['Nathan Currier']
12
12
  spec.email = ['nathan.currier@gmail.com']
13
13
  spec.license = 'MPL-2.0'
@@ -22,4 +22,6 @@ Gem::Specification.new do |spec|
22
22
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
23
23
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
24
24
  spec.require_paths = ['lib']
25
+
26
+ spec.add_development_dependency 'rideliner'
25
27
  end
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: force_bind_rbx
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Currier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-03 00:00:00.000000000 Z
12
- dependencies: []
11
+ date: 2016-05-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ prerelease: false
15
+ version_requirements: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ name: rideliner
22
+ requirement: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  description: ''
14
28
  email:
15
29
  - nathan.currier@gmail.com
@@ -22,14 +36,7 @@ files:
22
36
  - LICENSE.md
23
37
  - Rakefile
24
38
  - force_bind_rbx.gemspec
25
- - gemfiles/Gemfile.ci
26
- - gemfiles/Gemfile.doc
27
- - lib/force_bind.rb
28
39
  - lib/force_bind_rbx.rb
29
- - tasks/ghpages.rake
30
- - tasks/rubocop.rake
31
- - tasks/test.rake
32
- - tasks/yard.rake
33
40
  - test/test_helper.rb
34
41
  homepage: https://github.com/rideliner/force_bind_rbx
35
42
  licenses:
@@ -51,10 +58,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
51
58
  version: '0'
52
59
  requirements: []
53
60
  rubyforge_project:
54
- rubygems_version: 2.5.1
61
+ rubygems_version: 2.6.2
55
62
  signing_key:
56
63
  specification_version: 4
57
64
  summary: ''
58
65
  test_files:
59
66
  - test/test_helper.rb
60
- has_rdoc: yard
@@ -1,12 +0,0 @@
1
- # encoding: utf-8
2
- # Copyright (c) 2016 Nathan Currier
3
-
4
- # This Source Code Form is subject to the terms of the Mozilla Public
5
- # License, v. 2.0. If a copy of the MPL was not distributed with this
6
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
-
8
- eval_gemfile File.expand_path('../Gemfile', __dir__)
9
-
10
- group :development do
11
- gem 'codecov', require: false
12
- end
@@ -1,12 +0,0 @@
1
- # encoding: utf-8
2
- # Copyright (c) 2016 Nathan Currier
3
-
4
- # This Source Code Form is subject to the terms of the Mozilla Public
5
- # License, v. 2.0. If a copy of the MPL was not distributed with this
6
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
-
8
- eval_gemfile File.expand_path('Gemfile.ci', __dir__)
9
-
10
- group :development do
11
- gem 'ghpages_deploy', require: false
12
- end
@@ -1,8 +0,0 @@
1
- # encoding: utf-8
2
- # Copyright (c) 2016 Nathan Currier
3
-
4
- # This Source Code Form is subject to the terms of the Mozilla Public
5
- # License, v. 2.0. If a copy of the MPL was not distributed with this
6
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
-
8
- require 'force_bind_rbx'
@@ -1,33 +0,0 @@
1
- # encoding: utf-8
2
- # Copyright (c) 2016 Nathan Currier
3
-
4
- # This Source Code Form is subject to the terms of the Mozilla Public
5
- # License, v. 2.0. If a copy of the MPL was not distributed with this
6
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
-
8
- if ENV['TRAVIS'] && ENV['DOCS']
9
- namespace :yard do
10
- if ENV['TRAVIS_PULL_REQUEST'] == 'false'
11
- require 'ghpages_deploy/rake_task'
12
-
13
- desc 'Deploy documentation to Github Pages'
14
- GithubPages::DeployTask.new(deploy: [:yard]) do |t|
15
- t.remote = 'origin'
16
- t.source = '_yardoc'
17
-
18
- tag = ENV['TRAVIS_TAG']
19
- branch = ENV['TRAVIS_BRANCH']
20
-
21
- if !tag.empty?
22
- t.register "doc/tag/#{tag}"
23
- elsif !branch.empty?
24
- t.register "doc/branch/#{branch}"
25
- end
26
- end
27
- else
28
- task :deploy do
29
- puts 'Documentation not generated for pull requests.'
30
- end
31
- end
32
- end
33
- end
@@ -1,14 +0,0 @@
1
- # encoding: utf-8
2
- # Copyright (c) 2016 Nathan Currier
3
-
4
- # This Source Code Form is subject to the terms of the Mozilla Public
5
- # License, v. 2.0. If a copy of the MPL was not distributed with this
6
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
-
8
- require 'rubocop/rake_task'
9
-
10
- RuboCop::RakeTask.new(:rubocop) do |t|
11
- t.fail_on_error = false
12
- end
13
-
14
- task('rubocop:auto_correct').clear
@@ -1,25 +0,0 @@
1
- # encoding: utf-8
2
- # Copyright (c) 2016 Nathan Currier
3
-
4
- # This Source Code Form is subject to the terms of the Mozilla Public
5
- # License, v. 2.0. If a copy of the MPL was not distributed with this
6
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
-
8
- require 'rake/testtask'
9
-
10
- Rake::TestTask.new(:test) do |t|
11
- t.libs << 'test'
12
- t.test_files = ['test/test_helper.rb']
13
- t.pattern = 'test/**/*_test.rb'
14
- t.verbose = true
15
- end
16
-
17
- namespace :test do
18
- desc 'Generate a test coverage report'
19
- task :coverage do
20
- ENV['COVERAGE'] = 'true'
21
- task(:test).invoke
22
- end
23
- end
24
-
25
- CLOBBER.include 'coverage'
@@ -1,14 +0,0 @@
1
- # encoding: utf-8
2
- # Copyright (c) 2016 Nathan Currier
3
-
4
- # This Source Code Form is subject to the terms of the Mozilla Public
5
- # License, v. 2.0. If a copy of the MPL was not distributed with this
6
- # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7
-
8
- require 'yard'
9
- require 'yard/rake/yardoc_task'
10
-
11
- YARD::Rake::YardocTask.new(:yard)
12
-
13
- CLEAN.include '.yardoc'
14
- CLOBBER.include '_yardoc'