awesome_rails_console 0.2.0 → 0.2.1

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
  SHA1:
3
- metadata.gz: 168da13a551c331db072e870dea0e03b92acf3f0
4
- data.tar.gz: 52ef8abdeb6a391d5b5f267a8c57eb63809810c1
3
+ metadata.gz: 52f5673d936e9a588df4db20b58483e56406e42e
4
+ data.tar.gz: 44c0c8a23e26d5e442cd8ea4c5e79df2227dd740
5
5
  SHA512:
6
- metadata.gz: a2faa0c17cca6478b289c1a7a6db32cac4b117d80497f7a06bfed9af4527701eb1655a5c10793628cc6e69b0682ef92e7e1e6aa11aac9f968fd1f7dd9d3d1c73
7
- data.tar.gz: 5072470b3ada1ec7887b2df31b26cd4556766585ea5b3ac3d5c95ac0a564d22632ab5732c46b17ac36c820cd28f7066387a2d6f73a7cdc9e882ca393aabb94c4
6
+ metadata.gz: 3ba9a8f524352b2dd7a6afeec22afe379577ff88a645703a7dbbd54591aeeddc447c4d6396eb0114b93b564a42e318fb9b2a92489cd47dd52a38b7fa148e13a2
7
+ data.tar.gz: c5e3f98eaf252e5066dceb0b555c692fed4137c244662523ca16c378bb0239d60107bd8305f628782210e3510d0483d46ce9fa36440829e1a7fb3e03eab3a762
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.2.1
4
+
5
+ * No changes in functionality. Release for updating information on rubygems.org.
6
+
3
7
  ## v0.2.0
4
8
 
5
9
  * Remove Ruby 1.9 support.
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 by Bruce Li
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -57,7 +57,7 @@ Put following statment (breakpoint) in your code. And execute it.
57
57
  binding.pry
58
58
  ```
59
59
 
60
- After enter a pry debug session. Try:
60
+ After entering a pry debug session. Try:
61
61
 
62
62
  ```ruby
63
63
  next
@@ -78,7 +78,7 @@ down
78
78
 
79
79
  ### More
80
80
 
81
- This gem depends on following gems. Thus you can use all functionalities they provide.
81
+ awesome_rails_console depends on following gems. Thus you can use all functionalities they provide.
82
82
 
83
83
  * [pry-rails](https://github.com/rweng/pry-rails)
84
84
  * [pry-byebug](https://github.com/deivid-rodriguez/pry-byebug)
@@ -108,6 +108,10 @@ gem 'awesome_rails_console', github: 'ascendbruce/awesome_rails_console', branch
108
108
  gem 'pry-debugger'
109
109
  ```
110
110
 
111
+ ## Changelog
112
+
113
+ See CHANGELOG.md.
114
+
111
115
  ## Development
112
116
 
113
117
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ["lib"]
20
20
 
21
21
  spec.required_ruby_version = ">= 2.0.0"
22
+ spec.license = "MIT"
22
23
 
23
24
  # Runtime dependencies
24
25
  spec.add_dependency "railties"
@@ -1,3 +1,3 @@
1
1
  module AwesomeRailsConsole
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awesome_rails_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruce Li
@@ -163,6 +163,7 @@ files:
163
163
  - ".travis.yml"
164
164
  - CHANGELOG.md
165
165
  - Gemfile
166
+ - LICENSE
166
167
  - README.md
167
168
  - Rakefile
168
169
  - awesome_rails_console.gemspec
@@ -172,7 +173,8 @@ files:
172
173
  - lib/awesome_rails_console/railtie.rb
173
174
  - lib/awesome_rails_console/version.rb
174
175
  homepage: https://github.com/ascendbruce/awesome_rails_console
175
- licenses: []
176
+ licenses:
177
+ - MIT
176
178
  metadata: {}
177
179
  post_install_message:
178
180
  rdoc_options: []