turbulence 1.2.2 → 1.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/bin/bule +10 -19
- data/lib/turbulence/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ddbf7b10c94cfd01747886dd397fa075fcc7dff
|
4
|
+
data.tar.gz: b93662fd01158ed29fcc2b9d308a8224582a91d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a3a2ba43cfb5fec98e4f99bea0408ad764d23bb00c77bda2684f58e0dcb5566cedaaab7154a433da560ba8613bdcb80210e4a6472376cd47d465da0f1e07022
|
7
|
+
data.tar.gz: f822adff77f5400bbbb9a7d86c8fe8319afd2d0d632b081f842addc18f42a8123d3cf87f5ab1fd8974056a755a16713be35d28a777d4087ad59cc270d8c856c8
|
data/Gemfile.lock
CHANGED
data/bin/bule
CHANGED
@@ -1,23 +1,14 @@
|
|
1
|
-
#!/usr/bin/env
|
2
|
-
|
3
|
-
|
4
|
-
#
|
5
|
-
# The application 'turbulence' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'turbulence'
|
3
|
+
require 'turbulence/checks_environment'
|
8
4
|
|
9
|
-
|
5
|
+
cli = Turbulence::CommandLineInterface.new(ARGV)
|
10
6
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
str = str.dup.force_encoding("BINARY") if str.respond_to? :force_encoding
|
16
|
-
if str =~ /\A_(.*)_\z/
|
17
|
-
version = $1
|
18
|
-
ARGV.shift
|
19
|
-
end
|
7
|
+
unless Turbulence::ChecksEnvironment.scm_repo?(Dir.pwd)
|
8
|
+
STDERR.puts "Turbulence could not calculate metrics, as we could not find a repository in the current directory."
|
9
|
+
STDERR.puts "Please run bule from inside a repository."
|
10
|
+
exit
|
20
11
|
end
|
21
12
|
|
22
|
-
|
23
|
-
|
13
|
+
cli.generate_bundle
|
14
|
+
cli.open_bundle
|
data/lib/turbulence/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: turbulence
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chad Fowler
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-
|
13
|
+
date: 2014-06-04 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: flog
|
@@ -159,3 +159,4 @@ test_files:
|
|
159
159
|
- spec/turbulence/scm/git_spec.rb
|
160
160
|
- spec/turbulence/scm/perforce_spec.rb
|
161
161
|
- spec/turbulence/turbulence_spec.rb
|
162
|
+
has_rdoc:
|