orientea 0.1.4 → 0.1.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d8ec3ef10bf54582458d8dc0c731e3afd67d9d2e
4
- data.tar.gz: d849a647057e42253bf3d156d4377d8f6d619998
3
+ metadata.gz: 76dae08fb84c79187c73caa223deb5dc1a6b90e1
4
+ data.tar.gz: f67be43322d1935007d0326b11d9b4f336a2e7ad
5
5
  SHA512:
6
- metadata.gz: cb2b5b25176468cc72d6fa753d63e0a63e0d0328c91eddbbbaa9c3a4d0ab69588fd5fd1a73611992922119a10e9ad335f3cbd7b4ed8d8955daf7d3e7e34d6579
7
- data.tar.gz: 787f77ac7dde5e02212a1eb441e86506406fee4683c5c89dfaa5d486c2ca0ddf4c64e4c2d911dc51d2235b02dd4f771ba79deaa8c0b35a03ed666bb0397fb76e
6
+ metadata.gz: 0f0d11a2c3c01fc1192793c899dd9dcb4f9d9bb275f8f0052c5cd7476c85afce146682459e080420ece529b95ef3a5cabb0d5d95f111607abe62d7dd6fe91174
7
+ data.tar.gz: add78d26c974b10a7e2633274f04f92318f8649e4e3c6a0cbe7d20d0b322ebca93a524deeb5a6280bd1f76894186aecafda1b9f0af6a28c682f9ea5de3a9c0ec
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.4
1
+ 0.1.5
data/lib/.DS_Store CHANGED
Binary file
@@ -0,0 +1,2 @@
1
+ Description:
2
+ rails generate orientea:command
@@ -0,0 +1,9 @@
1
+ module Orientea
2
+ class CommandGenerator < Rails::Generators::Base
3
+ source_root File.expand_path('../templates', __FILE__)
4
+ # desc "rails g orientea:command"
5
+ def create_migration
6
+ migration_template 'create_command.rb', 'db/migrate/create_command_table.rb'
7
+ end
8
+ end
9
+ end
Binary file
data/orientea.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "orientea"
8
- s.version = "0.1.4"
8
+ s.version = "0.1.5"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Vincent Zhu"]
@@ -26,15 +26,15 @@ Gem::Specification.new do |s|
26
26
  "Rakefile",
27
27
  "VERSION",
28
28
  "lib/.DS_Store",
29
+ "lib/generators/orientea/command/USAGE",
30
+ "lib/generators/orientea/command/command_generator.rb",
31
+ "lib/generators/orientea/command/templates/create_command.rb",
32
+ "lib/generators/orientea/command_generator.rb",
29
33
  "lib/orientea.rb",
30
34
  "lib/orientea/.DS_Store",
31
35
  "lib/orientea/changing_command.rb",
32
36
  "lib/orientea/command.rb",
33
37
  "lib/orientea/creating_command.rb",
34
- "lib/orientea/generators/command/USAGE",
35
- "lib/orientea/generators/command/command_generator.rb",
36
- "lib/orientea/generators/command/templates/create_command.rb",
37
- "lib/orientea/generators/command_generator.rb",
38
38
  "orientea.gemspec",
39
39
  "spec/changing_command_spec.rb",
40
40
  "spec/creating_command_spec.rb",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orientea
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vincent Zhu
@@ -153,15 +153,15 @@ files:
153
153
  - Rakefile
154
154
  - VERSION
155
155
  - lib/.DS_Store
156
+ - lib/generators/orientea/command/USAGE
157
+ - lib/generators/orientea/command/command_generator.rb
158
+ - lib/generators/orientea/command/templates/create_command.rb
159
+ - lib/generators/orientea/command_generator.rb
156
160
  - lib/orientea.rb
157
161
  - lib/orientea/.DS_Store
158
162
  - lib/orientea/changing_command.rb
159
163
  - lib/orientea/command.rb
160
164
  - lib/orientea/creating_command.rb
161
- - lib/orientea/generators/command/USAGE
162
- - lib/orientea/generators/command/command_generator.rb
163
- - lib/orientea/generators/command/templates/create_command.rb
164
- - lib/orientea/generators/command_generator.rb
165
165
  - orientea.gemspec
166
166
  - spec/changing_command_spec.rb
167
167
  - spec/creating_command_spec.rb
@@ -1 +0,0 @@
1
- rails generate command
@@ -1,7 +0,0 @@
1
- class CommandGenerator < Rails::Generators::Base
2
- source_root File.expand_path('./templates', __FILE__)
3
- desc "rails g orientea:command"
4
- def create_migration
5
- migration_template 'create_command.rb', 'db/migrate/create_command_table.rb'
6
- end
7
- end