Skip to content
This repository was archived by the owner on Feb 25, 2020. It is now read-only.

Commit 92e41fa

Browse files
committed
Version 0.9.0 - twitter, rails 4 and deprecations
This release features a great contribution from the Rails Girls Summer of Code: The landing page of the webapp can now include a twitter feed to display news from the provider. Other than that this is a maintainance and transition release. * Twitter feed on main page (thanks theaamanda and lilaluca). * upgrade to rails 4.2 * upgrade to bootstrap 3 Upgrading: * We now use rails 4's `secret_key_base`. Please make sure to supply it in config/config.yml for production environments. If you are using the leap platform that will already take care of it. Deprecations: * We have not seen any active use of the **billing** functionality. So we deprecate it and will probably drop it in one of the next releases. * We will replace the user facing **help desk** functionality with a single sign on mechanism to integrate with other help desk systems. We will maintain the endpoint to submit tickets and the ticket management in the admin interface. That way it should also be easy to create your own ticket submission form. * We deprecate the ability to **signup and login** directly through the webapp. We will remove it in the future for security reasons. Signup and Login should only happen through bitmask to prevent password phishing and js injections.
1 parent daa9b1e commit 92e41fa

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGES.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
version 0.9 (unreleased) - twitter feed, rails 4 and deprecations
1+
version 0.9 - twitter feed, rails 4 and deprecations
22
----------------------------------------------------
33

4-
This release features a great contribution from the Rails Girls Summer of Code
5-
again! The landing page of the webapp can now include a twitter feed to display
4+
This release features a great contribution from the Rails Girls Summer of Code:
5+
The landing page of the webapp can now include a twitter feed to display
66
news from the provider.
7+
78
Other than that this is a maintainance and transition release.
89

910
* Twitter feed on main page (thanks theaamanda and lilaluca).

Gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
PATH
22
remote: engines/billing
33
specs:
4-
leap_web_billing (0.8.1)
4+
leap_web_billing (0.9.0)
55
braintree
66

77
PATH
88
remote: engines/support
99
specs:
10-
leap_web_help (0.8.1)
10+
leap_web_help (0.9.0)
1111

1212
PATH
1313
remote: vendor/gems/certificate_authority

leap_web.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
1212
s.files = Dir['*.md', 'lib/leap_web.rb', 'lib/leap_web/*']
1313
s.require_path = 'lib'
1414
s.requirements << 'none'
15-
s.required_ruby_version = '>= 1.8.7'
15+
s.required_ruby_version = '>= 2.1.0'
1616
s.required_rubygems_version = ">= 1.3.6"
1717

1818
s.author = 'Azul'

lib/leap_web/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module LeapWeb
2-
VERSION = "0.8.1" unless defined?(LeapWeb::VERSION)
2+
VERSION = "0.9.0" unless defined?(LeapWeb::VERSION)
33
end

0 commit comments

Comments
 (0)