mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
Update copyrights
* Added myself (should've done that years ago) * Made it look like Pry is a team effort
This commit is contained in:
parent
cb837419ff
commit
e84c34b17a
6 changed files with 19 additions and 24 deletions
2
LICENSE
2
LICENSE
|
@ -3,7 +3,7 @@ License
|
|||
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2018 John Mair (banisterfiend)
|
||||
Copyright (c) 2018 The Pry Team
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
|
|
|
@ -6,8 +6,6 @@
|
|||
<br><br>
|
||||
![logo for Pry](https://www.dropbox.com/s/zp8o63kquby2rln/pry_logo_350.png?raw=1)
|
||||
|
||||
© John Mair ([banisterfiend](https://twitter.com/banisterfiend)) 2018<br>
|
||||
|
||||
**Other Resources**
|
||||
|
||||
[Skip to the website (recommended)](http://pryrepl.org/) <br />
|
||||
|
@ -390,9 +388,3 @@ between commands and running commands in background
|
|||
### Contact
|
||||
|
||||
Problems or questions? File an issue at [GitHub](https://github.com/pry/pry/issues).
|
||||
|
||||
### Contributors
|
||||
|
||||
Pry is primarily the work of [John Mair (banisterfiend)](https://github.com/banister), for full list
|
||||
of contributors see the
|
||||
[contributors graph](https://github.com/pry/pry/graphs/contributors).
|
||||
|
|
4
bin/pry
4
bin/pry
|
@ -1,8 +1,4 @@
|
|||
#!/usr/bin/env ruby
|
||||
|
||||
# (C) John Mair (banisterfiend)
|
||||
# MIT license
|
||||
|
||||
$0 = 'pry'
|
||||
|
||||
require 'pry'
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
# (C) John Mair (banisterfiend) 2016
|
||||
# MIT License
|
||||
#
|
||||
require 'pp'
|
||||
require 'pry/forwardable'
|
||||
require 'pry/input_lock'
|
||||
|
|
|
@ -134,12 +134,12 @@ end
|
|||
|
||||
# The default Pry command line options (before plugin options are included)
|
||||
Pry::CLI.add_options do
|
||||
banner %{Usage: pry [OPTIONS]
|
||||
Start a Pry session.
|
||||
See http://pryrepl.org/ for more information.
|
||||
Copyright (c) 2016 John Mair (banisterfiend)
|
||||
--
|
||||
}
|
||||
banner(
|
||||
"Usage: pry [OPTIONS]\n" \
|
||||
"Start a Pry session.\n" \
|
||||
"See http://pryrepl.org/ for more information.\n"
|
||||
)
|
||||
|
||||
on :e, :exec=, "A line of code to execute in context before the session starts" do |input|
|
||||
Pry.config.exec_string += "\n" if Pry.config.exec_string.length > 0
|
||||
Pry.config.exec_string += input
|
||||
|
|
14
pry.gemspec
14
pry.gemspec
|
@ -7,8 +7,18 @@ Gem::Specification.new do |s|
|
|||
|
||||
s.required_ruby_version = '>= 1.9.3'
|
||||
|
||||
s.authors = ["John Mair (banisterfiend)", "Conrad Irwin", "Ryan Fitzgerald"]
|
||||
s.email = ["jrmair@gmail.com", "conrad.irwin@gmail.com", "rwfitzge@gmail.com"]
|
||||
s.authors = [
|
||||
'John Mair (banisterfiend)',
|
||||
'Conrad Irwin',
|
||||
'Ryan Fitzgerald',
|
||||
'Kyrylo Silin'
|
||||
]
|
||||
s.email = [
|
||||
'jrmair@gmail.com',
|
||||
'conrad.irwin@gmail.com',
|
||||
'rwfitzge@gmail.com',
|
||||
'silin@kyrylo.org'
|
||||
]
|
||||
s.summary = "An IRB alternative and runtime developer console"
|
||||
s.description = s.summary
|
||||
s.homepage = "http://pryrepl.org"
|
||||
|
|
Loading…
Reference in a new issue