github-trello-cl 0.1.2 → 0.1.3
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/trello.rb +1 -1
- data/trello.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f914e1c1b75f182956233bc85f1332d5de50a32
|
|
4
|
+
data.tar.gz: 829ed0553d651246d172f75cb80cacf200bc2d71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b6499b7aa60e9959df0ade8d7fbffd893f3d3fac6323301b60a420eda1f2ae5e4035e3581068f15c018d50c14a4d56a6ebb08f39ab63ed5e9705920e497f248
|
|
7
|
+
data.tar.gz: 47f41270d38b3209d5a0a97a0ca1fe840669145967565a8b20fadd2318fb654d190bd777787ae182b608d6e01b32eb079e84ddefadbdce36c4adfdbb62e9fb0e
|
data/Gemfile.lock
CHANGED
data/lib/trello.rb
CHANGED
|
@@ -24,7 +24,7 @@ module Trello
|
|
|
24
24
|
c.description = 'Generates a default config file for the Trello CLI so it can be used in this directory.'
|
|
25
25
|
c.option '--force', 'Overwrites an existing config file.'
|
|
26
26
|
c.action do |args, options|
|
|
27
|
-
if File.exist?
|
|
27
|
+
if File.exist?(CONFIG_FILE_NAME) && !options.force
|
|
28
28
|
abort "Config file already exists. Run 'trello init -f' to overwrite it."
|
|
29
29
|
end
|
|
30
30
|
|
data/trello.gemspec
CHANGED
|
@@ -2,7 +2,7 @@ $LOAD_PATH << File.expand_path('../lib', __FILE__)
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'github-trello-cl'
|
|
5
|
-
s.version = '0.1.
|
|
5
|
+
s.version = '0.1.3'
|
|
6
6
|
s.date = '2015-02-23'
|
|
7
7
|
s.summary = "Interface with trello"
|
|
8
8
|
s.description = "A tool to allow people using Trello as a workflow to interface with it via command line access to an API"
|