gitmine 0.1.0 → 0.1.1
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/.gitmine.yml +2 -0
- data/Gemfile +4 -2
- data/VERSION +1 -1
- data/bin/gitmine +1 -8
- data/gitmine.gemspec +2 -1
- data/lib/gitmine.rb +5 -4
- data/spec/config.yml +0 -1
- data/spec/issue_spec.rb +1 -1
- data/spec/spec_helper.rb +3 -2
- metadata +3 -2
data/.gitmine.yml
ADDED
data/Gemfile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/bin/gitmine
CHANGED
data/gitmine.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{gitmine}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Philippe Creux"]
|
@@ -21,6 +21,7 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.files = [
|
22
22
|
".document",
|
23
23
|
".gitignore",
|
24
|
+
".gitmine.yml",
|
24
25
|
"Gemfile",
|
25
26
|
"LICENSE",
|
26
27
|
"README.rdoc",
|
data/lib/gitmine.rb
CHANGED
data/spec/config.yml
CHANGED
data/spec/issue_spec.rb
CHANGED
@@ -10,7 +10,7 @@ describe Issue do
|
|
10
10
|
|
11
11
|
describe "#config" do
|
12
12
|
it "should load the config from config.yml" do
|
13
|
-
issue.config.should == {"
|
13
|
+
issue.config.should == {"host"=>"http://localhost:3000", "api_key"=>"api_key"}
|
14
14
|
end
|
15
15
|
end
|
16
16
|
|
data/spec/spec_helper.rb
CHANGED
@@ -3,9 +3,10 @@ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
3
3
|
|
4
4
|
#ENV['BUNDLE_GEMFILE'] = File.expand_path('../../Gemfile', __FILE__)
|
5
5
|
|
6
|
-
require 'rubygems'
|
7
6
|
require "bundler"
|
8
|
-
Bundler.
|
7
|
+
Bundler.load
|
8
|
+
|
9
|
+
require 'rspec'
|
9
10
|
|
10
11
|
require 'gitmine'
|
11
12
|
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 0.1.
|
8
|
+
- 1
|
9
|
+
version: 0.1.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Philippe Creux
|
@@ -67,6 +67,7 @@ extra_rdoc_files:
|
|
67
67
|
files:
|
68
68
|
- .document
|
69
69
|
- .gitignore
|
70
|
+
- .gitmine.yml
|
70
71
|
- Gemfile
|
71
72
|
- LICENSE
|
72
73
|
- README.rdoc
|