stable_profile 0.2.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7535c8c237b683dbe3aba3d589a5a1635275f03d8fb84e3d8c707a96aad75549
4
- data.tar.gz: 428643bad201c8b79dfac6d5815974c25c6972002323c7b4c3e2771dbb6326c2
3
+ metadata.gz: 302e1a928fc81f6d35e7f00419d6def5389f84ffbee1a49c37d46268c0769fd0
4
+ data.tar.gz: 172cc9fffbf9c3601328f23be2ed0c49551d9849131fdb8898f6117b04d99e1d
5
5
  SHA512:
6
- metadata.gz: b3c1783ac48fcb1b8d424bd5c48954e3a7099cea9774de3e6052e88caeed2165f9b1ed505f9c2377fac289f2719a59a9b3af3923e5266957bd6841e827d4146c
7
- data.tar.gz: b31de05ec4cea2ba89a09e4ae284815d6cdbc9e5abf69f901f8748292d8849f0b4e5470be731dc778c32edadd26d6ea0ec93132ccef34525e2ea9bc2b81eaa83
6
+ metadata.gz: dbf59497da62a1ded24a969a699baeb26819b974069db9bd0c126c8c4ea9acecf46b44822b851a39ccf511fc9ede30aaccaebb0dfca296bcd13525db8737db61
7
+ data.tar.gz: f0f6877b89257b90aaca0868af3c5eb4209a2dbc007287de54a7e6aa19b3edbf6a73616bd878df52534eab03538d0ca56e81d3e0a67d6b63117087c5e7873c25
@@ -1,10 +1,12 @@
1
1
  require 'thor'
2
+ require 'stable_profile'
3
+
2
4
 
3
5
  module StableProfile
4
6
  class CLI < Thor
5
7
  desc "profile", "Run RSpec profile with predictable results."
6
8
  def profile
7
- puts "Hello, world!"
9
+ StableProfile.run
8
10
  end
9
11
  default_task :profile
10
12
  end
@@ -4,6 +4,7 @@ require 'fileutils'
4
4
  require 'json'
5
5
  require 'ruby-progressbar'
6
6
 
7
+
7
8
  module StableProfile
8
9
  class Error < StandardError; end
9
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stable_profile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robb Shecter
@@ -95,7 +95,6 @@ files:
95
95
  - exe/stable-profile
96
96
  - lib/stable_profile.rb
97
97
  - lib/stable_profile/cli.rb
98
- - lib/stable_profile/version.rb
99
98
  - sig/stable_profile.rbs
100
99
  homepage:
101
100
  licenses:
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module StableProfile
4
- VERSION = "0.2.0"
5
- end