leankitkanban 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ODkwY2UyNDM5YjMwYmVkN2QwY2RmNDRjOTVmOTg2NWNhNjVmNTA4OQ==
5
+ data.tar.gz: !binary |-
6
+ MjhkODUzZGI0YzRlY2EwYWQxN2QwMDA2NzFmOWI2MmY3OGMzNTgzZg==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ZTE1MTkwY2M0NmRlMTliNGVkNWVjMzI2ZTI0NTFhOTAyOWFmMzI5YTM1NTg4
10
+ YjgwZGZiNmFlZTJmN2VmOGJmNDA4ZmMxYTRmYmE2MzRlN2JiYTE1MzI5MmE4
11
+ NTdlZTIyYzg2OGY5MTkyZGM0YTg2ZjAzOGM5NTA2OWViNGUyZGE=
12
+ data.tar.gz: !binary |-
13
+ YmEzNGI0NzQzZmQwN2NhYmRjYzU0OTk3YzAwNmZkNTI1MDBmZWY2ZWE5NGUy
14
+ OTk4YWEyMzJlNDQ4ODEzYTc4MTE4Y2M5ZDY0ZWRjZjIyNTBjZmE2OTFiZGRm
15
+ YTZmMjYyZjk5ZmMwYmFiYWQxM2UwYTFmOWY4ZDZkNzQyNDlkMjE=
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/README.md CHANGED
@@ -5,6 +5,8 @@ LeanKitKanban is a simple ruby wrapper around the LeanKitKanban API
5
5
 
6
6
  http://leankitkanban.com/
7
7
 
8
+ [![Build Status](https://travis-ci.org/mlainez/leankitkanban.png?branch=master)](https://travis-ci.org/mlainez/leankitkanban)
9
+
8
10
  Usage
9
11
  -----
10
12
 
@@ -35,7 +37,7 @@ Usage
35
37
  # get a specific card from a board by external id
36
38
  @card = LeanKitKanban::Card.find_by_external_id(board_id, external_id)
37
39
 
38
- # add a card, specified in JSON, to the board
40
+ # add a card, specified in JSON, to the board
39
41
  @response = LeanKitKanban::Card.add(board_id, lane_id, position, body)
40
42
 
41
43
  # add multiple cards, specified in JSON, to the board
@@ -50,11 +52,12 @@ Usage
50
52
  # delete multiple cards from the board
51
53
  @response = LeanKitKanban::Card.delete_multiple(board_id, card_ids)
52
54
 
55
+ # move a card to another lane
56
+ @response = LeanKitKanban::Card.move(board_id, card_id, lane_id, position)
53
57
 
54
58
  # get board backlog
55
59
  @backlog = LeanKitKanban::Backlog.fetch(board_id)
56
60
 
57
-
58
61
  # get board archive
59
62
  @archive = LeanKitKanban::Archive.fetch(board_id)
60
63
 
@@ -73,4 +76,4 @@ Additional information
73
76
  * LeanKitKanban API doc: http://support.leankitkanban.com/forums/20153741-api
74
77
 
75
78
 
76
- Copyright (c) 2011 Marc Lainez
79
+ Copyright (c) 2011 Marc Lainez
@@ -1,41 +1,25 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
+ lib = File.expand_path('../lib/', __FILE__)
4
+ $:.unshift lib unless $:.include?(lib)
5
+
3
6
  Gem::Specification.new do |s|
4
- s.name = "leankitkanban"
5
- s.version = "0.1.4"
7
+ s.name = 'leankitkanban'
8
+ s.version = '0.1.5'
9
+ s.date = '2014-07-01'
10
+ s.summary = "leankitkanban-#{s.version}"
11
+ s.description = 'Ruby Wrapper around LeanKitKanban Api'
12
+ s.authors = ['Marc Lainez']
13
+ s.email = 'marc@spin42.com'
14
+ s.homepage = 'http://github.com/mlainez/leankitkanban'
6
15
 
7
- s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Marc Lainez"]
9
- s.date = "2013-06-11"
10
- s.description = "Ruby Wrapper around LeanKitKanban Api"
11
- s.email = "ml@theotherguys.be"
12
- s.extra_rdoc_files = ["LICENSE", "README.md", "lib/leankit_request.rb", "lib/leankitkanban.rb", "lib/leankitkanban/archive.rb", "lib/leankitkanban/backlog.rb", "lib/leankitkanban/board.rb", "lib/leankitkanban/card.rb", "lib/leankitkanban/config.rb", "lib/leankitkanban/version.rb"]
13
- s.files = ["Gemfile", "Gemfile.lock", "LICENSE", "Manifest", "README.md", "Rakefile", "lib/leankit_request.rb", "lib/leankitkanban.rb", "lib/leankitkanban/archive.rb", "lib/leankitkanban/backlog.rb", "lib/leankitkanban/board.rb", "lib/leankitkanban/card.rb", "lib/leankitkanban/config.rb", "lib/leankitkanban/version.rb", "spec/leankitkanban/archive_spec.rb", "spec/leankitkanban/backlog_spec.rb", "spec/leankitkanban/board_spec.rb", "spec/leankitkanban/card_spec.rb", "spec/leankitkanban/config_spec.rb", "spec/spec_helper.rb", "spec/support/config_helper.rb", "leankitkanban.gemspec"]
14
- s.homepage = "http://github.com/mlainez/leankitkanban"
15
- s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Leankitkanban", "--main", "README.md"]
16
+ s.files = `git ls-files`.split("\n").reject {|path| path =~ /\.gitignore$/ || path =~ /file$/ }
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
16
19
  s.require_paths = ["lib"]
17
- s.rubyforge_project = "leankitkanban"
18
- s.rubygems_version = "1.8.24"
19
- s.summary = "Ruby Wrapper around LeanKitKanban Api"
20
-
21
- if s.respond_to? :specification_version then
22
- s.specification_version = 3
23
20
 
24
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
25
- s.add_runtime_dependency(%q<json>, [">= 1.6.1"])
26
- s.add_runtime_dependency(%q<httparty>, ["= 0.8.1"])
27
- s.add_development_dependency(%q<echoe>, ["= 4.6.3"])
28
- s.add_development_dependency(%q<rspec>, ["= 2.7.0"])
29
- else
30
- s.add_dependency(%q<json>, [">= 1.6.1"])
31
- s.add_dependency(%q<httparty>, ["= 0.8.1"])
32
- s.add_dependency(%q<echoe>, ["= 4.6.3"])
33
- s.add_dependency(%q<rspec>, ["= 2.7.0"])
34
- end
35
- else
36
- s.add_dependency(%q<json>, [">= 1.6.1"])
37
- s.add_dependency(%q<httparty>, ["= 0.8.1"])
38
- s.add_dependency(%q<echoe>, ["= 4.6.3"])
39
- s.add_dependency(%q<rspec>, ["= 2.7.0"])
40
- end
21
+ s.add_development_dependency('rake', '~> 10.1.1')
22
+ s.add_development_dependency('rspec', '~> 2.14.1')
23
+ s.add_runtime_dependency('json', '~> 1.8.1')
24
+ s.add_runtime_dependency('httparty', '~> 0.12.0')
41
25
  end
@@ -2,7 +2,6 @@ module LeanKitKanban
2
2
  module Card
3
3
  include HTTParty
4
4
  include LeanKitRequest
5
-
6
5
  DELETE_CARD = "/Board/{boardID}/DeleteCard/{cardID}"
7
6
  DELETE_CARDS = "/Board/{boardID}/DeleteCards"
8
7
  FIND_CARD = "/Board/{boardID}/GetCard/{cardID}"
@@ -10,7 +9,8 @@ module LeanKitKanban
10
9
  ADD_CARD = "/Board/{boardID}/AddCard/Lane/{laneID}/Position/{position}"
11
10
  ADD_CARDS = "/Board/{boardID}/AddCards?wipOverrideComment={comment}"
12
11
  UPDATE_CARD = "/Board/{boardID}/UpdateCard/"
13
-
12
+ HISTORY_CARD = "/Card/History/{boardID}/{cardID}"
13
+ MOVE_CARD = "/Board/{boardID}/MoveCard/{cardID}/Lane/{laneID}/Position/{position}"
14
14
  def self.delete(board_id, card_id)
15
15
  api_call = DELETE_CARD.gsub("{boardID}", board_id.to_s).gsub("{cardID}", card_id.to_s)
16
16
  post(api_call, {})
@@ -21,6 +21,11 @@ module LeanKitKanban
21
21
  post(api_call, card_ids)
22
22
  end
23
23
 
24
+ def self.move(board_id, card_id,lane_id,position=0)
25
+ api_call = MOVE_CARD.gsub("{boardID}", board_id.to_s).gsub("{cardID}", card_id.to_s).gsub("{laneID}", lane_id.to_s).gsub("{position}", position.to_s)
26
+ post(api_call,{})
27
+ end
28
+
24
29
  def self.find(board_id, card_id)
25
30
  api_call = FIND_CARD.gsub("{boardID}", board_id.to_s).gsub("{cardID}", card_id.to_s)
26
31
  get(api_call)
@@ -30,7 +35,7 @@ module LeanKitKanban
30
35
  api_call = FIND_CARD_EXT.gsub("{boardID}", board_id.to_s).gsub("{externalID}", external_id.to_s)
31
36
  get(api_call)
32
37
  end
33
-
38
+
34
39
  def self.add(board_id, lane_id, position, body)
35
40
  api_call = ADD_CARD.gsub("{boardID}", board_id.to_s).gsub("{laneID}", lane_id.to_s).gsub("{position}", position.to_s)
36
41
  post(api_call, body)
@@ -45,5 +50,10 @@ module LeanKitKanban
45
50
  api_call = UPDATE_CARD.gsub("{boardID}", board_id.to_s)
46
51
  post(api_call, body)
47
52
  end
53
+
54
+ def self.history(board_id, card_id)
55
+ api_call = HISTORY_CARD.gsub("{boardID}", board_id.to_s).gsub("{cardID}", card_id.to_s)
56
+ get(api_call)
57
+ end
48
58
  end
49
- end
59
+ end
@@ -1,3 +1,3 @@
1
1
  module LeanKitKanban
2
- VERSION = "0.0.1"
3
- end
2
+ VERSION = "0.1.5"
3
+ end
@@ -3,7 +3,7 @@ require "spec_helper"
3
3
  describe LeanKitKanban::Archive do
4
4
  describe :fetch do
5
5
  before :each do
6
- @board_id = mock("boardID")
6
+ @board_id = double("boardID")
7
7
  end
8
8
 
9
9
  it "gets the board archive" do
@@ -3,7 +3,7 @@ require "spec_helper"
3
3
  describe LeanKitKanban::Backlog do
4
4
  describe :fetch do
5
5
  before :each do
6
- @board_id = mock("boardID")
6
+ @board_id = double("boardID")
7
7
  end
8
8
 
9
9
  it "gets the board backlog" do
@@ -15,7 +15,7 @@ describe LeanKitKanban::Board do
15
15
 
16
16
  describe :find do
17
17
  before :each do
18
- @board_id = mock("boardID")
18
+ @board_id = double("boardID")
19
19
  end
20
20
 
21
21
  it "gets the board whose id is passed as parameter" do
@@ -27,7 +27,7 @@ describe LeanKitKanban::Board do
27
27
 
28
28
  describe :get_identifiers do
29
29
  before :each do
30
- @board_id = mock("boardID")
30
+ @board_id = double("boardID")
31
31
  end
32
32
 
33
33
  it "gets the identifiers of the board whose id is passed as parameter" do
@@ -39,8 +39,8 @@ describe LeanKitKanban::Board do
39
39
 
40
40
  describe :get_newer_if_exists do
41
41
  before :each do
42
- @board_id = mock("boardID")
43
- @version_id = mock("versionID")
42
+ @board_id = double("boardID")
43
+ @version_id = double("versionID")
44
44
  end
45
45
 
46
46
  it "gets a greater version of the board than the one passed" do
@@ -52,8 +52,8 @@ describe LeanKitKanban::Board do
52
52
 
53
53
  describe :get_board_history_since do
54
54
  before :each do
55
- @board_id = mock("boardID")
56
- @version_id = mock("versionID")
55
+ @board_id = double("boardID")
56
+ @version_id = double("versionID")
57
57
  end
58
58
 
59
59
  it "gets a greater version of the board than the one passed" do
@@ -3,8 +3,8 @@ require "spec_helper"
3
3
  describe LeanKitKanban::Card do
4
4
  describe :find do
5
5
  before :each do
6
- @board_id = mock("boardID")
7
- @card_id = mock("cardID")
6
+ @board_id = double("boardID")
7
+ @card_id = double("cardID")
8
8
  end
9
9
 
10
10
  it "gets the board card whose id is passed" do
@@ -16,8 +16,8 @@ describe LeanKitKanban::Card do
16
16
 
17
17
  describe :find_by_external_id do
18
18
  before :each do
19
- @board_id = mock("boardID")
20
- @external_id = mock("externalID")
19
+ @board_id = double("boardID")
20
+ @external_id = double("externalID")
21
21
  end
22
22
 
23
23
  it "gets the board card whose id is passed" do
@@ -26,11 +26,11 @@ describe LeanKitKanban::Card do
26
26
  LeanKitKanban::Card.find_by_external_id(@board_id, @external_id)
27
27
  end
28
28
  end
29
-
30
- describe :delete_multiple do
29
+
30
+ describe :delete_multiple do
31
31
  before :each do
32
- @board_id = mock("boardID")
33
- @card_ids = [ mock("cardID_0"), mock("cardID_1"), mock("cardID_2") ]
32
+ @board_id = double("boardID")
33
+ @card_ids = [ double("cardID_0"), double("cardID_1"), double("cardID_2") ]
34
34
  end
35
35
 
36
36
  it "deletes the card whose ids are passed" do
@@ -40,10 +40,10 @@ describe LeanKitKanban::Card do
40
40
  end
41
41
  end
42
42
 
43
- describe :delete do
43
+ describe :delete do
44
44
  before :each do
45
- @board_id = mock("boardID")
46
- @card_id = mock("cardID")
45
+ @board_id = double("boardID")
46
+ @card_id = double("cardID")
47
47
  end
48
48
 
49
49
  it "deletes the board card whose id is passed" do
@@ -53,12 +53,12 @@ describe LeanKitKanban::Card do
53
53
  end
54
54
  end
55
55
 
56
- describe :add do
56
+ describe :add do
57
57
  before :each do
58
- @board_id = mock("boardID")
59
- @lane_id = mock("laneID")
60
- @position = mock("position")
61
- @body = { "Title" => mock("title"), "TypeId" => mock("typeID")}
58
+ @board_id = double("boardID")
59
+ @lane_id = double("laneID")
60
+ @position = double("position")
61
+ @body = { "Title" => double("title"), "TypeId" => double("typeID")}
62
62
  end
63
63
 
64
64
  it "adds the card into the lane and position provided" do
@@ -68,10 +68,10 @@ describe LeanKitKanban::Card do
68
68
  end
69
69
  end
70
70
 
71
- describe :update do
71
+ describe :update do
72
72
  before :each do
73
- @board_id = mock("boardID")
74
- @body = { "Id" => mock("Id"), "Title" => mock("title"), "Description" => mock("description") }
73
+ @board_id = double("boardID")
74
+ @body = { "Id" => double("Id"), "Title" => double("title"), "Description" => double("description") }
75
75
  end
76
76
 
77
77
  it "updates the card using the title and description provided" do
@@ -81,17 +81,17 @@ describe LeanKitKanban::Card do
81
81
  end
82
82
  end
83
83
 
84
- describe :add_multiple do
84
+ describe :add_multiple do
85
85
  before :each do
86
86
  @cards = []
87
- @board_id = mock("boardID")
87
+ @board_id = double("boardID")
88
88
  @wip_comment = "this is a comment"
89
-
90
- lane_ids = [ mock("lane_0"), mock("lane_1") ]
91
- titles = [ mock("title_0"), mock("title_1") ]
92
- type_ids = [ mock("type_0"), mock("type_1") ]
93
-
94
- lane_ids.each_with_index { |item, i|
89
+
90
+ lane_ids = [ double("lane_0"), double("lane_1") ]
91
+ titles = [ double("title_0"), double("title_1") ]
92
+ type_ids = [ double("type_0"), double("type_1") ]
93
+
94
+ lane_ids.each_with_index { |item, i|
95
95
  @cards[i] = { "LaneId" => lane_ids[i], "Title" => titles[i], "TypeId" => type_ids[i] }
96
96
  }
97
97
  end
@@ -102,4 +102,22 @@ describe LeanKitKanban::Card do
102
102
  LeanKitKanban::Card.add_multiple(@board_id, @wip_comment, @cards)
103
103
  end
104
104
  end
105
+
106
+ describe :history do
107
+ it "gets the history of card which id is provided" do
108
+ api_call = "/Card/History/#{@board_id}/#{@card_id}"
109
+ LeanKitKanban::Card.should_receive(:get).with(api_call)
110
+ LeanKitKanban::Card.history(@board_id, @card_id)
111
+ end
112
+ end
113
+
114
+ describe :move do
115
+ it "gets the history of card which id is provided" do
116
+ @lane_id = 12
117
+ @position = 0
118
+ api_call = "/Board/#{@board_id}/MoveCard/#{@card_id}/Lane/#{@lane_id}/Position/0"
119
+ LeanKitKanban::Card.should_receive(:post).with(api_call,{})
120
+ LeanKitKanban::Card.move(@board_id, @card_id, @lane_id, @position)
121
+ end
122
+ end
105
123
  end
@@ -25,11 +25,11 @@ describe LeanKitKanban::Config do
25
25
 
26
26
  context "when the config is set" do
27
27
  it "doesn't raise a no credentials error" do
28
- lambda{ LeanKitKanban::Config.validate }.should_not raise_error(LeanKitKanban::Config::NoCredentials)
28
+ lambda{ LeanKitKanban::Config.validate }.should_not raise_error
29
29
  end
30
30
 
31
31
  it "doesn't raise a no account error" do
32
- lambda{ LeanKitKanban::Config.validate }.should_not raise_error(LeanKitKanban::Config::NoAccount)
32
+ lambda{ LeanKitKanban::Config.validate }.should_not raise_error
33
33
  end
34
34
  end
35
35
  end
metadata CHANGED
@@ -1,102 +1,82 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: leankitkanban
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
5
- prerelease:
4
+ version: 0.1.5
6
5
  platform: ruby
7
6
  authors:
8
7
  - Marc Lainez
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-06-11 00:00:00.000000000 Z
11
+ date: 2014-07-01 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
- name: json
14
+ name: rake
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ~>
20
18
  - !ruby/object:Gem::Version
21
- version: 1.6.1
22
- type: :runtime
19
+ version: 10.1.1
20
+ type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ~>
28
25
  - !ruby/object:Gem::Version
29
- version: 1.6.1
26
+ version: 10.1.1
30
27
  - !ruby/object:Gem::Dependency
31
- name: httparty
28
+ name: rspec
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - '='
31
+ - - ~>
36
32
  - !ruby/object:Gem::Version
37
- version: 0.8.1
38
- type: :runtime
33
+ version: 2.14.1
34
+ type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - '='
38
+ - - ~>
44
39
  - !ruby/object:Gem::Version
45
- version: 0.8.1
40
+ version: 2.14.1
46
41
  - !ruby/object:Gem::Dependency
47
- name: echoe
42
+ name: json
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - '='
45
+ - - ~>
52
46
  - !ruby/object:Gem::Version
53
- version: 4.6.3
54
- type: :development
47
+ version: 1.8.1
48
+ type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - '='
52
+ - - ~>
60
53
  - !ruby/object:Gem::Version
61
- version: 4.6.3
54
+ version: 1.8.1
62
55
  - !ruby/object:Gem::Dependency
63
- name: rspec
56
+ name: httparty
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - '='
59
+ - - ~>
68
60
  - !ruby/object:Gem::Version
69
- version: 2.7.0
70
- type: :development
61
+ version: 0.12.0
62
+ type: :runtime
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - '='
66
+ - - ~>
76
67
  - !ruby/object:Gem::Version
77
- version: 2.7.0
68
+ version: 0.12.0
78
69
  description: Ruby Wrapper around LeanKitKanban Api
79
- email: ml@theotherguys.be
70
+ email: marc@spin42.com
80
71
  executables: []
81
72
  extensions: []
82
- extra_rdoc_files:
83
- - LICENSE
84
- - README.md
85
- - lib/leankit_request.rb
86
- - lib/leankitkanban.rb
87
- - lib/leankitkanban/archive.rb
88
- - lib/leankitkanban/backlog.rb
89
- - lib/leankitkanban/board.rb
90
- - lib/leankitkanban/card.rb
91
- - lib/leankitkanban/config.rb
92
- - lib/leankitkanban/version.rb
73
+ extra_rdoc_files: []
93
74
  files:
94
- - Gemfile
95
- - Gemfile.lock
75
+ - .rspec
96
76
  - LICENSE
97
77
  - Manifest
98
78
  - README.md
99
- - Rakefile
79
+ - leankitkanban.gemspec
100
80
  - lib/leankit_request.rb
101
81
  - lib/leankitkanban.rb
102
82
  - lib/leankitkanban/archive.rb
@@ -112,35 +92,34 @@ files:
112
92
  - spec/leankitkanban/config_spec.rb
113
93
  - spec/spec_helper.rb
114
94
  - spec/support/config_helper.rb
115
- - leankitkanban.gemspec
116
95
  homepage: http://github.com/mlainez/leankitkanban
117
96
  licenses: []
97
+ metadata: {}
118
98
  post_install_message:
119
- rdoc_options:
120
- - --line-numbers
121
- - --inline-source
122
- - --title
123
- - Leankitkanban
124
- - --main
125
- - README.md
99
+ rdoc_options: []
126
100
  require_paths:
127
101
  - lib
128
102
  required_ruby_version: !ruby/object:Gem::Requirement
129
- none: false
130
103
  requirements:
131
104
  - - ! '>='
132
105
  - !ruby/object:Gem::Version
133
106
  version: '0'
134
107
  required_rubygems_version: !ruby/object:Gem::Requirement
135
- none: false
136
108
  requirements:
137
109
  - - ! '>='
138
110
  - !ruby/object:Gem::Version
139
- version: '1.2'
111
+ version: '0'
140
112
  requirements: []
141
- rubyforge_project: leankitkanban
142
- rubygems_version: 1.8.24
113
+ rubyforge_project:
114
+ rubygems_version: 2.1.11
143
115
  signing_key:
144
- specification_version: 3
145
- summary: Ruby Wrapper around LeanKitKanban Api
146
- test_files: []
116
+ specification_version: 4
117
+ summary: leankitkanban-0.1.5
118
+ test_files:
119
+ - spec/leankitkanban/archive_spec.rb
120
+ - spec/leankitkanban/backlog_spec.rb
121
+ - spec/leankitkanban/board_spec.rb
122
+ - spec/leankitkanban/card_spec.rb
123
+ - spec/leankitkanban/config_spec.rb
124
+ - spec/spec_helper.rb
125
+ - spec/support/config_helper.rb
data/Gemfile DELETED
@@ -1,9 +0,0 @@
1
- source :rubygems
2
-
3
- gem "echoe", '4.6.3'
4
- gem "httparty", '0.8.1'
5
- gem "json", '1.7.5'
6
-
7
- group :test do
8
- gem 'rspec', '2.7.0'
9
- end
@@ -1,41 +0,0 @@
1
- GEM
2
- remote: http://rubygems.org/
3
- specs:
4
- allison (2.0.3)
5
- diff-lcs (1.1.3)
6
- echoe (4.6.3)
7
- allison (>= 2.0.3)
8
- gemcutter (>= 0.7.0)
9
- rake (>= 0.9.2)
10
- rdoc (>= 3.6.1)
11
- rubyforge (>= 2.0.4)
12
- gemcutter (0.7.1)
13
- httparty (0.8.1)
14
- multi_json
15
- multi_xml
16
- json (1.7.5)
17
- json_pure (1.8.0)
18
- multi_json (1.7.6)
19
- multi_xml (0.5.4)
20
- rake (10.0.4)
21
- rdoc (4.0.1)
22
- json (~> 1.4)
23
- rspec (2.7.0)
24
- rspec-core (~> 2.7.0)
25
- rspec-expectations (~> 2.7.0)
26
- rspec-mocks (~> 2.7.0)
27
- rspec-core (2.7.1)
28
- rspec-expectations (2.7.0)
29
- diff-lcs (~> 1.1.2)
30
- rspec-mocks (2.7.0)
31
- rubyforge (2.0.4)
32
- json_pure (>= 1.1.7)
33
-
34
- PLATFORMS
35
- ruby
36
-
37
- DEPENDENCIES
38
- echoe (= 4.6.3)
39
- httparty (= 0.8.1)
40
- json (= 1.7.5)
41
- rspec (= 2.7.0)
data/Rakefile DELETED
@@ -1,15 +0,0 @@
1
- require 'rubygems'
2
- require 'rake'
3
- require 'echoe'
4
-
5
- Echoe.new('leankitkanban', '0.1.4') do |p|
6
- p.description = "Ruby Wrapper around LeanKitKanban Api"
7
- p.url = "http://github.com/mlainez/leankitkanban"
8
- p.author = "Marc Lainez"
9
- p.email = "ml@theotherguys.be"
10
- p.ignore_pattern = ["tmp/*", "script/*"]
11
- p.runtime_dependencies = ['json >=1.6.1', 'httparty =0.8.1']
12
- p.development_dependencies = ['echoe =4.6.3', 'rspec =2.7.0']
13
- end
14
-
15
- Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }