gemstreamer 1.0.0 → 1.1.0
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/VERSION.yml +1 -1
- data/bin/gemstreamer +5 -2
- data/gemstreamer.gemspec +1 -1
- metadata +1 -1
data/VERSION.yml
CHANGED
data/bin/gemstreamer
CHANGED
@@ -26,8 +26,10 @@ command :publish do |c|
|
|
26
26
|
begin
|
27
27
|
dep = Gemstreamer::Dependencies.new(".")
|
28
28
|
dependencies = dep.dependencies
|
29
|
-
|
30
|
-
|
29
|
+
#shit goes to hell when the e
|
30
|
+
rescue Exception => e
|
31
|
+
puts "Can't load or find config/environment. \nExecute this command in your rails app and make sure your environment can be loaded."
|
32
|
+
raise e
|
31
33
|
end
|
32
34
|
|
33
35
|
|
@@ -37,6 +39,7 @@ command :publish do |c|
|
|
37
39
|
rescue Exception => e
|
38
40
|
puts "This application is a proof of concept, and it looks like its not working for you. Here's what went wrong:"
|
39
41
|
puts e.inspect
|
42
|
+
raise e
|
40
43
|
end
|
41
44
|
end
|
42
45
|
end
|
data/gemstreamer.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{gemstreamer}
|
8
|
-
s.version = "1.
|
8
|
+
s.version = "1.1.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Michel de Graaf", "Ludo van den Boom"]
|