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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9652e9f69eee15510f4a53087febe2149dfa8a9f
4
- data.tar.gz: 47020a10ff3df6360de16972cb38302a2eb70d8a
3
+ metadata.gz: 73f32c72b0d85a46741051ac4eed44ec3afcc450
4
+ data.tar.gz: f03e99a3069119e232c82b6e4553180e941d8955
5
5
  SHA512:
6
- metadata.gz: 183d20a5f414635db0bb556c18c8efd5a3d58c6f681dd4ffdd4dd402ece8e7b627f2887184f35d6ecf24470bd6f7fe96ca23f6a921e37fd6f753a3ad0def83b5
7
- data.tar.gz: c5d6f5c2412457c1b7a655927c9a7fa491e7a51fc1003fac3b9a1a0d3517102b380c6bda35c0db4bd1303edc807fe8d3d0d16ed64ac5fec76a22d2fe734817ab
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.2"
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
- Fire up your server (`$ rails s`) and navigate to `http://localhost:3000`.
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 = "asdf" # ENV.fetch("DEVISE_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,
@@ -6,8 +6,8 @@ module Jobshop
6
6
  module VERSION
7
7
  MAJOR = 0
8
8
  MINOR = 0
9
- TINY = 3
10
- PRE = 1
9
+ TINY = 4
10
+ PRE = "0p1"
11
11
 
12
12
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
13
13
  end
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.3.1
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-17 00:00:00.000000000 Z
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: '0'
340
+ version: 1.3.1
341
341
  requirements: []
342
342
  rubyforge_project:
343
343
  rubygems_version: 2.5.1