evil_utils 0.0.7 → 0.0.8

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: f9745dc9c533f56713c1841e9c49a57b48e7654e
4
- data.tar.gz: 137a11e2d172217c14e22cd9caec98a51f9077df
3
+ metadata.gz: bcab91ee6ed81a1bd95b46d7b6952d64895047a2
4
+ data.tar.gz: b6e721ef1e2f57e95ece5b7be9a74139cbed6cd1
5
5
  SHA512:
6
- metadata.gz: ff223250ab7742200ce3a624a5eb0b896b912183e1bf51cac203aca1a0de0d02be13ecf783cbc2b2970ec5f6e6e693c95c1a945020ed03592aae7a317314ec69
7
- data.tar.gz: e79ab66f569e91a887c719d5613c59e78cd9f26562ee5894ba62dc51577ca315aa6dc98ef15df78e7236a35cd2f6025f43ea24947edeb85251a6360e449f54d3
6
+ metadata.gz: b139316d58b9b2f2378acd8ba84175fe3e4844408951cb37faba03c1341520c298778698d09e298ffe891a450dfa227ea19151f95b2e0d5748cc6d8c4353f7c0
7
+ data.tar.gz: f8a98314b49081f3f6b8b23023460ba17d91bba8ebfe5f6e24e2b4050cc4eccebabc214a04dc8058c0e3013110e26e780fe0718677c545bdca458a8e935ff7ee
data/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # evil_utils
2
+
3
+ Optimized scaffold controller generator and scaffold controller spec
4
+ generator.
5
+
6
+ ## Installation
7
+
8
+ ```bash
9
+ $ gem install evil_utils
10
+ ```
11
+
12
+ or add to your Gemfile:
13
+
14
+ ```ruby
15
+ gem 'evil_utils', group: :development
16
+ ```
17
+
18
+ ## Contributing to evil_utils
19
+
20
+ * Check out the latest master to make sure the feature hasn't been
21
+ implemented or the bug hasn't been fixed yet.
22
+ * Check out the issue tracker to make sure someone already hasn't requested
23
+ it and/or contributed it.
24
+ * Fork the project.
25
+ * Start a feature/bugfix branch.
26
+ * Commit and push until you are happy with your contribution.
27
+ * Make sure to add tests for it. This is important so I don't break it in a
28
+ future version unintentionally.
29
+ * Please try not to mess with the Rakefile, version, or history. If you want
30
+ to have your own version, or is otherwise necessary, that is fine, but
31
+ please isolate to its own commit so I can cherry-pick around it.
32
+
33
+
34
+ ## Copyright
35
+
36
+ Copyright (c) 2014 Zhi-Qiang Lei. See LICENSE.txt for further details.
37
+
data/evil_utils.gemspec CHANGED
@@ -2,28 +2,28 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: evil_utils 0.0.7 ruby lib
5
+ # stub: evil_utils 0.0.8 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "evil_utils"
9
- s.version = "0.0.7"
9
+ s.version = "0.0.8"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Zhi-Qiang Lei"]
14
- s.date = "2014-06-28"
14
+ s.date = "2015-03-24"
15
15
  s.description = "Controller generators with responders and shoulda-matchers"
16
16
  s.email = "zhiqiang.lei@gmail.com"
17
17
  s.extra_rdoc_files = [
18
18
  "LICENSE.txt",
19
- "README.rdoc"
19
+ "README.md"
20
20
  ]
21
21
  s.files = [
22
22
  ".document",
23
23
  "Gemfile",
24
24
  "Gemfile.lock",
25
25
  "LICENSE.txt",
26
- "README.rdoc",
26
+ "README.md",
27
27
  "Rakefile",
28
28
  "evil_utils.gemspec",
29
29
  "lib/evil_utils.rb",
@@ -2,7 +2,7 @@ class EvilUtils
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 7
5
+ PATCH = 8
6
6
 
7
7
  STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evil_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zhi-Qiang Lei
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-28 00:00:00.000000000 Z
11
+ date: 2015-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -170,13 +170,13 @@ executables: []
170
170
  extensions: []
171
171
  extra_rdoc_files:
172
172
  - LICENSE.txt
173
- - README.rdoc
173
+ - README.md
174
174
  files:
175
175
  - ".document"
176
176
  - Gemfile
177
177
  - Gemfile.lock
178
178
  - LICENSE.txt
179
- - README.rdoc
179
+ - README.md
180
180
  - Rakefile
181
181
  - evil_utils.gemspec
182
182
  - lib/evil_utils.rb
data/README.rdoc DELETED
@@ -1,19 +0,0 @@
1
- = evil_utils
2
-
3
- Optimized scaffold controller generator and scaffold controller spec generator.
4
-
5
- == Contributing to evil_utils
6
-
7
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
- * Fork the project.
10
- * Start a feature/bugfix branch.
11
- * Commit and push until you are happy with your contribution.
12
- * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
- * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
-
15
- == Copyright
16
-
17
- Copyright (c) 2014 Zhi-Qiang Lei. See LICENSE.txt for
18
- further details.
19
-