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 +8 -8
- data/README.md +2 -1
- data/lib/gemfury/tasks/release.rake +6 -2
- data/lib/gemfury/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
N2MyNzQzZGQxYTYwNzM1NDY5NzRjYWJmZGE3YTk3MzY2Mzg5ZTg2OA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YjEyNmFjZTFkOGExY2YzZGU5NDhlNjYxY2FjZTQyMTU1YWQ1ZDc5Mg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MmQ2ZWM0NGFhZWU4Yjk2NDEwZTY0N2Q4YjIwYTBiMGU1MTgwYTc5NGZlNjQz
|
10
|
+
MWNiODU2ODg0NTA4MDE5OGY0YWI3NzdlYjYxMDQzNWY3NGNjOWYxOTZkYmFl
|
11
|
+
MjcxZTQ0NDc0YmE1ODEyZGVlOTJhYjFmZWVhOWE5NjcxMTZiOTc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OWVkMmFiZWNiZGNmZmNjYmE3N2QxMWMxZDhlNzRmM2U0YzUxZDdmZDhmMTI2
|
14
|
+
NzU0NDViNTY2NzRkMjVkODNmZmRiMWMyZmJhMzFiZGU1YTJhYmEwOTQ3ODI1
|
15
|
+
YTkwYjE5ODM3YWIzZDY0YTAwMTVkZmM1YTk5ZTUzZWEwNmUzOGI=
|
data/README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
Gemfury CLI
|
2
2
|
===========
|
3
3
|
|
4
|
-
|
4
|
+
[](http://badge.fury.io/rb/gemfury)
|
5
5
|
[](https://travis-ci.org/gemfury/gemfury)
|
6
|
+
[](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
|
-
|
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
|
data/lib/gemfury/version.rb
CHANGED
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
|
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:
|
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:
|
146
|
+
version: '0'
|
147
147
|
requirements: []
|
148
148
|
rubyforge_project:
|
149
|
-
rubygems_version: 2.4.
|
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
|