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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 758ad4e9d1cc5a9b711b00b506e9785279118979
4
- data.tar.gz: 1070e56f4c7e83b3d684481c5a31a05342125338
3
+ metadata.gz: a241c3b96f188991e607a9b1204bde02ba5e2d1c
4
+ data.tar.gz: ef0d57593da7c58d14f0c6f2706f87737b793cc7
5
5
  SHA512:
6
- metadata.gz: 9d6e88b6a875e1dadc00f91abac62be4c0cca5f5f5f2c11d0cdd70569210189a2677b4cdbe250da0ede0b399be320201ddce307223baddd7be42e527a4bffacc
7
- data.tar.gz: 457f4f10d5a32d0e2d67c23ea280090fc216e1c936c6365cae1a626cfd33284c7aebf41e538f1c3b1998777e24636827eb8fdddab487987e5080efc267b81a9e
6
+ metadata.gz: f766894d64eba859a6a06ab57af0aaf8a3c8bdce514d41e6d922125c2728d6edc4088ab0d6db080b806f2ef23afac801f5b80af2f73b13f2b8261898f075dd51
7
+ data.tar.gz: 3d83a09a32add99b6da166d4da0173fb0f67b69f8c10619ae7e97118339926cc3e3b31d46a22594a8d2db482bb14db6a2bc903062c9117584b2b88a255cc5583
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- circler (0.1.1)
4
+ circler (0.1.2)
5
5
  circleci (~> 0.2.0)
6
6
  colorize (~> 0.7.7)
7
7
  faraday (~> 0.9.2)
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'circler'
4
+
5
+ Circler::CLI.start # ここ追加
@@ -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
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -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 = "bin"
18
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
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
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'circler'
4
+
5
+ Circler::CLI.start # ここ追加
@@ -1,3 +1,3 @@
1
1
  module Circler
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - unhappychoice
8
8
  autorequire:
9
- bindir: bin
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