jazz_hands 0.0.2 → 0.0.3

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.
@@ -0,0 +1,24 @@
1
+ ## 0.0.3 (2011-11-30)
2
+
3
+ * Add [pry-nav][pry-nav].
4
+ * Upgrade [awesome_print][awesome_print] to 1.0.1.
5
+
6
+ ## 0.0.2 (2011-11-25)
7
+
8
+ * Add pry-doc.
9
+
10
+ ## 0.0.1 (2011-11-25)
11
+
12
+ * First release. Combine [pry][pry], [awesome_print][awesome_print],
13
+ [coolline][coolline] + [coderay][coderay], [pry-remote][pry-remote],
14
+ [pry-git][pry-git]. Bit of glue to replace IRB with pry in Rails console,
15
+ pretty colors.
16
+
17
+
18
+ [pry]: http://pry.github.com
19
+ [awesome_print]: https://github.com/michaeldv/awesome_print
20
+ [pry-git]: https://github.com/pry/pry-git
21
+ [pry-nav]: https://github.com/nixme/pry-nav
22
+ [pry-remote]: https://github.com/Mon-Ouie/pry-remote
23
+ [coolline]: https://github.com/Mon-Ouie/coolline
24
+ [coderay]: https://github.com/rubychan/coderay
@@ -0,0 +1,46 @@
1
+ Jazz Hands
2
+ ==========
3
+
4
+ Spending hours in the rails console? Spruce it up and show off those
5
+ hard-working hands!
6
+
7
+ **jazz_hands** combines multiple console-related gems and a bit of glue:
8
+
9
+ * [**Pry**][pry] for a powerful shell alternative to IRB.
10
+ * [**Awesome Print**][awesome_print] for stylish pretty print.
11
+ * [**Pry Doc**] to browse Ruby source, including C, directly from the console.
12
+ * [**Pry Git**][pry-git] to teach the console about git. Diffs, blames, and
13
+ commits on methods and classes, not just files.
14
+ * [**Pry Nav**][pry-nav] to turn the console into a simple debugger.
15
+ * [**Pry Remote**][pry-remote] to connect remotely to a Pry console.
16
+ * [**Coolline**][coolline] and [**Coderay**][coderay] for syntax highlighting as
17
+ you type (_Ruby 1.9.3 only_).
18
+
19
+
20
+ ## Usage
21
+
22
+ Rails 3 and above only. Add to your project Gemfile:
23
+
24
+ ```ruby
25
+ group :development, :test do
26
+ gem 'jazz_hands'
27
+ end
28
+ ```
29
+
30
+
31
+ ## Contributing
32
+
33
+ Patches and bug reports are welcome. Just send a [pull request][pullrequests] or
34
+ file an [issue][issues]. [Project changelog][changelog].
35
+
36
+
37
+ [pry]: http://pry.github.com
38
+ [awesome_print]: https://github.com/michaeldv/awesome_print
39
+ [pry-git]: https://github.com/pry/pry-git
40
+ [pry-nav]: https://github.com/nixme/pry-nav
41
+ [pry-remote]: https://github.com/Mon-Ouie/pry-remote
42
+ [coolline]: https://github.com/Mon-Ouie/coolline
43
+ [coderay]: https://github.com/rubychan/coderay
44
+ [pullrequests]: https://github.com/nixme/jazz_hands/pulls
45
+ [issues]: https://github.com/nixme/jazz_hands/issues
46
+ [changelog]: https://github.com/nixme/jazz_hands/blob/master/CHANGELOG.md
@@ -5,11 +5,12 @@ require File.expand_path('../lib/jazz_hands/version', __FILE__)
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = 'jazz_hands'
7
7
  gem.version = JazzHands::VERSION
8
- gem.authors = ['Gopal Patel']
9
- gem.email = ['nixme@stillhope.com']
10
- gem.summary = 'Exercise those fingers. Pry-based enhancements for the default Rails console.'
8
+ gem.author = 'Gopal Patel'
9
+ gem.email = 'nixme@stillhope.com'
10
+ gem.license = 'MIT'
11
11
  gem.homepage = 'https://github.com/nixme/jazz_hands'
12
- gem.description = "Spending hours in the rails console? Spruce it up and show off those hard-working hands! jazz_hands replaces IRB with Pry, improves output through awesome_print and has some other goodies up its sleeves."
12
+ gem.summary = 'Exercise those fingers. Pry-based enhancements for the default Rails console.'
13
+ gem.description = "Spending hours in the rails console? Spruce it up and show off those hard-working hands! jazz_hands replaces IRB with Pry, improves output through awesome_print, and has some other goodies up its sleeves."
13
14
 
14
15
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
15
16
  gem.files = `git ls-files`.split("\n")
@@ -18,11 +19,12 @@ Gem::Specification.new do |gem|
18
19
 
19
20
  # Dependencies
20
21
  gem.required_ruby_version = '>= 1.9.2'
21
- gem.add_runtime_dependency 'pry', ['~> 0.9.7.4']
22
- gem.add_runtime_dependency 'pry-doc', ['~> 0.3.0']
23
- gem.add_runtime_dependency 'pry-git', ['~> 0.2.2']
24
- gem.add_runtime_dependency 'pry-remote', ['>= 0.1.0']
25
- gem.add_runtime_dependency 'coolline', ['>= 0.1.0']
26
- gem.add_runtime_dependency 'coderay', ['>= 0.9.8']
27
- gem.add_runtime_dependency 'awesome_print', ['~> 0.4.0']
22
+ gem.add_runtime_dependency 'pry', '~> 0.9.7.4'
23
+ gem.add_runtime_dependency 'pry-doc', '~> 0.3.0'
24
+ gem.add_runtime_dependency 'pry-git', '~> 0.2.2'
25
+ gem.add_runtime_dependency 'pry-remote', '>= 0.1.0'
26
+ gem.add_runtime_dependency 'pry-nav', '>= 0.0.2'
27
+ gem.add_runtime_dependency 'coolline', '>= 0.1.0'
28
+ gem.add_runtime_dependency 'coderay', '>= 0.9.8'
29
+ gem.add_runtime_dependency 'awesome_print', '~> 1.0.1'
28
30
  end
@@ -1,3 +1,3 @@
1
1
  module JazzHands
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jazz_hands
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-11-25 00:00:00.000000000 Z
12
+ date: 2011-11-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: pry
16
- requirement: &70148111365660 !ruby/object:Gem::Requirement
16
+ requirement: &70196307976000 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.9.7.4
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70148111365660
24
+ version_requirements: *70196307976000
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: pry-doc
27
- requirement: &70148111365000 !ruby/object:Gem::Requirement
27
+ requirement: &70196307974580 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: 0.3.0
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70148111365000
35
+ version_requirements: *70196307974580
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: pry-git
38
- requirement: &70148111364440 !ruby/object:Gem::Requirement
38
+ requirement: &70196307972540 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: 0.2.2
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70148111364440
46
+ version_requirements: *70196307972540
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: pry-remote
49
- requirement: &70148111363820 !ruby/object:Gem::Requirement
49
+ requirement: &70196307970820 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,10 +54,21 @@ dependencies:
54
54
  version: 0.1.0
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *70148111363820
57
+ version_requirements: *70196307970820
58
+ - !ruby/object:Gem::Dependency
59
+ name: pry-nav
60
+ requirement: &70196307969200 !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: 0.0.2
66
+ type: :runtime
67
+ prerelease: false
68
+ version_requirements: *70196307969200
58
69
  - !ruby/object:Gem::Dependency
59
70
  name: coolline
60
- requirement: &70148111363200 !ruby/object:Gem::Requirement
71
+ requirement: &70196307967500 !ruby/object:Gem::Requirement
61
72
  none: false
62
73
  requirements:
63
74
  - - ! '>='
@@ -65,10 +76,10 @@ dependencies:
65
76
  version: 0.1.0
66
77
  type: :runtime
67
78
  prerelease: false
68
- version_requirements: *70148111363200
79
+ version_requirements: *70196307967500
69
80
  - !ruby/object:Gem::Dependency
70
81
  name: coderay
71
- requirement: &70148111362580 !ruby/object:Gem::Requirement
82
+ requirement: &70196299768300 !ruby/object:Gem::Requirement
72
83
  none: false
73
84
  requirements:
74
85
  - - ! '>='
@@ -76,38 +87,40 @@ dependencies:
76
87
  version: 0.9.8
77
88
  type: :runtime
78
89
  prerelease: false
79
- version_requirements: *70148111362580
90
+ version_requirements: *70196299768300
80
91
  - !ruby/object:Gem::Dependency
81
92
  name: awesome_print
82
- requirement: &70148111361440 !ruby/object:Gem::Requirement
93
+ requirement: &70196299764100 !ruby/object:Gem::Requirement
83
94
  none: false
84
95
  requirements:
85
96
  - - ~>
86
97
  - !ruby/object:Gem::Version
87
- version: 0.4.0
98
+ version: 1.0.1
88
99
  type: :runtime
89
100
  prerelease: false
90
- version_requirements: *70148111361440
101
+ version_requirements: *70196299764100
91
102
  description: Spending hours in the rails console? Spruce it up and show off those
92
- hard-working hands! jazz_hands replaces IRB with Pry, improves output through awesome_print
103
+ hard-working hands! jazz_hands replaces IRB with Pry, improves output through awesome_print,
93
104
  and has some other goodies up its sleeves.
94
- email:
95
- - nixme@stillhope.com
105
+ email: nixme@stillhope.com
96
106
  executables: []
97
107
  extensions: []
98
108
  extra_rdoc_files: []
99
109
  files:
100
110
  - .gitignore
101
111
  - .rbenv-version
112
+ - CHANGELOG.md
102
113
  - Gemfile
103
114
  - LICENSE
115
+ - README.md
104
116
  - Rakefile
105
117
  - jazz_hands.gemspec
106
118
  - lib/jazz_hands.rb
107
119
  - lib/jazz_hands/railtie.rb
108
120
  - lib/jazz_hands/version.rb
109
121
  homepage: https://github.com/nixme/jazz_hands
110
- licenses: []
122
+ licenses:
123
+ - MIT
111
124
  post_install_message:
112
125
  rdoc_options: []
113
126
  require_paths:
@@ -131,3 +144,4 @@ signing_key:
131
144
  specification_version: 3
132
145
  summary: Exercise those fingers. Pry-based enhancements for the default Rails console.
133
146
  test_files: []
147
+ has_rdoc: