pivotcli 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/.bnsignore ADDED
@@ -0,0 +1,18 @@
1
+ # The list of files that should be ignored by Mr Bones.
2
+ # Lines that start with '#' are comments.
3
+ #
4
+ # A .gitignore file can be used instead by setting it as the ignore
5
+ # file in your Rakefile:
6
+ #
7
+ # Bones {
8
+ # ignore_file '.gitignore'
9
+ # }
10
+ #
11
+ # For a project with a C extension, the following would be a good set of
12
+ # exclude patterns (uncomment them if you want to use them):
13
+ # *.[oa]
14
+ # *~
15
+ announcement.txt
16
+ coverage
17
+ doc
18
+ pkg
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ pkg/*
data/NERD_tree_1 ADDED
@@ -0,0 +1,17 @@
1
+ " Press ? for help
2
+
3
+ .. (up a dir)
4
+ <rojects/riles/boners/pivotcli/
5
+ ▼ bin/
6
+ pivotcli*
7
+ ▼ lib/
8
+ ▶ pivotcli/
9
+ pivotcli.rb
10
+ ▶ pkg/
11
+ ▶ spec/
12
+ ▶ test/
13
+ History.txt
14
+ pivotcli.gemspec
15
+ Rakefile
16
+ README.md
17
+ version.txt
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  pivotcli
2
2
  ===========
3
3
 
4
- CLI for Pivotal Tracker
4
+ CLI for Pivotal Tracker powered by pivotal_tracker: jsmestad/pivotal-tracker
5
5
 
6
6
 
7
7
  Examples
@@ -10,6 +10,9 @@ Examples
10
10
  Add this to your ~/.pivotcli.yml
11
11
 
12
12
  token: 'your-pivotal-token'
13
+ ssl: true
14
+
15
+ Run this in your Terminal
13
16
 
14
17
  pivotcli -s started -p your_project -o 'Your Name' -t 'token'
15
18
 
@@ -15,6 +15,7 @@ class Runner
15
15
  end
16
16
 
17
17
  @pt_client = PivotalTracker::Client.token = @token
18
+ @pt_client = PivotalTracker::Client.use_ssl = @ssl
18
19
 
19
20
  @projects = PivotalTracker::Project.all
20
21
 
@@ -39,6 +40,7 @@ class Runner
39
40
  def load_config
40
41
  config = YAML.load_file("#{ENV['HOME']}/.pivotcli.yml")
41
42
  @token = config['token']
43
+ @ssl = config['ssl']
42
44
  end
43
45
 
44
46
  end
data/pivotcli.gemspec CHANGED
@@ -2,23 +2,22 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{pivotcli}
5
- s.version = "0.0.2"
5
+ s.version = "0.0.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Julius F"]
9
- s.date = %q{2011-04-19}
10
- s.default_executable = %q{pivotcli}
11
- s.description = %q{CLI for Pivotal Tracker}
9
+ s.date = %q{2011-04-20}
10
+ s.description = %q{CLI for Pivotal Tracker powered by pivotal_tracker: jsmestad/pivotal-tracker}
12
11
  s.email = %q{baldrailers@gmail.com}
13
12
  s.executables = ["pivotcli"]
14
13
  s.extra_rdoc_files = ["History.txt", "bin/pivotcli"]
15
- s.files = ["History.txt", "README.md", "Rakefile", "bin/pivotcli", "lib/pivotcli.rb", "lib/pivotcli/runner.rb", "pivotcli.gemspec", "spec/pivotcli_spec.rb", "spec/spec_helper.rb", "test/test_pivotcli.rb", "version.txt"]
14
+ s.files = [".bnsignore", ".gitignore", "History.txt", "NERD_tree_1", "README.md", "Rakefile", "bin/pivotcli", "lib/pivotcli.rb", "lib/pivotcli/runner.rb", "pivotcli.gemspec", "spec/pivotcli_spec.rb", "spec/spec_helper.rb", "test/test_pivotcli.rb", "version.txt"]
16
15
  s.homepage = %q{http://julius.weekendhack.in}
17
16
  s.rdoc_options = ["--main", "README.md"]
18
17
  s.require_paths = ["lib"]
19
18
  s.rubyforge_project = %q{pivotcli}
20
- s.rubygems_version = %q{1.6.2}
21
- s.summary = %q{CLI for Pivotal Tracker}
19
+ s.rubygems_version = %q{1.7.2}
20
+ s.summary = %q{CLI for Pivotal Tracker powered by pivotal_tracker: jsmestad/pivotal-tracker}
22
21
  s.test_files = ["test/test_pivotcli.rb"]
23
22
 
24
23
  if s.respond_to? :specification_version then
data/version.txt CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pivotcli
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Julius F
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-04-19 00:00:00 +08:00
19
- default_executable:
18
+ date: 2011-04-20 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: bones
@@ -34,7 +33,7 @@ dependencies:
34
33
  version: 3.6.5
35
34
  type: :development
36
35
  version_requirements: *id001
37
- description: CLI for Pivotal Tracker
36
+ description: "CLI for Pivotal Tracker powered by pivotal_tracker: jsmestad/pivotal-tracker"
38
37
  email: baldrailers@gmail.com
39
38
  executables:
40
39
  - pivotcli
@@ -44,7 +43,10 @@ extra_rdoc_files:
44
43
  - History.txt
45
44
  - bin/pivotcli
46
45
  files:
46
+ - .bnsignore
47
+ - .gitignore
47
48
  - History.txt
49
+ - NERD_tree_1
48
50
  - README.md
49
51
  - Rakefile
50
52
  - bin/pivotcli
@@ -55,7 +57,6 @@ files:
55
57
  - spec/spec_helper.rb
56
58
  - test/test_pivotcli.rb
57
59
  - version.txt
58
- has_rdoc: true
59
60
  homepage: http://julius.weekendhack.in
60
61
  licenses: []
61
62
 
@@ -86,9 +87,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
87
  requirements: []
87
88
 
88
89
  rubyforge_project: pivotcli
89
- rubygems_version: 1.6.2
90
+ rubygems_version: 1.7.2
90
91
  signing_key:
91
92
  specification_version: 3
92
- summary: CLI for Pivotal Tracker
93
+ summary: "CLI for Pivotal Tracker powered by pivotal_tracker: jsmestad/pivotal-tracker"
93
94
  test_files:
94
95
  - test/test_pivotcli.rb