wfl_simple_activity 0.1.16 → 0.1.17

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
  SHA256:
3
- metadata.gz: d32cecb39898b136f0f8ca941820459e7af317b85a79340f69362e440e12196b
4
- data.tar.gz: faa33e6dfa3e3b6dedb46fe30c43c59bff3ab6afff85ec9063f3fcbd2db2496c
3
+ metadata.gz: 668984c6a6ed6443d05a4cf561f5eb82fc35a062763ea706649ac6b77364d23c
4
+ data.tar.gz: b51f9ef8aa3e7ba5796c0738e426cf439fe803df87d206bc9bd32aaf15843c6e
5
5
  SHA512:
6
- metadata.gz: db0d5b2e6580607a77c61e816afafa677a53852a0815b06fde261cc8080e792a24191ac7af48d8a0b9ad588f78d9c805f77e3541c7151150dc4219695aee5120
7
- data.tar.gz: bc37f1425c508ab660e680e8706b5269fb6828280db7bb4e6f0e3c895123bf21fbb2c8495f7eab9f90e28e968a0485bfc15062723529b19f5117d2b1acea6247
6
+ metadata.gz: f7e7e2e60ea2997d24b39d1a2d0424edcaaf407d5b946550139f32091734dd34b4d83382b026fee034f8f1853de575611cad3906cf31a805dfed3f56063621f4
7
+ data.tar.gz: 5fe6cb3fda99c5a4fe9f5939467cb3e6b610417914bd06b3da8392fba63f3e330cd0f304c82ea0604d8420030b052dce70ce1bc3b59bb8de2aa03588e95c13c3
@@ -16,7 +16,7 @@ module WflSimpleActivity
16
16
  end
17
17
 
18
18
  def create_migration_file
19
- migration_template "create_activities.rb", "db/migrate/create_activities.rb"
19
+ migration_template "create_wfl_activities.rb", "db/migrate/create_wfl_activities.rb"
20
20
  end
21
21
 
22
22
  def copy_common_activity
@@ -1,5 +1,5 @@
1
1
  # Migration responsible for creating a table with activities
2
- class CreateActivities < ActiveRecord::Migration
2
+ class CreateWflActivities < ActiveRecord::Migration
3
3
  # Create table
4
4
  def self.up
5
5
  create_table :wfl_activities do |t|
@@ -1,3 +1,3 @@
1
1
  module WflSimpleActivity
2
- VERSION = "0.1.16"
2
+ VERSION = "0.1.17"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wfl_simple_activity
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - longhaoran
@@ -67,7 +67,7 @@ files:
67
67
  - bin/setup
68
68
  - lib/generators/wfl_simple_activity/install_generator.rb
69
69
  - lib/generators/wfl_simple_activity/templates/activity.rb
70
- - lib/generators/wfl_simple_activity/templates/create_activities.rb
70
+ - lib/generators/wfl_simple_activity/templates/create_wfl_activities.rb
71
71
  - lib/generators/wfl_simple_activity/templates/wfl_activity.rb
72
72
  - lib/wfl_simple_activity.rb
73
73
  - lib/wfl_simple_activity/common_activity.rb