milia 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0b71b49e31631befa25024acdb042e14b7fecd82
4
- data.tar.gz: f1dc1e95c35498437ff078e891077f11fad242ab
3
+ metadata.gz: 8cd8a474f7a28865b81b749770d73d0558e0c0be
4
+ data.tar.gz: 09c3db1142596f05733ef4e0b1b5052ba7084ee7
5
5
  SHA512:
6
- metadata.gz: 7ed0849673efa710d2ef2feb3d703ced0a40cce297e41ed75c03ad88bef99941103792329c3310189f6c172fa9c63f8cc71c77f0b6ade96c57f7e2bd0321d3fc
7
- data.tar.gz: 0be4c74efdca4c1ab2b561342d1f5c1c9d35d2d76e3649abe027809fcc785a4c6cb5cdb3d8c4e9de161304f52a1c160bfb7192c2943695103335f6b96594e624
6
+ metadata.gz: 8152c0f853a6e82139608a86e146045a69a13ef7568952136e4d15662a38db4928c427b4b2bf8d761943721a72b4d3e71d63ad03db50de3f5fe9da9237057f1b
7
+ data.tar.gz: 158cb86afdd5a24fc66faeb2dee59185d608209676f5ef32566ed9b8d90a4009b59b3fb237246d576ef018f5d4917345d0698917df3920cc7fd4acd3ff472130
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.0.0
1
+ ruby-2.1.3
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # milia
2
2
 
3
- Milia is a multi-tenanting gem for hosted Rails 4.0.x applications which use
3
+ Milia is a multi-tenanting gem for hosted Rails 4.1.x applications which use
4
4
  the devise gem for user authentication and registrations. Milia comes with
5
5
  tailoring for common use cases needing multi-tenanting with user authentication.
6
6
 
@@ -37,14 +37,15 @@ by invitation. New tenants are not created for every new user.
37
37
 
38
38
  ## Version
39
39
 
40
- milia v1.0.1 is the release version for Rails 4.0.x and is now available for usage.
40
+ milia v1.1.0 is the release version for Rails 4.1.x and is now available for usage.
41
+ I will soon start working on the Rails 4.2 release ... on the newdev branch.
41
42
 
42
- The last previous release version for Rails 3.2.x can be found in the git branch 'v0.3', but
43
- it is essentially obsolete. Go with v1.0.x
43
+ ## v1.1.x - What's changed?
44
+ * Rails 4.1.x adapted
45
+ * Devise 3.4.x adapted
44
46
 
45
- ## What's changed?
47
+ ## v1.0.x - What's changed?
46
48
 
47
- * fixes Issue #42: Redirect loop (sign up & activate with email1; trying to sign up again with email1 fails but immediately signing in with email1 caused a redirect loop).
48
49
  * Rails 4.0.x adapted (changes to terms, strong_parameters, default_scope, etc)
49
50
  * Devise 3.2.x adapted
50
51
  * All the changes which version 0.3.x advised to be inserted in applications_controller.rb are now automatically loaded into ActionController by milia.
@@ -56,6 +57,9 @@ it is essentially obsolete. Go with v1.0.x
56
57
  * improved invite_member support
57
58
  * revised README instructions
58
59
 
60
+ The last previous release version for Rails 3.2.x can be found in the git branch 'v0.3', but
61
+ it is essentially obsolete. Go with v1.0.x
62
+
59
63
  ## Sample app and documentation
60
64
 
61
65
  There were numerous requests for me to provide a complete sample web application
@@ -113,10 +117,13 @@ and devise 3.2 install.
113
117
 
114
118
  ## Dependency requirements
115
119
 
116
- * Rails 4.0.x
117
- * Devise 3.2.x
120
+ * Ruby 2.1.3
121
+ * Rails 4.1.x
122
+ * Devise 3.4.x
123
+
124
+ ## this readme is for v1.1.0
125
+ * changes in v1.1.0: just gem dependency; web-app-theme generator had a change
118
126
 
119
- ## this readme is for v1.0.0 (fka v1.0.0-beta-7)
120
127
  * changes in beta-7: model & controller testing is almost complete;
121
128
  minor bug fixed; mixed-in controller methods are now public, not
122
129
  private.
@@ -251,7 +258,7 @@ model and so this is where all the information for a member should be kept.
251
258
 
252
259
  $ rails new sample-milia-app --skip-bundle
253
260
  $ echo "sample-milia-app" > sample-milia-app/.ruby-gemset
254
- $ echo "2.0.0" > sample-milia-app/.ruby-version
261
+ $ echo "2.1.3" > sample-milia-app/.ruby-version
255
262
  $ echo "web: bundle exec thin start -R config.ru -p \$PORT -e \$RACK_ENV" > sample-milia-app/Procfile
256
263
  $ rvm gemset create sample-milia-app
257
264
  ```
@@ -275,12 +282,16 @@ but you can copy mine from sample-milia-app on github.
275
282
 
276
283
  This sample web application depends on my updates to the web-app-theme, as
277
284
  well as several other gems for the application, which need to be added
278
- to the Gemfile, before running the installer.
285
+ to the Gemfile, before running the installer.
279
286
  You can directly import these into your Gemfile
280
287
  by getting them from <i>doc/gemfile_addition.txt.</i>
281
288
  After adding this addition to the Gemfile, please make sure the correct
282
289
  milia branch is being designated (it sometimes points to edge branch).
283
290
 
291
+ Note: web-app-theme is no longer
292
+ listed as a milia dependency in the gemspec, but the above gemfile_addition
293
+ references it and will place it in your Gemfile.
294
+
284
295
  ```
285
296
  $ vim Gemfile
286
297
  G
@@ -1,10 +1,13 @@
1
1
  module Milia
2
2
 
3
3
  class SessionsController < Devise::SessionsController
4
- # skip need for authentication
4
+
5
5
  skip_before_action :authenticate_tenant!, :only => [:new, :create, :destroy]
6
- # clear tenanting
7
- before_action :__milia_reset_tenant!, :only => [:create, :destroy]
6
+
7
+ def destroy
8
+ __milia_reset_tenant! # clear tenanting
9
+ super
10
+ end
8
11
 
9
12
  end # class
10
13
  end # module
@@ -1,4 +1,4 @@
1
- ruby "2.0.0" # heroku likes this at the head, as line 2
1
+ ruby "2.1.3" # heroku likes this at the head, as line 2
2
2
 
3
3
  # =========================================================
4
4
  # sample-milia-app specific stuff
@@ -15,8 +15,8 @@
15
15
  gem 'rails_12factor'
16
16
 
17
17
  gem 'web-app-theme', :git => 'git://github.com/dsaronin/web-app-theme.git'
18
- gem 'devise', '~>3.2'
19
- gem 'milia', :git => 'git://github.com/dsaronin/milia.git', :branch => 'v1.0.0-beta-7'
18
+ gem 'devise', '~>3.4.0'
19
+ gem 'milia', :git => 'git://github.com/dsaronin/milia.git', :branch => 'newdev'
20
20
 
21
21
  # airbrake is optional and configured by config.use_airbrake in milia initializer
22
22
  # default is false; if you change it to true, uncomment out the line below
data/doc/manual_sample.sh CHANGED
@@ -5,12 +5,12 @@
5
5
  # NOTE: this is now an archivial copy of instructions for creating an
6
6
  # app with rails/milia/devise. After v1.0.0-beta-3, all of this is now
7
7
  # implemented using generators. But this is a reference for how to
8
- # do everything manually, as ov v1.0.0-beta-2.
8
+ # do everything manually, as of v1.1.0
9
9
  #
10
10
  # *********************************************************************
11
11
  # This is a capture of everything I did to create a sample app for milia.
12
12
  # There's enough brief comments for anyone to follow step-by-step.
13
- # It is based on my dev environment which is Ubuntu 13.10 on a PC. YMMV.
13
+ # It is based on my dev environment which is Ubuntu 14.04 on a PC. YMMV.
14
14
  #
15
15
  # The "app" itself is merely a simple barebones structure to display
16
16
  # an index page, require sign-in to do anything else, has a sign-up
@@ -95,14 +95,14 @@
95
95
  $ \curl -L https://get.rvm.io | bash -s stable
96
96
  # do any adjustments to your .bashrc, etc files as needed
97
97
 
98
- # make sure to install ruby 2.0.0
99
- $ rvm install 2.0.0
98
+ # make sure to install ruby 2.1.3
99
+ $ rvm install 2.1.3
100
100
 
101
101
  # I have all my projects in a directory called "projectspace'
102
102
  $ mkdir projectspace
103
103
  $ rvm gemset create projectspace
104
104
  $ echo "projectspace" > projectspace/.ruby-gemset
105
- $ echo "2.0.0" > projectspace/.ruby-version
105
+ $ echo "2.1.3" > projectspace/.ruby-version
106
106
  $ cd projectspace
107
107
 
108
108
  # install rails (latest version)
@@ -135,7 +135,7 @@ export RECAPTCHA_PRIVATE_KEY=6LeBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgQBv
135
135
 
136
136
  $ rails new sample-milia-app --skip-bundle
137
137
  $ echo "sample-milia-app" > sample-milia-app/.ruby-gemset
138
- $ echo "2.0.0" > sample-milia-app/.ruby-version
138
+ $ echo "2.1.3" > sample-milia-app/.ruby-version
139
139
  $ echo "web: bundle exec thin start -R config.ru -p $PORT -e $RACK_ENV" > sample-milia-app/Procfile
140
140
  $ rvm gemset create sample-milia-app
141
141
  $ cd sample-milia-app
@@ -165,7 +165,7 @@ export RECAPTCHA_PRIVATE_KEY=6LeBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgQBv
165
165
 
166
166
  # finally, ADD the following lines to Gemfile >>>>>>>>>>>>>>>>>>>>>>
167
167
 
168
- ruby "2.0.0" # heroku likes this at the head, as line 2
168
+ ruby "2.1.3" # heroku likes this at the head, as line 2
169
169
 
170
170
  # =========================================================
171
171
  # sample-milia-app specific stuff
@@ -185,8 +185,8 @@ export RECAPTCHA_PRIVATE_KEY=6LeBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgQBv
185
185
  # gem 'airbrake' # uncomment this if you will use airbrake for exception notifications
186
186
 
187
187
  gem 'web-app-theme', :git => 'git://github.com/dsaronin/web-app-theme.git'
188
- gem 'devise', '~>3.2'
189
- gem 'milia', :git => 'git://github.com/dsaronin/milia.git', :branch => 'v1.0.0-beta-7'
188
+ gem 'devise', '~>3.4.0'
189
+ gem 'milia', :git => 'git://github.com/dsaronin/milia.git', :branch => 'v1.1.0'
190
190
 
191
191
  # recaptcha is optional and configured by config.use_recaptcha in milia initializer
192
192
  # default is true; if you change it to false, comment out the line below
data/doc/sample.sh CHANGED
@@ -3,7 +3,7 @@
3
3
  # *********************************************************************
4
4
  # This is how to get a working app using rails/milia/devise
5
5
  # together with a simple but attractive web-app-theme.
6
- # I havve added generators which automate all of the steps listed in
6
+ # I have added generators which automate all of the steps listed in
7
7
  # manual_sample.sh (if you want to see the details).
8
8
  # It is based on my dev environment which is Ubuntu 13.10 on a PC. YMMV.
9
9
  #
@@ -61,10 +61,10 @@
61
61
  # STEP 0 - PREREQUISITES & EXPECTED BACKGROUND PREPARATION
62
62
  # *********************************************************************
63
63
 
64
- # this background is what I've done on my Ubuntu dev workstation
65
- # so if you want to follow exactly, you'll need similar.
66
- # none of this is required for milia; only to exactly bring up
67
- # this sample-milia-app.
64
+ # This background is what I've done on my Ubuntu dev workstation
65
+ # so if you want to follow exactly, you'll need a similar setup.
66
+ # None of this is required for milia, only to bring up this
67
+ # sample-milia-app.
68
68
 
69
69
  # make sure you have your ssh keys gen'd
70
70
  $ ssh-keygen
@@ -78,14 +78,14 @@
78
78
  $ \curl -L https://get.rvm.io | bash -s stable
79
79
  # do any adjustments to your .bashrc, etc files as needed
80
80
 
81
- # make sure to install ruby 2.0.0
82
- $ rvm install 2.0.0
81
+ # make sure to install ruby 2.1.3
82
+ $ rvm install 2.1.3
83
83
 
84
84
  # I have all my projects in a directory called "projectspace'
85
85
  $ mkdir projectspace
86
86
  $ rvm gemset create projectspace
87
87
  $ echo "projectspace" > projectspace/.ruby-gemset
88
- $ echo "2.0.0" > projectspace/.ruby-version
88
+ $ echo "2.1.3" > projectspace/.ruby-version
89
89
  $ cd projectspace
90
90
 
91
91
  # install rails (latest version)
@@ -118,7 +118,7 @@ export RECAPTCHA_PRIVATE_KEY=6LeBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgQBv
118
118
 
119
119
  $ rails new sample-milia-app --skip-bundle
120
120
  $ echo "sample-milia-app" > sample-milia-app/.ruby-gemset
121
- $ echo "2.0.0" > sample-milia-app/.ruby-version
121
+ $ echo "2.1.3" > sample-milia-app/.ruby-version
122
122
  $ echo "web: bundle exec thin start -R config.ru -p $PORT -e $RACK_ENV" > sample-milia-app/Procfile
123
123
  $ rvm gemset create sample-milia-app
124
124
  $ cd sample-milia-app
@@ -149,7 +149,7 @@ export RECAPTCHA_PRIVATE_KEY=6LeBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgQBv
149
149
 
150
150
  # finally, ADD the following lines to Gemfile >>>>>>>>>>>>>>>>>>>>>>
151
151
 
152
- ruby "2.0.0" # heroku likes this at the head, as line 2
152
+ ruby "2.1.3" # heroku likes this at the head, as line 2
153
153
 
154
154
  # =========================================================
155
155
  # sample-milia-app specific stuff
data/lib/milia/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Milia
2
- VERSION = "1.0.1"
2
+ VERSION = "1.1.0"
3
3
  end
data/milia.gemspec CHANGED
@@ -18,10 +18,10 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_dependency 'rails', '~> 4.0'
22
- spec.add_dependency 'devise', '~> 3.2'
21
+ spec.add_dependency 'rails', '~> 4.1'
22
+ spec.add_dependency 'devise', '~> 3.4'
23
23
 
24
- spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "bundler", "~> 1.7"
25
25
  spec.add_development_dependency "rake"
26
26
  spec.add_development_dependency "sqlite3"
27
27
  spec.add_development_dependency "shoulda"
data/test/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.0.0
1
+ 2.1.3
data/test/Gemfile CHANGED
@@ -1,20 +1,20 @@
1
1
  source 'https://rubygems.org'
2
- ruby "2.0.0" # heroku likes this at the head, as line 2
2
+ ruby "2.1.3" # heroku likes this at the head, as line 2
3
3
 
4
4
  # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5
- gem 'rails', '4.0.3'
5
+ gem 'rails', '4.1.6'
6
6
 
7
7
  # Use sqlite3 as the database for Active Record
8
8
  gem 'sqlite3'
9
9
 
10
10
  # Use SCSS for stylesheets
11
- gem 'sass-rails', '~> 4.0.0'
11
+ gem 'sass-rails' # , '~> 4.0.0'
12
12
 
13
13
  # Use Uglifier as compressor for JavaScript assets
14
- gem 'uglifier', '>= 1.3.0'
14
+ gem 'uglifier' # , '>= 1.3.0'
15
15
 
16
16
  # Use CoffeeScript for .js.coffee assets and views
17
- gem 'coffee-rails', '~> 4.0.0'
17
+ gem 'coffee-rails' # , '~> 4.0.0'
18
18
 
19
19
  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
20
20
  gem 'therubyracer', platforms: :ruby
@@ -26,7 +26,7 @@ gem 'jquery-rails'
26
26
  # gem 'turbolinks'
27
27
 
28
28
  # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
29
- gem 'jbuilder', '~> 1.2'
29
+ gem 'jbuilder' # , '~> 1.2'
30
30
 
31
31
  group :doc do
32
32
  # bundle exec rake doc:rails generates the API under doc/api.
@@ -34,7 +34,7 @@ group :doc do
34
34
  end
35
35
 
36
36
  # Use ActiveModel has_secure_password
37
- # gem 'bcrypt-ruby', '~> 3.1.2'
37
+ # gem 'bcrypt-ruby' # , '~> 3.1.2'
38
38
 
39
39
  # Use unicorn as the app server
40
40
  # gem 'unicorn'
@@ -51,7 +51,7 @@ end
51
51
  # Bundle the extra gems:
52
52
 
53
53
  gem 'haml-rails'
54
- gem 'html2haml', :git => 'git://github.com/haml/html2haml.git' # "2.0.0.beta.2",
54
+ gem 'html2haml' # , :git => 'git://github.com/haml/html2haml.git' # "2.0.0.beta.2",
55
55
 
56
56
  # stuff that heroku likes to have
57
57
  gem 'puma'
@@ -59,7 +59,7 @@ end
59
59
  gem "rack-timeout"
60
60
  gem 'rails_12factor'
61
61
 
62
- gem 'devise', '~>3.2'
62
+ gem 'devise' # , '~>3.2'
63
63
 
64
64
  # airbrake is optional and configured by config.use_airbrake in milia initializer
65
65
  # default is false; if you change it to true, uncomment out the line below
data/test/Gemfile.lock CHANGED
@@ -1,16 +1,6 @@
1
- GIT
2
- remote: git://github.com/haml/html2haml.git
3
- revision: 51ccddc59c12cd6e43e05eab9796afa8a7c756a3
4
- specs:
5
- html2haml (2.0.0.beta.2)
6
- erubis (~> 2.7.0)
7
- haml (~> 4.0.0)
8
- nokogiri (~> 1.6.0)
9
- ruby_parser (~> 3.2.1)
10
-
11
1
  GIT
12
2
  remote: git://github.com/rails/activerecord-session_store.git
13
- revision: 55dc59aff9a1101c52004c0604bb88418624ba96
3
+ revision: e879bf087eb684452aaddb734efa20b95588b141
14
4
  specs:
15
5
  activerecord-session_store (0.1.0)
16
6
  actionpack (>= 4.0.0, < 5)
@@ -20,58 +10,60 @@ GIT
20
10
  PATH
21
11
  remote: ../../milia
22
12
  specs:
23
- milia (1.0.0)
24
- devise (~> 3.2)
25
- rails (~> 4.0)
13
+ milia (1.1.0)
14
+ devise (~> 3.4.0)
15
+ rails (~> 4.1.6)
26
16
 
27
17
  GEM
28
18
  remote: https://rubygems.org/
29
19
  specs:
30
20
  SystemTimer (1.2.3)
31
- actionmailer (4.0.3)
32
- actionpack (= 4.0.3)
33
- mail (~> 2.5.4)
34
- actionpack (4.0.3)
35
- activesupport (= 4.0.3)
36
- builder (~> 3.1.0)
37
- erubis (~> 2.7.0)
21
+ actionmailer (4.1.6)
22
+ actionpack (= 4.1.6)
23
+ actionview (= 4.1.6)
24
+ mail (~> 2.5, >= 2.5.4)
25
+ actionpack (4.1.6)
26
+ actionview (= 4.1.6)
27
+ activesupport (= 4.1.6)
38
28
  rack (~> 1.5.2)
39
29
  rack-test (~> 0.6.2)
40
- activemodel (4.0.3)
41
- activesupport (= 4.0.3)
42
- builder (~> 3.1.0)
43
- activerecord (4.0.3)
44
- activemodel (= 4.0.3)
45
- activerecord-deprecated_finders (~> 1.0.2)
46
- activesupport (= 4.0.3)
47
- arel (~> 4.0.0)
48
- activerecord-deprecated_finders (1.0.3)
49
- activesupport (4.0.3)
50
- i18n (~> 0.6, >= 0.6.4)
51
- minitest (~> 4.2)
52
- multi_json (~> 1.3)
30
+ actionview (4.1.6)
31
+ activesupport (= 4.1.6)
32
+ builder (~> 3.1)
33
+ erubis (~> 2.7.0)
34
+ activemodel (4.1.6)
35
+ activesupport (= 4.1.6)
36
+ builder (~> 3.1)
37
+ activerecord (4.1.6)
38
+ activemodel (= 4.1.6)
39
+ activesupport (= 4.1.6)
40
+ arel (~> 5.0.0)
41
+ activesupport (4.1.6)
42
+ i18n (~> 0.6, >= 0.6.9)
43
+ json (~> 1.7, >= 1.7.7)
44
+ minitest (~> 5.1)
53
45
  thread_safe (~> 0.1)
54
- tzinfo (~> 0.3.37)
55
- arel (4.0.2)
56
- atomic (1.1.14)
57
- bcrypt-ruby (3.1.2)
58
- builder (3.1.4)
59
- coffee-rails (4.0.1)
46
+ tzinfo (~> 1.1)
47
+ arel (5.0.1.20140414130214)
48
+ bcrypt (3.1.9)
49
+ builder (3.2.2)
50
+ coffee-rails (4.1.0)
60
51
  coffee-script (>= 2.2.0)
61
52
  railties (>= 4.0.0, < 5.0)
62
- coffee-script (2.2.0)
53
+ coffee-script (2.3.0)
63
54
  coffee-script-source
64
55
  execjs
65
- coffee-script-source (1.7.0)
66
- devise (3.2.2)
67
- bcrypt-ruby (~> 3.0)
56
+ coffee-script-source (1.8.0)
57
+ devise (3.4.0)
58
+ bcrypt (~> 3.0)
68
59
  orm_adapter (~> 0.1)
69
60
  railties (>= 3.2.6, < 5)
61
+ responders
70
62
  thread_safe (~> 0.1)
71
63
  warden (~> 1.2.3)
72
64
  erubis (2.7.0)
73
- execjs (2.0.2)
74
- haml (4.0.5)
65
+ execjs (2.2.2)
66
+ haml (4.1.0.beta.1)
75
67
  tilt
76
68
  haml-rails (0.5.3)
77
69
  actionpack (>= 4.0.1)
@@ -79,94 +71,97 @@ GEM
79
71
  haml (>= 3.1, < 5.0)
80
72
  railties (>= 4.0.1)
81
73
  hike (1.2.3)
82
- i18n (0.6.9)
83
- jbuilder (1.5.3)
84
- activesupport (>= 3.0.0)
85
- multi_json (>= 1.2.0)
86
- jquery-rails (3.1.0)
74
+ hpricot (0.8.6)
75
+ html2haml (1.0.1)
76
+ erubis (~> 2.7.0)
77
+ haml (>= 4.0.0.rc.1)
78
+ hpricot (~> 0.8.6)
79
+ ruby_parser (~> 3.1.1)
80
+ i18n (0.6.11)
81
+ jbuilder (2.2.3)
82
+ activesupport (>= 3.0.0, < 5)
83
+ multi_json (~> 1.2)
84
+ jquery-rails (3.1.2)
87
85
  railties (>= 3.0, < 5.0)
88
86
  thor (>= 0.14, < 2.0)
89
87
  json (1.8.1)
90
- libv8 (3.16.14.3)
91
- mail (2.5.4)
92
- mime-types (~> 1.16)
93
- treetop (~> 1.4.8)
94
- mime-types (1.25.1)
95
- mini_portile (0.5.2)
96
- minitest (4.7.5)
97
- multi_json (1.8.4)
98
- nokogiri (1.6.1)
99
- mini_portile (~> 0.5.0)
88
+ libv8 (3.16.14.7)
89
+ mail (2.6.1)
90
+ mime-types (>= 1.16, < 3)
91
+ mime-types (2.4.3)
92
+ minitest (5.4.2)
93
+ multi_json (1.10.1)
100
94
  orm_adapter (0.5.0)
101
- polyglot (0.3.4)
102
- puma (2.7.1)
95
+ puma (2.9.1)
103
96
  rack (>= 1.1, < 2.0)
104
97
  rack (1.5.2)
105
98
  rack-test (0.6.2)
106
99
  rack (>= 1.0)
107
- rack-timeout (0.0.4)
108
- rails (4.0.3)
109
- actionmailer (= 4.0.3)
110
- actionpack (= 4.0.3)
111
- activerecord (= 4.0.3)
112
- activesupport (= 4.0.3)
100
+ rack-timeout (0.1.0)
101
+ rails (4.1.6)
102
+ actionmailer (= 4.1.6)
103
+ actionpack (= 4.1.6)
104
+ actionview (= 4.1.6)
105
+ activemodel (= 4.1.6)
106
+ activerecord (= 4.1.6)
107
+ activesupport (= 4.1.6)
113
108
  bundler (>= 1.3.0, < 2.0)
114
- railties (= 4.0.3)
115
- sprockets-rails (~> 2.0.0)
116
- rails_12factor (0.0.2)
109
+ railties (= 4.1.6)
110
+ sprockets-rails (~> 2.0)
111
+ rails_12factor (0.0.3)
117
112
  rails_serve_static_assets
118
113
  rails_stdout_logging
119
114
  rails_serve_static_assets (0.0.2)
120
115
  rails_stdout_logging (0.0.3)
121
- railties (4.0.3)
122
- actionpack (= 4.0.3)
123
- activesupport (= 4.0.3)
116
+ railties (4.1.6)
117
+ actionpack (= 4.1.6)
118
+ activesupport (= 4.1.6)
124
119
  rake (>= 0.8.7)
125
120
  thor (>= 0.18.1, < 2.0)
126
- rake (10.1.1)
127
- rdoc (4.1.1)
121
+ rake (10.3.2)
122
+ rdoc (4.1.2)
128
123
  json (~> 1.4)
129
124
  recaptcha (0.3.6)
130
125
  ref (1.0.5)
131
- ruby_parser (3.2.2)
126
+ responders (1.1.1)
127
+ railties (>= 3.2, < 4.2)
128
+ ruby_parser (3.1.3)
132
129
  sexp_processor (~> 4.1)
133
- sass (3.2.14)
134
- sass-rails (4.0.1)
130
+ sass (3.2.19)
131
+ sass-rails (4.0.3)
135
132
  railties (>= 4.0.0, < 5.0)
136
- sass (>= 3.1.10)
137
- sprockets-rails (~> 2.0.0)
138
- sdoc (0.4.0)
139
- json (~> 1.8)
140
- rdoc (~> 4.0, < 5.0)
141
- sexp_processor (4.4.1)
133
+ sass (~> 3.2.0)
134
+ sprockets (~> 2.8, <= 2.11.0)
135
+ sprockets-rails (~> 2.0)
136
+ sdoc (0.4.1)
137
+ json (~> 1.7, >= 1.7.7)
138
+ rdoc (~> 4.0)
139
+ sexp_processor (4.4.4)
142
140
  shoulda (3.5.0)
143
141
  shoulda-context (~> 1.0, >= 1.0.1)
144
142
  shoulda-matchers (>= 1.4.1, < 3.0)
145
- shoulda-context (1.1.6)
146
- shoulda-matchers (2.5.0)
143
+ shoulda-context (1.2.1)
144
+ shoulda-matchers (2.7.0)
147
145
  activesupport (>= 3.0.0)
148
146
  sprockets (2.11.0)
149
147
  hike (~> 1.2)
150
148
  multi_json (~> 1.0)
151
149
  rack (~> 1.0)
152
150
  tilt (~> 1.1, != 1.3.0)
153
- sprockets-rails (2.0.1)
151
+ sprockets-rails (2.2.0)
154
152
  actionpack (>= 3.0)
155
153
  activesupport (>= 3.0)
156
- sprockets (~> 2.8)
157
- sqlite3 (1.3.8)
154
+ sprockets (>= 2.8, < 4.0)
155
+ sqlite3 (1.3.9)
158
156
  therubyracer (0.12.1)
159
157
  libv8 (~> 3.16.14.0)
160
158
  ref
161
- thor (0.18.1)
162
- thread_safe (0.1.3)
163
- atomic
159
+ thor (0.19.1)
160
+ thread_safe (0.3.4)
164
161
  tilt (1.4.1)
165
- treetop (1.4.15)
166
- polyglot
167
- polyglot (>= 0.3.1)
168
- tzinfo (0.3.38)
169
- uglifier (2.4.0)
162
+ tzinfo (1.2.2)
163
+ thread_safe (~> 0.1)
164
+ uglifier (2.5.3)
170
165
  execjs (>= 0.3.0)
171
166
  json (>= 1.8.0)
172
167
  warden (1.2.3)
@@ -178,23 +173,23 @@ PLATFORMS
178
173
  DEPENDENCIES
179
174
  SystemTimer
180
175
  activerecord-session_store!
181
- coffee-rails (~> 4.0.0)
182
- devise (~> 3.2)
176
+ coffee-rails
177
+ devise
183
178
  haml-rails
184
- html2haml!
185
- jbuilder (~> 1.2)
179
+ html2haml
180
+ jbuilder
186
181
  jquery-rails
187
182
  milia!
188
183
  puma
189
184
  rack-timeout
190
- rails (= 4.0.3)
185
+ rails (= 4.1.6)
191
186
  rails_12factor
192
187
  recaptcha
193
- sass-rails (~> 4.0.0)
188
+ sass-rails
194
189
  sdoc
195
190
  shoulda
196
191
  shoulda-context
197
192
  shoulda-matchers
198
193
  sqlite3
199
194
  therubyracer
200
- uglifier (>= 1.3.0)
195
+ uglifier
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: milia
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - daudi amani
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-03 00:00:00.000000000 Z
11
+ date: 2014-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,42 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '4.0'
19
+ version: '4.1'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '4.0'
26
+ version: '4.1'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: devise
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '3.2'
33
+ version: '3.4'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '3.2'
40
+ version: '3.4'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '1.3'
47
+ version: '1.7'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '1.3'
54
+ version: '1.7'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement