circler 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/bin/circle +5 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/circler.gemspec +2 -2
- data/exe/circle +5 -0
- data/lib/circler/version.rb +1 -1
- metadata +8 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a241c3b96f188991e607a9b1204bde02ba5e2d1c
|
4
|
+
data.tar.gz: ef0d57593da7c58d14f0c6f2706f87737b793cc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f766894d64eba859a6a06ab57af0aaf8a3c8bdce514d41e6d922125c2728d6edc4088ab0d6db080b806f2ef23afac801f5b80af2f73b13f2b8261898f075dd51
|
7
|
+
data.tar.gz: 3d83a09a32add99b6da166d4da0173fb0f67b69f8c10619ae7e97118339926cc3e3b31d46a22594a8d2db482bb14db6a2bc903062c9117584b2b88a255cc5583
|
data/Gemfile.lock
CHANGED
data/bin/circle
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "circler"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/circler.gemspec
CHANGED
@@ -14,8 +14,8 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.homepage = "https://github.com/unhappychoice/circler"
|
15
15
|
spec.license = "MIT"
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
-
spec.bindir = "
|
18
|
-
spec.executables = spec.files.grep(%r{^
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
21
|
# Production
|
data/exe/circle
ADDED
data/lib/circler/version.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: circler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- unhappychoice
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
11
|
date: 2016-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -167,7 +167,8 @@ dependencies:
|
|
167
167
|
description: A command line tool for circle ci
|
168
168
|
email:
|
169
169
|
- unhappychoice@gmail.com
|
170
|
-
executables:
|
170
|
+
executables:
|
171
|
+
- circle
|
171
172
|
extensions: []
|
172
173
|
extra_rdoc_files: []
|
173
174
|
files:
|
@@ -176,8 +177,12 @@ files:
|
|
176
177
|
- LICENSE.txt
|
177
178
|
- README.md
|
178
179
|
- Rakefile
|
180
|
+
- bin/circle
|
181
|
+
- bin/console
|
182
|
+
- bin/setup
|
179
183
|
- circle.yml
|
180
184
|
- circler.gemspec
|
185
|
+
- exe/circle
|
181
186
|
- lib/circler.rb
|
182
187
|
- lib/circler/cli.rb
|
183
188
|
- lib/circler/command/base_command.rb
|