doubleshot 1.0.5-java → 1.0.6-java

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.
data/Doubleshot CHANGED
@@ -4,7 +4,7 @@ Doubleshot.new do |config|
4
4
 
5
5
  config.project = "doubleshot"
6
6
  config.group = "org.sam.doubleshot"
7
- config.version = "1.0.5"
7
+ config.version = "1.0.6"
8
8
 
9
9
  config.gem "minitest", ">= 3.0.1"
10
10
  config.gem "minitest-wscolor", ">= 0"
@@ -117,11 +117,7 @@ class Doubleshot::CLI::Commands::Init < Doubleshot::CLI
117
117
  begin
118
118
  eval(contents, Doubleshot::CLI::binding)
119
119
  rescue LoadError, SyntaxError => e
120
- original_line = e.backtrace.find { |line| line.include?(path.to_s) }
121
- msg = "There was a #{e.class} while evaluating #{gemspec_pathname.basename}: \n#{e.message}"
122
- msg << " from\n #{original_line}" if original_line
123
- msg << "\n"
124
- raise GemspecError, msg
120
+ raise Gem::InvalidSpecificationException, "There was a #{e.class} while evaluating gemspec: \n#{e.message}"
125
121
  end
126
122
  end
127
123
  end
Binary file
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: doubleshot
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.0.5
5
+ version: 1.0.6
6
6
  platform: java
7
7
  authors:
8
8
  - Sam Smoot
@@ -95,16 +95,11 @@ dependencies:
95
95
  none: false
96
96
  prerelease: false
97
97
  type: :development
98
- description: ! 'Doubleshot will download dependencies on demand, compile your Java
99
- sources and
100
-
98
+ description: |
99
+ Doubleshot will download dependencies on demand, compile your Java sources and
101
100
  let you spend most of your time in Ruby without having to juggle two different
102
-
103
101
  dependency management tools, different build tools and being forced to execute
104
-
105
102
  your code through Rake or Maven based tools.
106
-
107
- '
108
103
  email: ssmoot@gmail.com
109
104
  executables:
110
105
  - doubleshot
@@ -138,14 +133,10 @@ files:
138
133
  - test/resolver/gem_resolver_spec.rb
139
134
  - test/resolver/jar_resolver_spec.rb
140
135
  - test/resolver_spec.rb
141
- - !binary |-
142
- RG91Ymxlc2hvdA==
143
- - !binary |-
144
- TUlULUxJQ0VOU0U=
145
- - !binary |-
146
- UkVBRE1FLU9MRC50ZXh0aWxl
147
- - !binary |-
148
- UkVBRE1FLm1k
136
+ - Doubleshot
137
+ - MIT-LICENSE
138
+ - README-OLD.textile
139
+ - README.md
149
140
  - lib/doubleshot/cli/options.rb
150
141
  - lib/doubleshot/cli.rb
151
142
  - lib/doubleshot/commands/build.rb