pry-objects 0.1.0 → 0.1.1

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YjA0MTJjZTAyZjE4NjhiNGFjZTEwZDVlMWYzOGVlN2YyMTkyZDkwZQ==
4
+ ODcxMzY2NjlhNGUwNzdkMTg2YjRhYTdmN2UzYzcxNWE1MDE2NDI1YQ==
5
5
  data.tar.gz: !binary |-
6
- YWVlZDAwNWJjMzVmNjg1ZWVlNmExMTQyMDQ5Zjk3MTIxZDRjMWRmNg==
6
+ Zjc1NjcyYjNmMTczYWYyMjhhNDM2MjFhZDcxMWQ0MzAyZjQwYTkwNw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZTBlNTA1Zjk3YTE4MzMzMGE4NWQwYWFjMzFhZGRjNTg0NzFmZTU5NDE3YTIz
10
- Y2U2NGNkZjBjZmZlZmE1YWYzNmQwZjkzMWQ5M2U5NzIyOTdjYmNkNjQwZDZl
11
- ODJkMGYzMzg3NjkwODVkOWViNWFkMmQzNDMyZWE3Y2I1ZWQ1YWE=
9
+ MWNiODNiNDQ4M2E1MTAwM2U1ZTFiMDExNDQwNGI1NzU4ZWE5YmY2ODc2MTg0
10
+ NTY2MzE4OWFhYjU1OTQ5MDYxYjVkNDZhNmIwNmU4N2E5Y2RkYjljNjAxNGUx
11
+ YzhkNWNkMWZkNWFmYmQ5MWJkNWY0NGY0MDIwMTVjZjFlYmMxZDk=
12
12
  data.tar.gz: !binary |-
13
- MGM3OTMzODljYmM1YmNjYzRmYjc3NTg0ZTY3YzE3Nzg5YTNlMWZhMGI0OWNh
14
- NjI0ZGRkNGMxY2I4ZDhjM2JlZWZjYjU1YmUyMjRlYWFmZmVjNTY3YWU0Mjhl
15
- NjE1ODY2ZjBmMDFhZDhhMzViMmIxZWVmNWFiMjg0ZGI0MTk1NmU=
13
+ NWU1Y2M3YjY4Y2Y4YmUxZTAwZDY5ZjQ4YTZhOGExNTY1Yjc1ODg0NDM2YTEw
14
+ YzJlNTk3OGQ2YmRjMWRiOGU4YTBjMDNiOGMwZGMzZjc4MDkwMTcxYjc5NzU4
15
+ MzdiMTkwNTc5MzFiODkyM2NmZDllNzc2ZDUyMWUyZDA5MzQwNDc=
data/README.md CHANGED
@@ -1,36 +1,26 @@
1
- # Pry::Objects
1
+ # pry-objects
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/pry/objects`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Evaluates expression and prints created objects.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ ```
6
+ $ pry
7
+ [1] pry(main)> string = 'hello hello'
8
+ [2] pry(main)> objects string.gsub('e', 'a')
9
+ => ["hello hello", #<MatchData "e">, "hello hello", "hallo hallo", "hello hello", "e", "a", "e"]
10
+ [3] pry(main)> objects string.tr('e', 'a')
11
+ => ["hallo hallo", "a", "e"]
12
+ ```
6
13
 
7
14
  ## Installation
8
15
 
9
- Add this line to your application's Gemfile:
16
+ Install the gem globally or inside the `:development` group of your gemfile
10
17
 
11
- ```ruby
12
- gem 'pry-objects'
13
18
  ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install pry-objects
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
19
+ gem install pry
20
+ gem install pry-objects
21
+ ```
32
22
 
33
23
  ## Contributing
34
24
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pry-objects.
25
+ Bug reports and pull requests are welcome on github at https://github.com/akuhn/pry-objects
36
26
 
@@ -1,3 +1,15 @@
1
1
  module PryObjects
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
4
+
5
+ __END__
6
+
7
+ # Change log
8
+
9
+ 0.1.1
10
+
11
+ - Fix type in gemspec.
12
+
13
+ 0.1.0
14
+
15
+ - Initial release.
data/pry-objects.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["adrian.kuhn@airbnb.com"]
11
11
 
12
12
  spec.summary = %q{Evaluate expression and print created objects.}
13
- spec.homepage = "https://github.com/akuhn/pry-tree"
13
+ spec.homepage = "https://github.com/akuhn/pry-objects"
14
14
 
15
15
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
16
  spec.bindir = "exe"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-objects
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Kuhn
@@ -27,7 +27,7 @@ files:
27
27
  - lib/pry-objects.rb
28
28
  - lib/pry-objects/version.rb
29
29
  - pry-objects.gemspec
30
- homepage: https://github.com/akuhn/pry-tree
30
+ homepage: https://github.com/akuhn/pry-objects
31
31
  licenses: []
32
32
  metadata: {}
33
33
  post_install_message: