honor 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v1.0.2
2
+
3
+ * Fixed migration files
4
+
1
5
  ## v1.0.1
2
6
 
3
7
  * Fixed broken install generator
data/honor.sqlite3 CHANGED
Binary file
@@ -17,8 +17,8 @@ module Honor
17
17
  end
18
18
 
19
19
  def copy_migrations
20
- migration_template 'create_points.rb', 'db/migrate/create_honor_points.rb'
21
- migration_template 'create_scorecards.rb', 'db/migrate/create_honor_scorecards.rb'
20
+ migration_template 'create_honor_points.rb', 'db/migrate/create_honor_points.rb'
21
+ migration_template 'create_honor_scorecards.rb', 'db/migrate/create_honor_scorecards.rb'
22
22
  end
23
23
  end
24
24
  end
@@ -1,4 +1,4 @@
1
- class CreateHonorPointsMigration < ActiveRecord::Migration
1
+ class CreateHonorPoints < ActiveRecord::Migration
2
2
  def change
3
3
  create_table :points do |t|
4
4
  t.integer :user_id
@@ -1,4 +1,4 @@
1
- class CreateHonorScorecardsMigration < ActiveRecord::Migration
1
+ class CreateHonorScorecards < ActiveRecord::Migration
2
2
  def change
3
3
  create_table :scorecards do |t|
4
4
  t.integer :user_id
data/lib/honor/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Honor
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: honor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -125,8 +125,8 @@ files:
125
125
  - honor.gemspec
126
126
  - honor.sqlite3
127
127
  - lib/generators/honor/install/install_generator.rb
128
- - lib/generators/honor/install/templates/create_points.rb
129
- - lib/generators/honor/install/templates/create_scorecards.rb
128
+ - lib/generators/honor/install/templates/create_honor_points.rb
129
+ - lib/generators/honor/install/templates/create_honor_scorecards.rb
130
130
  - lib/honor.rb
131
131
  - lib/honor/model_additions.rb
132
132
  - lib/honor/point.rb