fanforce-base 1.0.4 → 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: 5ef4b481d579b0881c83a2b0ebd2cab33945cee3
4
- data.tar.gz: a31cff7759fc5e974bd9944fa0108ce5ba1b8a5d
3
+ metadata.gz: da89a7c28024efa12e0a8dcf0d77169cfc3c80c2
4
+ data.tar.gz: edf1e5aa8c38af7c5169b0e94a535c486375da22
5
5
  SHA512:
6
- metadata.gz: 57bbc3e1235a9d81ccb9bc169bc5104befd5a8397c699bb20ed5e616f7b2715f0445ec299cf75d8427a886d7daec0dee090cc45915b128f83e81b25d8c58dbca
7
- data.tar.gz: bdb65d2573d94e2914888a95e2a91ac9f6ec00fede97e453e8c5d4057b044bcf1f273a118dcfac8fa9a47cdbf26f7430481c42638c90bec3c7c16afb0a2b4f88
6
+ metadata.gz: dcc93a705975f55860a3aedfed0dd524e94d92a82085a96f4154da9db90440f08811b7d769a525892b33fae793372f8f00febb08a50e2ba57f06ae1197803c6c
7
+ data.tar.gz: 1cf7d2f99d9b368e4a6522230866a54a83ed49d2fe84c23557b05f71e3dbad6869670f7df6c01ab1e66e1c7b9b1cdff8f52a6bad1e339f4fe3ca8d66a62e13b2
data/.gitignore CHANGED
File without changes
data/Gemfile CHANGED
File without changes
data/LICENSE.md CHANGED
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
File without changes
File without changes
@@ -75,23 +75,23 @@ module Fanforce::Base::Domains
75
75
  'www.' + base_domain
76
76
  end
77
77
 
78
- # Domain for accessing developer's website (i.e., developers.fanforce.com) for current environment
78
+ # Domain for accessing the Developer Panel (i.e., developer.fanforce.com) for current environment
79
79
  # @return [domain]
80
- def developers_domain
81
- 'developers.' + base_domain
80
+ def developer_domain
81
+ 'developer.' + base_domain
82
82
  end
83
83
 
84
84
  ###########
85
85
  # The following should be moved to edition config
86
86
  ###########
87
87
 
88
- # Domain for accessing the CommandCenter Webapp (i.e., app.fanforce.com) for current environment
88
+ # Domain for accessing the Client Panel (i.e., client.fanforce.com) for current environment
89
89
  # @return [domain]
90
- def app_domain
91
- 'app.' + base_domain
90
+ def client_domain
91
+ 'client.' + base_domain
92
92
  end
93
93
 
94
- # Domain for accessing the CommandCenter Signup (i.e., signup.fanforce.com) for current environment
94
+ # Domain for accessing the Signup Panel (i.e., signup.fanforce.com) for current environment
95
95
  # @return [domain]
96
96
  def signup_domain
97
97
  'signup.' + base_domain
@@ -1,5 +1,5 @@
1
1
  class Fanforce
2
2
  class Base
3
- VERSION = '1.0.4'
3
+ VERSION = '1.1.0'
4
4
  end
5
5
  end
data/lib/fanforce/base.rb CHANGED
File without changes
@@ -16,8 +16,8 @@ describe Fanforce::Base::Domains do
16
16
  assert Fanforce.controller_domain
17
17
  assert Fanforce.uranium_domain
18
18
  assert Fanforce.website_domain
19
- assert Fanforce.developers_domain
20
- assert Fanforce.app_domain
19
+ assert Fanforce.developer_domain
20
+ assert Fanforce.client_domain
21
21
  assert Fanforce.signup_domain
22
22
  end end
23
23
 
File without changes
data/test/test_helper.rb CHANGED
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fanforce-base
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb Clark