mtrack 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -0
- data/.ruby-version +1 -1
- data/Gemfile +1 -1
- data/lib/mtrack/version.rb +1 -1
- data/tasks/console.rb +12 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 439de667b6c0b7f7ce61aebbd7c2a24c0641ab26
|
4
|
+
data.tar.gz: 4cf4a18d41e844776342e8ae68c212dc5c4e45c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f91c1d16d72215d057e442ef805a9d0d5289f2a7226589bad09225c2c9caf96dfa6fa05637b633c3358d1fcf5298634b5eb3bdb3f4e948360b16f661c8f19de5
|
7
|
+
data.tar.gz: 5a34517412d35c0ba3e03124920bacb39f6812a67d9311598bc5233827ce8d3b918adb3e424c19cf4bd64080fa6e557aa11af75b6b2512271904f923261ee899
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.1.
|
1
|
+
2.1.5
|
data/Gemfile
CHANGED
data/lib/mtrack/version.rb
CHANGED
data/tasks/console.rb
CHANGED
@@ -2,6 +2,18 @@ desc "Open a console with the #{Bundler::GemHelper.gemspec.name} gem loaded"
|
|
2
2
|
task :console do
|
3
3
|
require Bundler::GemHelper.gemspec.name
|
4
4
|
|
5
|
+
if RUBY_VERSION >= "2"
|
6
|
+
begin
|
7
|
+
require "byebug"
|
8
|
+
rescue LoadError # rubocop:disable Lint/HandleExceptions
|
9
|
+
end
|
10
|
+
else
|
11
|
+
begin
|
12
|
+
require "debugger"
|
13
|
+
rescue LoadError # rubocop:disable Lint/HandleExceptions
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
5
17
|
if RUBY_VERSION >= "1.9"
|
6
18
|
begin
|
7
19
|
require "pry"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mtrack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriel de Oliveira
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: MTrack extends the functionality of modules and classes and enables them
|
14
14
|
to define public methods within groups. These methods can then be queried back even
|
@@ -63,7 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
63
|
version: '0'
|
64
64
|
requirements: []
|
65
65
|
rubyforge_project:
|
66
|
-
rubygems_version: 2.4.
|
66
|
+
rubygems_version: 2.4.4
|
67
67
|
signing_key:
|
68
68
|
specification_version: 4
|
69
69
|
summary: Group and track methods on classes and modules.
|