pilgrim 0.1.2 → 0.1.3
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.
- data/README.rdoc +1 -1
- data/db/seeds.rb +22 -0
- data/lib/generators/pilgrim/install/install_generator.rb +5 -5
- data/lib/pilgrim/version.rb +1 -1
- data/test/dummy/config/database.yml +3 -3
- data/test/dummy/log/development.log +1530 -6685
- data/test/dummy/tmp/cache/assets/{DF4/470/sprockets%2Fc6b4d923deaf3ab7848cdc4b03ea170e → C3D/A70/sprockets%2F18071417d16b4c4638304d1dae524406} +0 -0
- data/test/dummy/tmp/cache/assets/{CB4/B90/sprockets%2F6d683f8e69169e82c92b5659ff791958 → C56/220/sprockets%2F4222595a04ae936bd77777a922f06472} +0 -0
- data/test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c +0 -0
- data/test/dummy/tmp/cache/assets/C8B/560/sprockets%2F3ef544d4997581606cb287603bd67a24 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/D08/AC0/sprockets%2F2a76883406eff2c15601bca08e55a5b7 +0 -0
- data/test/dummy/tmp/cache/assets/{DC2/A50/sprockets%2F0a4fe302b3dccdcd199083ce04ee9e14 → D13/BD0/sprockets%2F9687e608084a6ee04dd4afd56515da30} +0 -0
- data/test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc +0 -0
- data/test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/{D29/710/sprockets%2F38cdb0a6058ad42fbb6ab3217451253f → D33/0C0/sprockets%2Fc4564af0e30e513cda6e71075d681a7b} +0 -0
- data/test/dummy/tmp/cache/assets/D38/EA0/sprockets%2Faac5305b6ba8806d62ec6a8609808eb0 +0 -0
- data/test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D65/F10/sprockets%2F6de2a51b091062f06fe4c1c7ef9fd051 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- metadata +149 -143
- checksums.yaml +0 -15
- data/test/dummy/tmp/cache/assets/C8D/BB0/sprockets%2F60470391328e64dff6727d8e25d56b08 +0 -0
- data/test/dummy/tmp/cache/assets/CA9/7E0/sprockets%2F9b7d82455f97a58f93289f436e870e46 +0 -0
- data/test/dummy/tmp/cache/assets/CEC/730/sprockets%2Fb6120fa65b7a893a79f4795dd53d1097 +0 -0
- data/test/dummy/tmp/cache/assets/D9C/720/sprockets%2F8338047be7bd0efb4fd25a2182eefe15 +0 -0
|
@@ -8,11 +8,11 @@ module Pilgrim
|
|
|
8
8
|
rake "pilgrim:install:migrations"
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
-
def copy_files
|
|
12
|
-
copy_file "countries.sql", "db/countries.sql"
|
|
13
|
-
copy_file "states.sql", "db/states.sql"
|
|
14
|
-
copy_file "cities.sql", "db/cities.sql"
|
|
15
|
-
end
|
|
11
|
+
#def copy_files
|
|
12
|
+
#copy_file "countries.sql", "db/countries.sql"
|
|
13
|
+
#copy_file "states.sql", "db/states.sql"
|
|
14
|
+
#copy_file "cities.sql", "db/cities.sql"
|
|
15
|
+
#end
|
|
16
16
|
end
|
|
17
17
|
end
|
|
18
18
|
end
|
data/lib/pilgrim/version.rb
CHANGED
|
@@ -16,7 +16,7 @@ development:
|
|
|
16
16
|
pool: 5
|
|
17
17
|
username: root
|
|
18
18
|
password: welcome89
|
|
19
|
-
socket: /
|
|
19
|
+
socket: /tmp/mysql.sock
|
|
20
20
|
|
|
21
21
|
test:
|
|
22
22
|
adapter: mysql2
|
|
@@ -26,7 +26,7 @@ test:
|
|
|
26
26
|
pool: 5
|
|
27
27
|
username: root
|
|
28
28
|
password: welcome89
|
|
29
|
-
socket: /
|
|
29
|
+
socket: /tmp/mysql.sock
|
|
30
30
|
|
|
31
31
|
production:
|
|
32
32
|
adapter: mysql2
|
|
@@ -36,4 +36,4 @@ production:
|
|
|
36
36
|
pool: 5
|
|
37
37
|
username: root
|
|
38
38
|
password: welcome89
|
|
39
|
-
socket: /
|
|
39
|
+
socket: /tmp/mysql.sock
|