jobshop 0.0.3.1 → 0.0.4.0p1
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 +4 -4
- data/README.md +15 -8
- data/config/initializers/devise.rb +1 -1
- data/lib/jobshop/version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73f32c72b0d85a46741051ac4eed44ec3afcc450
|
|
4
|
+
data.tar.gz: f03e99a3069119e232c82b6e4553180e941d8955
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64d8a1cee77f6d4ab1f477fdc210b0d48ace03ef943b267562dc0f13033044be3e44277230aa80c0c4e03fdae86e321a8c29fc9135924a8b771ac6a680832604
|
|
7
|
+
data.tar.gz: d29e592ad90d5c80c4170fa44b0fe8597902065cea2266cabd579660ee2a29bd7043e4d80fa7c8e47f9cdf2d3885a1c1b0c8956a5eb8be64cc8a8773b882ad88
|
data/README.md
CHANGED
|
@@ -25,16 +25,10 @@ $ rails new my_jobshop --database=postgresql
|
|
|
25
25
|
$ cd my_jobshop
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
Edit `config/database.yml` if necessary and create the database:
|
|
29
|
-
|
|
30
|
-
```console
|
|
31
|
-
$ rake db:create
|
|
32
|
-
```
|
|
33
|
-
|
|
34
28
|
Add jobshop to `Gemfile`:
|
|
35
29
|
|
|
36
30
|
```ruby
|
|
37
|
-
gem "jobshop", "~> 0.0.
|
|
31
|
+
gem "jobshop", "~> 0.0.3"
|
|
38
32
|
```
|
|
39
33
|
|
|
40
34
|
Bundle install your dependencies:
|
|
@@ -43,7 +37,20 @@ Bundle install your dependencies:
|
|
|
43
37
|
$ bundle install
|
|
44
38
|
```
|
|
45
39
|
|
|
46
|
-
|
|
40
|
+
Edit `config/database.yml` if necessary, create the database and run and pending migrations:
|
|
41
|
+
|
|
42
|
+
```console
|
|
43
|
+
$ rake db:create
|
|
44
|
+
$ rake db:migrate
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Lastly, create your first Jobshop site:
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
$ rails g Jobshop:site "My Organization Name"
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Fire up your server `$ rails s` and navigate to the link provided by the site generator!
|
|
47
54
|
|
|
48
55
|
## Bug Reports
|
|
49
56
|
If you discover a problem with Jobshop, we would like to know about it.
|
|
@@ -6,7 +6,7 @@ Devise.setup do |config|
|
|
|
6
6
|
# confirmation, reset password and unlock tokens in the database.
|
|
7
7
|
# Devise will use the `secret_key_base` as its `secret_key`
|
|
8
8
|
# by default. You can change it below and use your own secret key.
|
|
9
|
-
config.secret_key =
|
|
9
|
+
# config.secret_key = ENV.fetch("DEVISE_SECRET_KEY")
|
|
10
10
|
|
|
11
11
|
# ==> Mailer Configuration
|
|
12
12
|
# Configure the e-mail address which will be shown in Devise::Mailer,
|
data/lib/jobshop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jobshop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4.0p1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Frank J. Mattia
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
11
|
+
date: 2016-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: coffee-rails
|
|
@@ -335,9 +335,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
335
335
|
version: '0'
|
|
336
336
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
337
337
|
requirements:
|
|
338
|
-
- - "
|
|
338
|
+
- - ">"
|
|
339
339
|
- !ruby/object:Gem::Version
|
|
340
|
-
version:
|
|
340
|
+
version: 1.3.1
|
|
341
341
|
requirements: []
|
|
342
342
|
rubyforge_project:
|
|
343
343
|
rubygems_version: 2.5.1
|