muck-profiles 3.1.3 → 3.1.4

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.
Files changed (6) hide show
  1. data/.gitignore +32 -0
  2. data/README.rdoc +2 -2
  3. data/Rakefile +0 -2
  4. data/VERSION +1 -1
  5. data/muck-profiles.gemspec +2532 -2436
  6. metadata +133 -64
data/.gitignore ADDED
@@ -0,0 +1,32 @@
1
+ **/*.pid
2
+ log/*.log
3
+ log/*.pid
4
+ tmp
5
+ .DS_Store
6
+ public/cache/**/*
7
+ public/system/**/*
8
+ doc/**/*
9
+ db/*.sqlite3
10
+ .project
11
+ .loadpath
12
+ nbproject/
13
+ .idea
14
+ testjour.log
15
+ *.so
16
+ *.o
17
+ Makefile
18
+ mkmf.log
19
+ *.bundle
20
+ conftest
21
+ content/
22
+ .idea
23
+ *.sw?
24
+ .DS_Store
25
+ coverage
26
+ rdoc
27
+ pkg
28
+ pkg/*
29
+ log/*
30
+ solr_indexes
31
+ secrets.yml
32
+ test/log/*
data/README.rdoc CHANGED
@@ -93,8 +93,8 @@ The default policy looks like this:
93
93
 
94
94
  MuckProfiles.configure do |config|
95
95
  config.enable_sunspot = false # This enables or disables sunspot for profiles. Only use acts_as_solr or sunspot not both. Sunspot does not include multicore support.
96
- config.enable_solr = true # This enables or disables acts as solr for profiles.
97
- config.enable_geokit = true # Turn geokit functionality on/off.
96
+ config.enable_solr = false # This enables or disables acts as solr for profiles. You will need to include muck-solr in your gemfile.
97
+ config.enable_geokit = false # Turn geokit functionality on/off. You will need to include geokit in your gemfile.
98
98
  config.enable_guess_location = true # If true the profile system will attempt to determine the user's location via IP and populated with the location, lat and lon fields.
99
99
  config.policy => { :public => [:login, :first_name, :last_name, :about],
100
100
  :authenticated => [:location, :city, :state_id, :country_id, :language_id],
data/Rakefile CHANGED
@@ -57,7 +57,6 @@ begin
57
57
  gem.description = "Profile engine for the muck system."
58
58
  gem.authors = ["Justin Ball", "Joel Duffin"]
59
59
 
60
- gem.add_dependency "geokit"
61
60
  gem.add_dependency "paperclip"
62
61
  gem.add_dependency "sanitize"
63
62
  gem.add_dependency "uploader"
@@ -65,7 +64,6 @@ begin
65
64
  gem.add_dependency "muck-users"
66
65
  gem.add_dependency "muck-comments"
67
66
  gem.add_dependency "muck-contents"
68
- gem.add_dependency "muck-solr"
69
67
  gem.add_dependency "muck-shares"
70
68
  gem.add_dependency "muck-raker"
71
69
  gem.files.exclude 'test/**'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.1.3
1
+ 3.1.4