lolcommits-dotcom 0.1.1 → 0.2.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
  SHA256:
3
- metadata.gz: ea5f063a4964a60d162cc626b33bfd171a9d9e8d1a2dbea832715544b31771c8
4
- data.tar.gz: 9189f34d750817071e4231ceeeacc15efc1d4b5e7e218ca00a8fbcbf347938ce
3
+ metadata.gz: 82afeaad377cfd903f698a0274b91ec9e9c6c6aec2277c3395d8785df54ae3ed
4
+ data.tar.gz: 61cde50f4a3528801aa1a6692f1047538753c58a7a4e603cec27dd482ed313c4
5
5
  SHA512:
6
- metadata.gz: 1f291bb24fc982d600ca30b57e615d501d3616a55373441b687210fad1bc160ba6bf4ebb9c8cbb368aea0c6deab5875a855a7dcdb7eadc212fe6feca0c8a3238
7
- data.tar.gz: 38ca3155079c019765bcb1c7c7d1647659c28d54fa614ec83b48d27d42edcc985810aec515c508be3370d00b832390bc2a31d4752e0f16151100370ada36204c
6
+ metadata.gz: 0c5f611124664d04b336dd8f971b18a3a4f96f3557e894f3f8b8c267f2c637e445f5630594fc14a35b3bf566b74b744146f460746e8d771e4e1141a3df16e06e
7
+ data.tar.gz: d2e1e5d97e6d01722260fa5147f7cd4d9efbc36ff6516c88dcc2db8b1d27062ea9b5444030e0afcd2bb159a4546e0180ac1728ef4ed005ccfb6fd066ebe10e37
@@ -2,16 +2,13 @@ sudo: false
2
2
  language: ruby
3
3
  cache: bundler
4
4
  rvm:
5
- - 2.1.10
6
- - 2.2.9
7
- - 2.3.6
8
- - 2.4.3
9
- - 2.5.1
5
+ - 2.3.8
6
+ - 2.4.6
7
+ - 2.5.5
8
+ - 2.6.3
10
9
  - ruby-head
11
10
 
12
11
  before_install:
13
- - gem update --system
14
- - gem install bundler
15
12
  - git --version
16
13
  - git config --global user.email "lol@commits.org"
17
14
  - git config --global user.name "Lolcommits"
@@ -2,13 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- The format is based on [Keep a Changelog](KeepAChangelog) and this project
6
- adheres to [Semantic Versioning](Semver).
5
+ The format is based on [Keep a Changelog][KeepAChangelog] and this project
6
+ adheres to [Semantic Versioning][Semver].
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
10
  - Your contribution here!
11
11
 
12
+ ## [0.2.0] - 2019-04-24
13
+ ### Removed
14
+ - Support for Ruby < 2.3 (older rubies no longer supported)
15
+
16
+ ### Added
17
+ - `frozen_string_literal: true` to all ruby files
18
+
12
19
  ## [0.1.1] - 2018-05-24
13
20
  ### Changed
14
21
  - Updated gemspec meta data links.
@@ -42,7 +49,8 @@ adheres to [Semantic Versioning](Semver).
42
49
  ### Changed
43
50
  - Initial release
44
51
 
45
- [Unreleased]: https://github.com/lolcommits/lolcommits-dotcom/compare/v0.1.1...HEAD
52
+ [Unreleased]: https://github.com/lolcommits/lolcommits-dotcom/compare/v0.2.0...HEAD
53
+ [0.2.0]: https://github.com/lolcommits/lolcommits-dotcom/compare/v0.1.1...v0.2.0
46
54
  [0.1.1]: https://github.com/lolcommits/lolcommits-dotcom/compare/v0.1.0...v0.1.1
47
55
  [0.1.0]: https://github.com/lolcommits/lolcommits-dotcom/compare/v0.0.5...v0.1.0
48
56
  [0.0.5]: https://github.com/lolcommits/lolcommits-dotcom/compare/v0.0.4...v0.0.5
@@ -1,2 +1,4 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'lolcommits/dotcom/version'
2
4
  require 'lolcommits/plugin/dotcom'
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Lolcommits
2
4
  module Dotcom
3
- VERSION = "0.1.1".freeze
5
+ VERSION = "0.2.0".freeze
4
6
  end
5
7
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rest-client'
2
4
  require 'lolcommits/plugin/base'
3
5
 
@@ -1,22 +1,20 @@
1
- # coding: utf-8
2
1
  lib = File.expand_path('../lib', __FILE__)
3
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
3
  require 'lolcommits/dotcom/version'
5
4
 
6
5
  Gem::Specification.new do |spec|
7
- spec.name = "lolcommits-dotcom"
8
- spec.version = Lolcommits::Dotcom::VERSION
9
- spec.authors = ["Matthew Hutchinson"]
10
- spec.email = ["matt@hiddenloop.com"]
11
- spec.summary = %q{Uploads lolcommits to a remote server}
12
-
13
- spec.description = <<-EOF
6
+ spec.name = "lolcommits-dotcom"
7
+ spec.version = Lolcommits::Dotcom::VERSION
8
+ spec.authors = ["Matthew Hutchinson"]
9
+ spec.email = ["matt@hiddenloop.com"]
10
+ spec.summary = %q{Uploads lolcommits to a remote server}
11
+ spec.homepage = "https://github.com/lolcommits/lolcommits-dotcom"
12
+ spec.license = "LGPL-3"
13
+
14
+ spec.description = <<-DESC
14
15
  Uploads lolcommits to a remote server, with optional key or HTTP based
15
16
  authentication.
16
- EOF
17
-
18
- spec.homepage = "https://github.com/lolcommits/lolcommits-dotcom"
19
- spec.license = "LGPL-3"
17
+ DESC
20
18
 
21
19
  spec.metadata = {
22
20
  "homepage_uri" => "https://github.com/lolcommits/lolcommits-dotcom",
@@ -40,7 +38,7 @@ Gem::Specification.new do |spec|
40
38
  spec.executables = []
41
39
  spec.require_paths = ["lib"]
42
40
 
43
- spec.required_ruby_version = ">= 2.1"
41
+ spec.required_ruby_version = ">= 2.3"
44
42
 
45
43
  spec.add_runtime_dependency "rest-client"
46
44
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "test_helper"
2
4
  require 'webmock/minitest'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
4
 
3
5
  # lolcommits gem
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lolcommits-dotcom
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Hutchinson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-24 00:00:00.000000000 Z
11
+ date: 2019-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -167,15 +167,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
167
167
  requirements:
168
168
  - - ">="
169
169
  - !ruby/object:Gem::Version
170
- version: '2.1'
170
+ version: '2.3'
171
171
  required_rubygems_version: !ruby/object:Gem::Requirement
172
172
  requirements:
173
173
  - - ">="
174
174
  - !ruby/object:Gem::Version
175
175
  version: '0'
176
176
  requirements: []
177
- rubyforge_project:
178
- rubygems_version: 2.7.6
177
+ rubygems_version: 3.0.3
179
178
  signing_key:
180
179
  specification_version: 4
181
180
  summary: Uploads lolcommits to a remote server