gemstreamer 0.0.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION.yml CHANGED
@@ -1 +1,4 @@
1
- 0.0.1
1
+ ---
2
+ :minor: 0
3
+ :patch: 0
4
+ :major: 1
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 = "0.0.0"
8
+ s.version = "1.0.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"]
data/lib/publisher.rb CHANGED
@@ -21,6 +21,6 @@ class Gemstreamer::Publisher
21
21
  def publish_dependencies(gems)
22
22
  dep_hash = build_hash(gems)
23
23
  #todo apikey / authorisation
24
- RestClient.post "#{@host}/users/#{@user}/applications/#{@app}/deps", {"dependencies" => dep_hash }
24
+ RestClient.post "#{@host}/users/#{@user}/applications/#{@app}/deps", {"dependencies" => dep_hash } , :content_type => "application/json"
25
25
  end
26
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemstreamer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michel de Graaf