trello_effort_tracker 0.0.6 → 0.0.7
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/.rvmrc.template +2 -2
- data/CHANGELOG +3 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +5 -5
- data/Rakefile +1 -5
- data/lib/tasks/rspec.rake +17 -0
- data/lib/tasks/tasks.rake +0 -12
- data/lib/trello_effort_tracker/version.rb +1 -1
- metadata +4 -3
data/.rvmrc.template
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
rvm 1.9.3-
|
2
|
-
rvm wrapper 1.9.3-
|
1
|
+
rvm 1.9.3-p385@spikes --create
|
2
|
+
rvm wrapper 1.9.3-p385@spikes textmate
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
0.0.7
|
2
|
+
- Minor refactorings on the rake tasks
|
3
|
+
|
1
4
|
0.0.6
|
2
5
|
- Added TrackedCard#status to track card status: :todo if no effort has been spent, :done if the card is in a DONE column, :in_progress otherwise
|
3
6
|
- Added a Members#effort_spent and #effort_spent_since to extract the overall effort tracked by a member since a given date
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -11,7 +11,7 @@ PATH
|
|
11
11
|
ruby-trello
|
12
12
|
|
13
13
|
GEM
|
14
|
-
remote:
|
14
|
+
remote: https://rubygems.org/
|
15
15
|
specs:
|
16
16
|
activemodel (3.2.12)
|
17
17
|
activesupport (= 3.2.12)
|
@@ -48,9 +48,9 @@ GEM
|
|
48
48
|
jwt (0.1.5)
|
49
49
|
multi_json (>= 1.0)
|
50
50
|
mime-types (1.21)
|
51
|
-
mongoid (3.0
|
52
|
-
activemodel (~> 3.
|
53
|
-
moped (~> 1.2)
|
51
|
+
mongoid (3.1.0)
|
52
|
+
activemodel (~> 3.2)
|
53
|
+
moped (~> 1.4.2)
|
54
54
|
origin (~> 1.0)
|
55
55
|
tzinfo (~> 0.3.22)
|
56
56
|
mongoid-rspec (1.6.0)
|
@@ -58,7 +58,7 @@ GEM
|
|
58
58
|
rake
|
59
59
|
rspec (>= 2.9)
|
60
60
|
moped (1.4.2)
|
61
|
-
multi_json (1.
|
61
|
+
multi_json (1.6.0)
|
62
62
|
multi_xml (0.5.3)
|
63
63
|
multipart-post (1.1.5)
|
64
64
|
nokogiri (1.5.6)
|
data/Rakefile
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
require 'bundler'
|
3
3
|
require 'trello_effort_tracker'
|
4
|
-
require 'rspec/core/rake_task'
|
5
4
|
|
6
5
|
Bundler::GemHelper.install_tasks
|
7
|
-
RSpec::Core::RakeTask.new(:spec)
|
8
|
-
|
9
|
-
task :default => :spec
|
10
|
-
task :specs => :spec
|
11
6
|
|
12
7
|
import 'lib/tasks/tasks.rake'
|
8
|
+
import 'lib/tasks/rspec.rake'
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'rspec/core/rake_task'
|
2
|
+
RSpec::Core::RakeTask.new(:spec)
|
3
|
+
|
4
|
+
task :default => :spec
|
5
|
+
task :specs => :spec
|
6
|
+
|
7
|
+
namespace :spec do
|
8
|
+
desc "Run fast specs"
|
9
|
+
RSpec::Core::RakeTask.new(:fast) do |t|
|
10
|
+
t.rspec_opts = '--tag ~needs_valid_configuration'
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "Run slow specs"
|
14
|
+
RSpec::Core::RakeTask.new(:slow) do |t|
|
15
|
+
t.rspec_opts = '--tag needs_valid_configuration'
|
16
|
+
end
|
17
|
+
end
|
data/lib/tasks/tasks.rake
CHANGED
@@ -8,18 +8,6 @@ task :c, [:db_env] do |t, args|
|
|
8
8
|
Rake::Task[:console].invoke(args.db_env)
|
9
9
|
end
|
10
10
|
|
11
|
-
namespace :spec do
|
12
|
-
desc "Run fast specs"
|
13
|
-
RSpec::Core::RakeTask.new(:fast) do |t|
|
14
|
-
t.rspec_opts = '--tag ~needs_valid_configuration'
|
15
|
-
end
|
16
|
-
|
17
|
-
desc "Run slow specs"
|
18
|
-
RSpec::Core::RakeTask.new(:slow) do |t|
|
19
|
-
t.rspec_opts = '--tag needs_valid_configuration'
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
11
|
namespace :run do
|
24
12
|
include TrelloConfiguration
|
25
13
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trello_effort_tracker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-02-
|
12
|
+
date: 2013-02-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ruby-trello
|
@@ -242,6 +242,7 @@ files:
|
|
242
242
|
- lib/patches/trello/card.rb
|
243
243
|
- lib/patches/trello/member.rb
|
244
244
|
- lib/startup_trello.rb
|
245
|
+
- lib/tasks/rspec.rake
|
245
246
|
- lib/tasks/tasks.rake
|
246
247
|
- lib/trello_effort_tracker.rb
|
247
248
|
- lib/trello_effort_tracker/effort.rb
|
@@ -302,7 +303,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
302
303
|
version: 1.3.6
|
303
304
|
requirements: []
|
304
305
|
rubyforge_project:
|
305
|
-
rubygems_version: 1.8.
|
306
|
+
rubygems_version: 1.8.25
|
306
307
|
signing_key:
|
307
308
|
specification_version: 3
|
308
309
|
summary: You notify all the estimates and efforts of your Trello cards. This tool
|