kuzushi 0.0.22 → 0.0.23

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.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/lib/kuzushi.rb +1 -1
  3. data/spec/kuzushi_spec.rb +1 -1
  4. metadata +1 -1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.22
1
+ 0.0.23
@@ -47,7 +47,7 @@ class Kuzushi
47
47
  end
48
48
 
49
49
  def http_get(url)
50
- RestClient.get("#{@base_url}/#{name}")
50
+ RestClient.get(url)
51
51
  end
52
52
 
53
53
  def load_config_stack(name)
@@ -4,7 +4,7 @@ describe Kuzushi do
4
4
  before do
5
5
  @url = "http://myurl/foo"
6
6
  @kuzushi = Kuzushi.new(@url)
7
- @kuzushi.stubs(:log)
7
+ @kuzushi.stubs(:log) ## dont want to see the output
8
8
  @kuzushi.stubs(:config_names).returns(["foo"])
9
9
  @kuzushi.stubs(:load_config_stack)
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kuzushi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.22
4
+ version: 0.0.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Orion Henry