survey_generator 0.2.92 → 0.2.93

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MDU3MmE4MGMyOWNlNjA2OTdhN2JmMzlkYWQ1ODY0MDE3MDg4NmM3Yg==
4
+ ODM1ZmU1NTJmMTllMjZjZWY4MzRjYzIwN2U0OWQyNGUzYjllNGVjNw==
5
5
  data.tar.gz: !binary |-
6
- OWUwNDlmOWFjNTA5NmYwNmU4NzRkMTQzNGExODMwNThiMjJkYmQxZQ==
6
+ YmJhMjA2ZWE0ODE5ZmRkOTJkMGI4Y2NmNzQ5MjRhNjM1Yjk1ZDZjMQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- YTY1MDQ5NjdmOWMzMmIxNGQxODQ1YzhkYzkzOWY4NTVlOGFjMGUzZDI2YTBm
10
- OTBiZWY2MGMyOTYxMzgzNGJlMDlhYTRhZjJiNTk5YmZlMmVjMDRiZjk0NGEx
11
- NzY3NDA0ZTg1YmQwOTQ5NzY1MGUwNzlkOTE1YTA3YzBmZGViMjY=
9
+ ZjQ0ODNmNzgwZTdiYTczYzVjMjA0YzgxMjY4N2ZhNmIyN2IyODVjNWU5ZjJm
10
+ Mjg1ZTc5MjA3OTU5YzkxNDY5Mzg3ZjIxYzlhMmEwMGMwOTA2MTI3OWUxNzE2
11
+ ZjFhM2I1Yjk0YjU5Zjk1MTQ4MzkxYmNkMjg4YWRlOTdlY2EyM2Q=
12
12
  data.tar.gz: !binary |-
13
- ZjYyZDE1ODliYzBlN2ViMzFlMzgyZGU0NDk5MDMwNWMyNGJlZTE1Y2M3NThl
14
- Yjg3NGU3ODAzNmIxYjM5ZmNkZThlNWQ0ZDVkMGQzM2M0MDAwN2Q5NjY1YTA1
15
- ZTI0YjI3Mzg0YWRlNDE1ODNkZGQxYzljNjgwYjU4ZjA5YTk0MTQ=
13
+ OGU5NWM0ZmI4ZWNhYzE3MjA3NDUyZjA0ZjY4Njk4OTNhNTcxNzBhYTc4OTRm
14
+ NDdhZDdhMmVmZWE4ZDgwNjdhZDNhZDI1MDhhYTUwYmZjMGVjOTNmYTY5NDA0
15
+ ZmE3OGQwNGU2OGYxMjNjODhkNmJlYjlhYTMyNTQ3ZDVhMTZmODU=
@@ -0,0 +1,4 @@
1
+ desc 'my plugins rake task'
2
+ task :do_something do
3
+ puts "the rake task did something"
4
+ end
@@ -1,9 +1,5 @@
1
1
  desc "Fill database with sample data"
2
2
  task :prepare do
3
- make_users
4
- end
5
-
6
- def make_users
7
3
  admin = User.create!(name: "Example User", email: "example@railstutorial.org", password: "foobar", password_confirmation: "foobar")
8
4
  admin.toggle!(:admin)
9
5
  admin2 = User.create!(name: "Daniel Kemper", email: "dkemp04@gmail.com", password: "foobar", password_confirmation: "foobar")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: survey_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.92
4
+ version: 0.2.93
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dkemp04
@@ -67,6 +67,7 @@ files:
67
67
  - lib/generators/survey/templates/db/migrate/create_users.tpl
68
68
  - lib/generators/survey/templates/main.tpl
69
69
  - lib/generators/survey/USAGE
70
+ - lib/tasks/my_plugin.rake
70
71
  - lib/tasks/survey_generator.rake
71
72
  homepage: http://rubygems.org/gems/survey_generator
72
73
  licenses: []