gemfury 0.4.26.beta1 → 0.4.26

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YTlmMmNjOWNiZGU4ZTE3ZmI0MGQ2OWE0YmViMmFjZDY0MTBlODU3Yg==
4
+ N2MyNzQzZGQxYTYwNzM1NDY5NzRjYWJmZGE3YTk3MzY2Mzg5ZTg2OA==
5
5
  data.tar.gz: !binary |-
6
- Y2QzNTUwY2RjYTM4OWMxMzU3MTQxYTQ5MmMzM2FiODc2YWQ3YTJlMA==
6
+ YjEyNmFjZTFkOGExY2YzZGU5NDhlNjYxY2FjZTQyMTU1YWQ1ZDc5Mg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YzAxOTRiZGFiY2VhZmExODRlNjk0ODg0MmY0NTAyZDJlZGYwZmRhZjI2M2Ni
10
- MjQ2NDY1NGYxODRiNjM3N2MzNmNhOTBlMjMwYmY4NmMxMzdlOTgxODg4NGY5
11
- NTViMTg1ZTM3ODA3ZGEzZGZmZDExN2ExZTk5NTY2YTVkMDU0NGU=
9
+ MmQ2ZWM0NGFhZWU4Yjk2NDEwZTY0N2Q4YjIwYTBiMGU1MTgwYTc5NGZlNjQz
10
+ MWNiODU2ODg0NTA4MDE5OGY0YWI3NzdlYjYxMDQzNWY3NGNjOWYxOTZkYmFl
11
+ MjcxZTQ0NDc0YmE1ODEyZGVlOTJhYjFmZWVhOWE5NjcxMTZiOTc=
12
12
  data.tar.gz: !binary |-
13
- NzY5NWExZDk4YjdmNjhiOTNlODM4MjEwMDc3OWYxOTA1OGFjNmNlMDQ1ODg5
14
- Y2U2NWM3MTE0MGU3ODhkOTVhZjM2MTIyNzU0OGEwN2UyOWY0ZTZlNjQ1YTg5
15
- ODBmZDEwZWY4ZGY5OTllMWZjNDJmYzkyNzYyM2M5MjM0OGY1Nzk=
13
+ OWVkMmFiZWNiZGNmZmNjYmE3N2QxMWMxZDhlNzRmM2U0YzUxZDdmZDhmMTI2
14
+ NzU0NDViNTY2NzRkMjVkODNmZmRiMWMyZmJhMzFiZGU1YTJhYmEwOTQ3ODI1
15
+ YTkwYjE5ODM3YWIzZDY0YTAwMTVkZmM1YTk5ZTUzZWEwNmUzOGI=
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  Gemfury CLI
2
2
  ===========
3
3
 
4
- <a href="http://badge.fury.io/rb/gemfury"><img src="https://badge.fury.io/rb/gemfury.svg" alt="Gem Version" height="18"></a>
4
+ [![Gem Version](https://badge.fury.io/rb/gemfury.svg)](http://badge.fury.io/rb/gemfury)
5
5
  [![Build Status](https://secure.travis-ci.org/gemfury/gemfury.svg?branch=master)](https://travis-ci.org/gemfury/gemfury)
6
+ [![Code Climate](https://codeclimate.com/github/gemfury/gemfury/badges/gpa.svg)](https://codeclimate.com/github/gemfury/gemfury)
6
7
 
7
8
  This is the Gemfury CLI used to manage your Gemfury packages from the command line. If you're
8
9
  familiar with the service and want to jump straight into command line action, please proceed to
@@ -4,7 +4,7 @@ require 'gemfury/command'
4
4
 
5
5
  namespace 'fury' do
6
6
  desc "Build gem and push it to Gemfury"
7
- task :release, :gemspec do |t, args|
7
+ task :release, [:gemspec, :as] do |t, args|
8
8
  gemspec = args[:gemspec] ||
9
9
  FileList["#{Dir.pwd}/*.gemspec"][0]
10
10
 
@@ -22,7 +22,11 @@ namespace 'fury' do
22
22
  end
23
23
 
24
24
  gemfile = File.basename(spec.cache_file)
25
- Gemfury::Command::App.start(['push', gemfile])
25
+
26
+ params = ['push', gemfile]
27
+ params << "--as=#{args[:as]}" if args[:as]
28
+
29
+ Gemfury::Command::App.start(params)
26
30
  end
27
31
  end
28
32
  end
@@ -1,3 +1,3 @@
1
1
  module Gemfury
2
- VERSION = '0.4.26.beta1'
2
+ VERSION = '0.4.26'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemfury
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.26.beta1
4
+ version: 0.4.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Rykov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-24 00:00:00.000000000 Z
11
+ date: 2015-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: highline
@@ -141,12 +141,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
141
141
  version: '0'
142
142
  required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  requirements:
144
- - - ! '>'
144
+ - - ! '>='
145
145
  - !ruby/object:Gem::Version
146
- version: 1.3.1
146
+ version: '0'
147
147
  requirements: []
148
148
  rubyforge_project:
149
- rubygems_version: 2.4.2
149
+ rubygems_version: 2.4.5
150
150
  signing_key:
151
151
  specification_version: 4
152
152
  summary: Cloud Gem Server for your private RubyGems