pry-rails 0.1.1 → 0.1.2

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/Readme.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Description
2
2
 
3
- This is a small gem which causes `rails console` to open [pry](http://pry.github.com/). It therefore depends on *pry* and *pry-doc*.
3
+ Avoid repeating yourself, use pry-rails instead of copying the initializer to every rails project.
4
+ This is a small gem which causes `rails console` to open [pry](http://pry.github.com/). It therefore depends on *pry*.
4
5
 
5
6
  # Prerequisites
6
7
 
@@ -8,7 +9,7 @@ This is a small gem which causes `rails console` to open [pry](http://pry.github
8
9
 
9
10
  # Installation
10
11
 
11
- Avoid repeating yourself, use pry-rails instead of copying the initializer to every rails project. Add this line to your gemfile:
12
+ Add this line to your gemfile:
12
13
 
13
14
  gem 'pry-rails', :group => :development
14
15
 
@@ -7,7 +7,9 @@ module PryRails
7
7
  begin
8
8
  require 'pry'
9
9
  ::IRB = Pry
10
- IRB::ExtendCommandBundle = Pry
10
+ unless defined?(IRB::ExtendCommandBundle)
11
+ IRB::ExtendCommandBundle = Module.new
12
+ end
11
13
  rescue LoadError
12
14
  end
13
15
  end
@@ -1,3 +1,3 @@
1
1
  module PryRails
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.version = PryRails::VERSION
8
8
  s.authors = ["Robin Wenglewski"]
9
9
  s.email = ["robin@wenglewski.de"]
10
- s.homepage = ""
10
+ s.homepage = "https://github.com/rweng/pry-rails"
11
11
  s.summary = %q{Use Pry as your rails console}
12
12
  # s.description = %q{TODO: Write a gem description}
13
13
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,12 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-01-11 00:00:00.000000000 +01:00
13
- default_executable:
12
+ date: 2012-01-23 00:00:00.000000000Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: pry
17
- requirement: &70262936234040 !ruby/object:Gem::Requirement
16
+ requirement: &70124498405980 !ruby/object:Gem::Requirement
18
17
  none: false
19
18
  requirements:
20
19
  - - ! '>='
@@ -22,7 +21,7 @@ dependencies:
22
21
  version: '0'
23
22
  type: :runtime
24
23
  prerelease: false
25
- version_requirements: *70262936234040
24
+ version_requirements: *70124498405980
26
25
  description:
27
26
  email:
28
27
  - robin@wenglewski.de
@@ -37,8 +36,7 @@ files:
37
36
  - lib/pry-rails.rb
38
37
  - lib/pry-rails/version.rb
39
38
  - pry-rails.gemspec
40
- has_rdoc: true
41
- homepage: ''
39
+ homepage: https://github.com/rweng/pry-rails
42
40
  licenses: []
43
41
  post_install_message:
44
42
  rdoc_options: []
@@ -58,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
58
56
  version: '0'
59
57
  requirements: []
60
58
  rubyforge_project:
61
- rubygems_version: 1.6.2
59
+ rubygems_version: 1.8.10
62
60
  signing_key:
63
61
  specification_version: 3
64
62
  summary: Use Pry as your rails console