gsm-sources-manager 1.0.0.alpha3 → 1.0.0.alpha4

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: 12da50828be7254189baef27968230f6fc3696d3
4
- data.tar.gz: faac18567bbc3266f32753c7fd929cddfa74cc1a
3
+ metadata.gz: dec439f44915a9c491d00484368c241b819e6b67
4
+ data.tar.gz: 045a0462eb0e1c1cf2078e87c0027b69b5eae1f5
5
5
  SHA512:
6
- metadata.gz: 2723cabff978cc5b53ef2d199d04ef770842120a5cf52b295d1c124dce951ab7a83c250bf6a83765598ba9b69b0459a5f3b98d060c127df4c1b60f13c4c24f41
7
- data.tar.gz: 7480e75dd0b8c78da22823f687f7a40e02500a306184504061024ea8cce3591cd396a8073c4117b52f7c382ca013d62bb739193d56f95a0452591b66e8305654
6
+ metadata.gz: b91b4f4b830489e9bcded3bedcd3c598255c0e019d648909b1e07e6de0fa0bab84649e6ae03b3cb53f783e461875b44c0896d5c4cac2a1e4439d4bc5a0b377b2
7
+ data.tar.gz: cfb29566d1e6eb2f42be2df8da7ef35b75506b5c72d83005ea4efe3f086ffc17747d91a0bf47cd2ebf0e2f2706aa735434542a4c59f6c42f854c96f91859b5ff
data/.travis.yml CHANGED
@@ -1,7 +1,8 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  rvm:
4
- - 2.3.0
4
+ - 2.3.1
5
+ - 2.2.5
5
6
  env:
6
7
  - GSM_TEST_MODE=CI
7
8
  addons:
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  # GSM Sources Manager for Ruby Gems
2
2
 
3
- ![](https://img.shields.io/badge/license-MIT-blue.svg)
3
+ [![Gem Version](https://badge.fury.io/rb/gsm-sources-manager.svg)](https://badge.fury.io/rb/gsm-sources-manager)
4
4
  [![](https://api.travis-ci.org/crispgm/gsm.svg)](https://travis-ci.org/crispgm/gsm)
5
+ [![Build status](https://ci.appveyor.com/api/projects/status/3mgxei9imr94w67k?svg=true)](https://ci.appveyor.com/project/crispgm/gsm)
5
6
  [![Code Climate](https://codeclimate.com/github/crispgm/gsm/badges/gpa.svg)](https://codeclimate.com/github/crispgm/gsm)
6
7
  [![Test Coverage](https://codeclimate.com/github/crispgm/gsm/badges/coverage.svg)](https://codeclimate.com/github/crispgm/gsm/coverage)
7
8
  [![Join the chat at https://gitter.im/crispgm/gsm](https://badges.gitter.im/crispgm/gsm.svg)](https://gitter.im/crispgm/gsm?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
data/appveyor.yml ADDED
@@ -0,0 +1,24 @@
1
+ version: 1.0.{build}-{branch}
2
+
3
+ cache:
4
+ - vendor/bundle
5
+
6
+ environment:
7
+ matrix:
8
+ - RUBY_VERSION: 22
9
+ - RUBY_VERSION: 23
10
+
11
+ install:
12
+ - set PATH=C:\Ruby%RUBY_VERSION%\bin;%PATH%
13
+ - bundle config --local path vendor/bundle
14
+ - bundle install
15
+
16
+ build: off
17
+
18
+ before_test:
19
+ - ruby -v
20
+ - gem -v
21
+ - bundle -v
22
+
23
+ test_script:
24
+ - bundle exec rake
@@ -1,3 +1,11 @@
1
- - version: 1.0.0.alpha
1
+ - version: "1.0.0.alpha3"
2
2
  changes:
3
- - text: Initial Alpha Version
3
+ - text: "Release on RubyGem"
4
+ - text: "Bugfix: write conf to user directory"
5
+ issue: 5
6
+ - version: "1.0.0.alpha2"
7
+ changes:
8
+ - text: "Limit number of gem sources"
9
+ - version: "1.0.0.alpha"
10
+ changes:
11
+ - text: "Initial Alpha Version"
@@ -8,6 +8,7 @@
8
8
  <script async defer src="https://buttons.github.io/buttons.js"></script>
9
9
  <script src="https://crispgm.com/script/highlight.pack.js"></script>
10
10
  <link rel="stylesheet" href="https://crispgm.com/css/zenburn.css">
11
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
11
12
  <script>hljs.initHighlightingOnLoad();</script>
12
13
  </head>
13
14
  <body>
data/docs/css/style.css CHANGED
@@ -169,6 +169,15 @@ code.highlighter-rouge {
169
169
  font-size: 2rem;
170
170
  padding-bottom: 1rem;
171
171
  }
172
+ .content-title-icon {
173
+ font-size: 1.5rem;
174
+ }
175
+ .content-title-icon a {
176
+ color: #fbfbfb;
177
+ }
178
+ .content-title:hover .content-title-icon a {
179
+ color: #333;
180
+ }
172
181
  footer {
173
182
  /*text-align: center;*/
174
183
  font-size: 1.2rem;
data/docs/index.html CHANGED
@@ -31,7 +31,10 @@ layout: default
31
31
  </div>
32
32
  <div id="install" class="content">
33
33
  <div class="content-title">
34
- Installation
34
+ <span class="content-title-text">Installation</span>
35
+ <span class="content-title-icon">
36
+ <a href="#install"><i class="fa fa-paragraph"></i></a>
37
+ </span>
35
38
  </div>
36
39
  <div>
37
40
  {{ site.data.index.install | markdownify }}
@@ -42,7 +45,10 @@ layout: default
42
45
  </div>
43
46
  <div id="guide" class="content">
44
47
  <div class="content-title">
45
- User Guide
48
+ <span class="content-title-text">User Guide</span>
49
+ <span class="content-title-icon">
50
+ <a href="#guide"><i class="fa fa-paragraph"></i></a>
51
+ </span>
46
52
  </div>
47
53
  {{ site.data.index.guide | markdownify }}
48
54
  <div class="back-top">
@@ -51,7 +57,10 @@ layout: default
51
57
  </div>
52
58
  <div id="changelog" class="content">
53
59
  <div class="content-title">
54
- Changelog
60
+ <span class="content-title-text">Changelog</span>
61
+ <span class="content-title-icon">
62
+ <a href="#changelog"><i class="fa fa-paragraph"></i></a>
63
+ </span>
55
64
  </div>
56
65
  {% for change in site.data.changelog %}
57
66
  <h3>Version {{ change.version }}</h3>
@@ -72,7 +81,10 @@ layout: default
72
81
  </div>
73
82
  <div id="contributing" class="content">
74
83
  <div class="content-title">
75
- Contributing
84
+ <span class="content-title-text">Contributing</span>
85
+ <span class="content-title-icon">
86
+ <a href="#contributing"><i class="fa fa-paragraph"></i></a>
87
+ </span>
76
88
  </div>
77
89
  {{ site.data.index.contrib | markdownify }}
78
90
  <div class="back-top">
data/gsm.gemspec CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "https://github.com/crispgm/gsm"
14
14
  spec.license = "MIT"
15
15
 
16
- spec.required_ruby_version = '>= 2.3.0'
16
+ spec.required_ruby_version = '>= 2.2.5'
17
17
 
18
18
  spec.files = `git ls-files -z`.split("\x0")
19
19
  spec.bindir = "exe"
data/lib/gsm/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Gsm
2
- VERSION = "1.0.0.alpha3".freeze
2
+ VERSION = "1.0.0.alpha4".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gsm-sources-manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.alpha3
4
+ version: 1.0.0.alpha4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Zhang
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-10-18 00:00:00.000000000 Z
11
+ date: 2016-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -83,6 +83,7 @@ files:
83
83
  - LICENSE
84
84
  - README.md
85
85
  - Rakefile
86
+ - appveyor.yml
86
87
  - docs/.gitignore
87
88
  - docs/_config.yml
88
89
  - docs/_data/changelog.yml
@@ -116,7 +117,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
116
117
  requirements:
117
118
  - - ">="
118
119
  - !ruby/object:Gem::Version
119
- version: 2.3.0
120
+ version: 2.2.5
120
121
  required_rubygems_version: !ruby/object:Gem::Requirement
121
122
  requirements:
122
123
  - - ">"